Skip to content

Commit fa0a72c

Browse files
eme64TobiHartmann
authored andcommittedFeb 10, 2022
8252496: C2: Useless code in MergeMemNode::Ideal
Reviewed-by: thartmann, chagedorn, vlivanov
1 parent 7218d84 commit fa0a72c

File tree

1 file changed

+0
-24
lines changed

1 file changed

+0
-24
lines changed
 

‎src/hotspot/share/opto/memnode.cpp

-24
Original file line numberDiff line numberDiff line change
@@ -4752,29 +4752,6 @@ Node *MergeMemNode::Ideal(PhaseGVN *phase, bool can_reshape) {
47524752
// the base memory might contribute new slices beyond my req()
47534753
if (old_mbase) grow_to_match(old_mbase);
47544754

4755-
// Look carefully at the base node if it is a phi.
4756-
PhiNode* phi_base;
4757-
if (new_base != NULL && new_base->is_Phi())
4758-
phi_base = new_base->as_Phi();
4759-
else
4760-
phi_base = NULL;
4761-
4762-
Node* phi_reg = NULL;
4763-
uint phi_len = (uint)-1;
4764-
if (phi_base != NULL) {
4765-
phi_reg = phi_base->region();
4766-
phi_len = phi_base->req();
4767-
// see if the phi is unfinished
4768-
for (uint i = 1; i < phi_len; i++) {
4769-
if (phi_base->in(i) == NULL) {
4770-
// incomplete phi; do not look at it yet!
4771-
phi_reg = NULL;
4772-
phi_len = (uint)-1;
4773-
break;
4774-
}
4775-
}
4776-
}
4777-
47784755
// Note: We do not call verify_sparse on entry, because inputs
47794756
// can normalize to the base_memory via subsume_node or similar
47804757
// mechanisms. This method repairs that damage.
@@ -4975,7 +4952,6 @@ Node* MergeMemNode::memory_at(uint alias_idx) const {
49754952

49764953
// Otherwise, it is a narrow slice.
49774954
Node* n = alias_idx < req() ? in(alias_idx) : empty_memory();
4978-
Compile *C = Compile::current();
49794955
if (is_empty_memory(n)) {
49804956
// the array is sparse; empty slots are the "top" node
49814957
n = base_memory();

0 commit comments

Comments
 (0)
Please sign in to comment.