Skip to content

Commit 3d39f09

Browse files
committedNov 29, 2021
8277654: Shenandoah: Don't produce new memory state in C2 LRB runtime call
Reviewed-by: roland, shade
1 parent 05ab176 commit 3d39f09

File tree

2 files changed

+5
-132
lines changed

2 files changed

+5
-132
lines changed
 

‎src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.cpp

+4-130
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,6 @@ bool ShenandoahBarrierC2Support::expand(Compile* C, PhaseIterGVN& igvn) {
5454
PhaseIdealLoop::optimize(igvn, LoopOptsShenandoahExpand);
5555
if (C->failing()) return false;
5656
PhaseIdealLoop::verify(igvn);
57-
DEBUG_ONLY(verify_raw_mem(C->root());)
5857
if (attempt_more_loopopts) {
5958
C->set_major_progress();
6059
if (!C->optimize_loops(igvn, LoopOptsShenandoahPostExpand)) {
@@ -964,18 +963,11 @@ void ShenandoahBarrierC2Support::test_in_cset(Node*& ctrl, Node*& not_cset_ctrl,
964963
phase->register_new_node(cset_bool, old_ctrl);
965964
}
966965

967-
void ShenandoahBarrierC2Support::call_lrb_stub(Node*& ctrl, Node*& val, Node* load_addr, Node*& result_mem, Node* raw_mem,
966+
void ShenandoahBarrierC2Support::call_lrb_stub(Node*& ctrl, Node*& val, Node* load_addr,
968967
DecoratorSet decorators, PhaseIdealLoop* phase) {
969968
IdealLoopTree*loop = phase->get_loop(ctrl);
970969
const TypePtr* obj_type = phase->igvn().type(val)->is_oopptr();
971970

972-
// The slow path stub consumes and produces raw memory in addition
973-
// to the existing memory edges
974-
Node* base = find_bottom_mem(ctrl, phase);
975-
MergeMemNode* mm = MergeMemNode::make(base);
976-
mm->set_memory_at(Compile::AliasIdxRaw, raw_mem);
977-
phase->register_new_node(mm, ctrl);
978-
979971
address calladdr = NULL;
980972
const char* name = NULL;
981973
bool is_strong = ShenandoahBarrierSet::is_strong_access(decorators);
@@ -1013,16 +1005,14 @@ void ShenandoahBarrierC2Support::call_lrb_stub(Node*& ctrl, Node*& val, Node* lo
10131005

10141006
call->init_req(TypeFunc::Control, ctrl);
10151007
call->init_req(TypeFunc::I_O, phase->C->top());
1016-
call->init_req(TypeFunc::Memory, mm);
1008+
call->init_req(TypeFunc::Memory, phase->C->top());
10171009
call->init_req(TypeFunc::FramePtr, phase->C->top());
10181010
call->init_req(TypeFunc::ReturnAdr, phase->C->top());
10191011
call->init_req(TypeFunc::Parms, val);
10201012
call->init_req(TypeFunc::Parms+1, load_addr);
10211013
phase->register_control(call, loop, ctrl);
10221014
ctrl = new ProjNode(call, TypeFunc::Control);
10231015
phase->register_control(ctrl, loop, call);
1024-
result_mem = new ProjNode(call, TypeFunc::Memory);
1025-
phase->register_new_node(result_mem, call);
10261016
val = new ProjNode(call, TypeFunc::Parms);
10271017
phase->register_new_node(val, call);
10281018
val = new CheckCastPPNode(ctrl, val, obj_type);
@@ -1341,12 +1331,9 @@ void ShenandoahBarrierC2Support::pin_and_expand(PhaseIdealLoop* phase) {
13411331
Node* ctrl = phase->get_ctrl(lrb);
13421332
Node* val = lrb->in(ShenandoahLoadReferenceBarrierNode::ValueIn);
13431333

1344-
13451334
Node* orig_ctrl = ctrl;
13461335

13471336
Node* raw_mem = fixer.find_mem(ctrl, lrb);
1348-
Node* init_raw_mem = raw_mem;
1349-
Node* raw_mem_for_ctrl = fixer.find_mem(ctrl, NULL);
13501337

13511338
IdealLoopTree *loop = phase->get_loop(ctrl);
13521339

@@ -1359,7 +1346,6 @@ void ShenandoahBarrierC2Support::pin_and_expand(PhaseIdealLoop* phase) {
13591346
enum { _heap_stable = 1, _evac_path, _not_cset, PATH_LIMIT };
13601347
Node* region = new RegionNode(PATH_LIMIT);
13611348
Node* val_phi = new PhiNode(region, val->bottom_type()->is_oopptr());
1362-
Node* raw_mem_phi = PhiNode::make(region, raw_mem, Type::MEMORY, TypeRawPtr::BOTTOM);
13631349

13641350
// Stable path.
13651351
int flags = ShenandoahHeap::HAS_FORWARDED;
@@ -1372,7 +1358,6 @@ void ShenandoahBarrierC2Support::pin_and_expand(PhaseIdealLoop* phase) {
13721358
// Heap stable case
13731359
region->init_req(_heap_stable, heap_stable_ctrl);
13741360
val_phi->init_req(_heap_stable, val);
1375-
raw_mem_phi->init_req(_heap_stable, raw_mem);
13761361

13771362
// Test for in-cset, unless it's a native-LRB. Native LRBs need to return NULL
13781363
// even for non-cset objects to prevent ressurrection of such objects.
@@ -1384,11 +1369,9 @@ void ShenandoahBarrierC2Support::pin_and_expand(PhaseIdealLoop* phase) {
13841369
if (not_cset_ctrl != NULL) {
13851370
region->init_req(_not_cset, not_cset_ctrl);
13861371
val_phi->init_req(_not_cset, val);
1387-
raw_mem_phi->init_req(_not_cset, raw_mem);
13881372
} else {
13891373
region->del_req(_not_cset);
13901374
val_phi->del_req(_not_cset);
1391-
raw_mem_phi->del_req(_not_cset);
13921375
}
13931376

13941377
// Resolve object when orig-value is in cset.
@@ -1429,15 +1412,13 @@ void ShenandoahBarrierC2Support::pin_and_expand(PhaseIdealLoop* phase) {
14291412
}
14301413
}
14311414
}
1432-
call_lrb_stub(ctrl, val, addr, result_mem, raw_mem, lrb->decorators(), phase);
1415+
call_lrb_stub(ctrl, val, addr, lrb->decorators(), phase);
14331416
region->init_req(_evac_path, ctrl);
14341417
val_phi->init_req(_evac_path, val);
1435-
raw_mem_phi->init_req(_evac_path, result_mem);
14361418

14371419
phase->register_control(region, loop, heap_stable_iff);
14381420
Node* out_val = val_phi;
14391421
phase->register_new_node(val_phi, region);
1440-
phase->register_new_node(raw_mem_phi, region);
14411422

14421423
fix_ctrl(lrb, region, fixer, uses, uses_to_ignore, last, phase);
14431424

@@ -1450,18 +1431,10 @@ void ShenandoahBarrierC2Support::pin_and_expand(PhaseIdealLoop* phase) {
14501431
for(uint next = 0; next < uses.size(); next++ ) {
14511432
Node *n = uses.at(next);
14521433
assert(phase->get_ctrl(n) == ctrl, "bad control");
1453-
assert(n != init_raw_mem, "should leave input raw mem above the barrier");
1434+
assert(n != raw_mem, "should leave input raw mem above the barrier");
14541435
phase->set_ctrl(n, region);
14551436
follow_barrier_uses(n, ctrl, uses, phase);
14561437
}
1457-
1458-
// The slow path call produces memory: hook the raw memory phi
1459-
// from the expanded load reference barrier with the rest of the graph
1460-
// which may require adding memory phis at every post dominated
1461-
// region and at enclosing loop heads. Use the memory state
1462-
// collected in memory_nodes to fix the memory graph. Update that
1463-
// memory state as we go.
1464-
fixer.fix_mem(ctrl, region, init_raw_mem, raw_mem_for_ctrl, raw_mem_phi, uses);
14651438
}
14661439
// Done expanding load-reference-barriers.
14671440
assert(ShenandoahBarrierSetC2::bsc2()->state()->load_reference_barriers_count() == 0, "all load reference barrier nodes should have been replaced");
@@ -1902,105 +1875,6 @@ void ShenandoahBarrierC2Support::optimize_after_expansion(VectorSet &visited, No
19021875
}
19031876
}
19041877

1905-
#ifdef ASSERT
1906-
void ShenandoahBarrierC2Support::verify_raw_mem(RootNode* root) {
1907-
const bool trace = false;
1908-
ResourceMark rm;
1909-
Unique_Node_List nodes;
1910-
Unique_Node_List controls;
1911-
Unique_Node_List memories;
1912-
1913-
nodes.push(root);
1914-
for (uint next = 0; next < nodes.size(); next++) {
1915-
Node *n = nodes.at(next);
1916-
if (ShenandoahBarrierSetC2::is_shenandoah_lrb_call(n)) {
1917-
controls.push(n);
1918-
if (trace) { tty->print("XXXXXX verifying"); n->dump(); }
1919-
for (uint next2 = 0; next2 < controls.size(); next2++) {
1920-
Node *m = controls.at(next2);
1921-
for (DUIterator_Fast imax, i = m->fast_outs(imax); i < imax; i++) {
1922-
Node* u = m->fast_out(i);
1923-
if (u->is_CFG() && !u->is_Root() &&
1924-
!(u->Opcode() == Op_CProj && u->in(0)->Opcode() == Op_NeverBranch && u->as_Proj()->_con == 1) &&
1925-
!(u->is_Region() && u->unique_ctrl_out()->Opcode() == Op_Halt)) {
1926-
if (trace) { tty->print("XXXXXX pushing control"); u->dump(); }
1927-
controls.push(u);
1928-
}
1929-
}
1930-
}
1931-
memories.push(n->as_Call()->proj_out(TypeFunc::Memory));
1932-
for (uint next2 = 0; next2 < memories.size(); next2++) {
1933-
Node *m = memories.at(next2);
1934-
assert(m->bottom_type() == Type::MEMORY, "");
1935-
for (DUIterator_Fast imax, i = m->fast_outs(imax); i < imax; i++) {
1936-
Node* u = m->fast_out(i);
1937-
if (u->bottom_type() == Type::MEMORY && (u->is_Mem() || u->is_ClearArray())) {
1938-
if (trace) { tty->print("XXXXXX pushing memory"); u->dump(); }
1939-
memories.push(u);
1940-
} else if (u->is_LoadStore()) {
1941-
if (trace) { tty->print("XXXXXX pushing memory"); u->find_out_with(Op_SCMemProj)->dump(); }
1942-
memories.push(u->find_out_with(Op_SCMemProj));
1943-
} else if (u->is_MergeMem() && u->as_MergeMem()->memory_at(Compile::AliasIdxRaw) == m) {
1944-
if (trace) { tty->print("XXXXXX pushing memory"); u->dump(); }
1945-
memories.push(u);
1946-
} else if (u->is_Phi()) {
1947-
assert(u->bottom_type() == Type::MEMORY, "");
1948-
if (u->adr_type() == TypeRawPtr::BOTTOM || u->adr_type() == TypePtr::BOTTOM) {
1949-
assert(controls.member(u->in(0)), "");
1950-
if (trace) { tty->print("XXXXXX pushing memory"); u->dump(); }
1951-
memories.push(u);
1952-
}
1953-
} else if (u->is_SafePoint() || u->is_MemBar()) {
1954-
for (DUIterator_Fast jmax, j = u->fast_outs(jmax); j < jmax; j++) {
1955-
Node* uu = u->fast_out(j);
1956-
if (uu->bottom_type() == Type::MEMORY) {
1957-
if (trace) { tty->print("XXXXXX pushing memory"); uu->dump(); }
1958-
memories.push(uu);
1959-
}
1960-
}
1961-
}
1962-
}
1963-
}
1964-
for (uint next2 = 0; next2 < controls.size(); next2++) {
1965-
Node *m = controls.at(next2);
1966-
if (m->is_Region()) {
1967-
bool all_in = true;
1968-
for (uint i = 1; i < m->req(); i++) {
1969-
if (!controls.member(m->in(i))) {
1970-
all_in = false;
1971-
break;
1972-
}
1973-
}
1974-
if (trace) { tty->print("XXX verifying %s", all_in ? "all in" : ""); m->dump(); }
1975-
bool found_phi = false;
1976-
for (DUIterator_Fast jmax, j = m->fast_outs(jmax); j < jmax && !found_phi; j++) {
1977-
Node* u = m->fast_out(j);
1978-
if (u->is_Phi() && memories.member(u)) {
1979-
found_phi = true;
1980-
for (uint i = 1; i < u->req() && found_phi; i++) {
1981-
Node* k = u->in(i);
1982-
if (memories.member(k) != controls.member(m->in(i))) {
1983-
found_phi = false;
1984-
}
1985-
}
1986-
}
1987-
}
1988-
assert(found_phi || all_in, "");
1989-
}
1990-
}
1991-
controls.clear();
1992-
memories.clear();
1993-
}
1994-
for( uint i = 0; i < n->len(); ++i ) {
1995-
Node *m = n->in(i);
1996-
if (m != NULL) {
1997-
nodes.push(m);
1998-
}
1999-
}
2000-
}
2001-
}
2002-
#endif
2003-
20041878
ShenandoahIUBarrierNode::ShenandoahIUBarrierNode(Node* val) : Node(NULL, val) {
20051879
ShenandoahBarrierSetC2::bsc2()->state()->add_iu_barrier(this);
20061880
}

‎src/hotspot/share/gc/shenandoah/c2/shenandoahSupport.hpp

+1-2
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,6 @@ class ShenandoahBarrierC2Support : public AllStatic {
5050

5151
static bool verify_helper(Node* in, Node_Stack& phis, VectorSet& visited, verify_type t, bool trace, Unique_Node_List& barriers_used);
5252
static void report_verify_failure(const char* msg, Node* n1 = NULL, Node* n2 = NULL);
53-
static void verify_raw_mem(RootNode* root);
5453
#endif
5554
static Node* dom_mem(Node* mem, Node* ctrl, int alias, Node*& mem_ctrl, PhaseIdealLoop* phase);
5655
static Node* no_branches(Node* c, Node* dom, bool allow_one_proj, PhaseIdealLoop* phase);
@@ -61,7 +60,7 @@ class ShenandoahBarrierC2Support : public AllStatic {
6160
static void test_null(Node*& ctrl, Node* val, Node*& null_ctrl, PhaseIdealLoop* phase);
6261
static void test_gc_state(Node*& ctrl, Node* raw_mem, Node*& heap_stable_ctrl,
6362
PhaseIdealLoop* phase, int flags);
64-
static void call_lrb_stub(Node*& ctrl, Node*& val, Node* load_addr, Node*& result_mem, Node* raw_mem,
63+
static void call_lrb_stub(Node*& ctrl, Node*& val, Node* load_addr,
6564
DecoratorSet decorators, PhaseIdealLoop* phase);
6665
static void test_in_cset(Node*& ctrl, Node*& not_cset_ctrl, Node* val, Node* raw_mem, PhaseIdealLoop* phase);
6766
static void move_gc_state_test_out_of_loop(IfNode* iff, PhaseIdealLoop* phase);

3 commit comments

Comments
 (3)

openjdk-notifier[bot] commented on Nov 29, 2021

@openjdk-notifier[bot]

earthling-amzn commented on Jun 15, 2023

@earthling-amzn
Contributor

/backport jdk17u-dev

openjdk[bot] commented on Jun 15, 2023

@openjdk[bot]

@earthling-amzn the backport was successfully created on the branch earthling-amzn-backport-3d39f09c in my personal fork of openjdk/jdk17u-dev. To create a pull request with this backport targeting openjdk/jdk17u-dev:master, just click the following link:

➡️ Create pull request

The title of the pull request is automatically filled in correctly and below you find a suggestion for the pull request body:

Hi all,

This pull request contains a backport of commit 3d39f09c from the openjdk/jdk repository.

The commit being backported was authored by Roman Kennke on 29 Nov 2021 and was reviewed by Roland Westrelin and Aleksey Shipilev.

Thanks!

If you need to update the source branch of the pull then run the following commands in a local clone of your personal fork of openjdk/jdk17u-dev:

$ git fetch https://github.com/openjdk-bots/jdk17u-dev.git earthling-amzn-backport-3d39f09c:earthling-amzn-backport-3d39f09c
$ git checkout earthling-amzn-backport-3d39f09c
# make changes
$ git add paths/to/changed/files
$ git commit --message 'Describe additional changes made'
$ git push https://github.com/openjdk-bots/jdk17u-dev.git earthling-amzn-backport-3d39f09c
Please sign in to comment.