1
1
/*
2
- * Copyright (c) 1997, 2023 , Oracle and/or its affiliates. All rights reserved.
2
+ * Copyright (c) 1997, 2024 , Oracle and/or its affiliates. All rights reserved.
3
3
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4
4
*
5
5
* This code is free software; you can redistribute it and/or modify it
@@ -509,7 +509,7 @@ class SafePointNode : public MultiNode {
509
509
class SafePointScalarObjectNode : public TypeNode {
510
510
uint _first_index; // First input edge relative index of a SafePoint node where
511
511
// states of the scalarized object fields are collected.
512
- // It is relative to the last (youngest) jvms->_scloff.
512
+ uint _depth; // Depth of the JVM state the _first_index field refers to
513
513
uint _n_fields; // Number of non-static fields of the scalarized object.
514
514
DEBUG_ONLY (Node* _alloc;)
515
515
@@ -523,7 +523,7 @@ class SafePointScalarObjectNode: public TypeNode {
523
523
#ifdef ASSERT
524
524
Node* alloc,
525
525
#endif
526
- uint first_index, uint n_fields);
526
+ uint first_index, uint depth, uint n_fields);
527
527
virtual int Opcode () const ;
528
528
virtual uint ideal_reg () const ;
529
529
virtual const RegMask &in_RegMask (uint ) const ;
@@ -532,7 +532,7 @@ class SafePointScalarObjectNode: public TypeNode {
532
532
533
533
uint first_index (JVMState* jvms) const {
534
534
assert (jvms != nullptr , " missed JVMS" );
535
- return jvms->scloff () + _first_index;
535
+ return jvms->of_depth (_depth)-> scloff () + _first_index;
536
536
}
537
537
uint n_fields () const { return _n_fields; }
538
538
1 commit comments
openjdk-notifier[bot] commentedon Jun 14, 2024
Review
Issues