Skip to content

Commit e073486

Browse files
author
Vladimir Kozlov
committedMar 31, 2021
8262093: java/util/concurrent/tck/JSR166TestCase.java failed "assert(false) failed: unexpected node"
Reviewed-by: thartmann
1 parent 815248a commit e073486

File tree

4 files changed

+53
-18
lines changed

4 files changed

+53
-18
lines changed
 

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -4206,7 +4206,7 @@ Node* GraphKit::compress_string(Node* src, const TypeAryPtr* src_type, Node* dst
42064206
// LoadB -> compress_string -> MergeMem(CharMem, StoreB(ByteMem))
42074207
Node* mem = capture_memory(src_type, TypeAryPtr::BYTES);
42084208
StrCompressedCopyNode* str = new StrCompressedCopyNode(control(), mem, src, dst, count);
4209-
Node* res_mem = _gvn.transform(new SCMemProjNode(str));
4209+
Node* res_mem = _gvn.transform(new SCMemProjNode(_gvn.transform(str)));
42104210
set_memory(res_mem, TypeAryPtr::BYTES);
42114211
return str;
42124212
}

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

+11-6
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,11 @@ static Node *scan_mem_chain(Node *mem, int alias_idx, int offset, Node *start_me
196196
}
197197
mem = in->in(TypeFunc::Memory);
198198
} else {
199+
#ifdef ASSERT
200+
in->dump();
201+
mem->dump();
199202
assert(false, "unexpected projection");
203+
#endif
200204
}
201205
} else if (mem->is_Store()) {
202206
const TypePtr* atype = mem->as_Store()->adr_type();
@@ -207,8 +211,9 @@ static Node *scan_mem_chain(Node *mem, int alias_idx, int offset, Node *start_me
207211
uint adr_iid = atype->is_oopptr()->instance_id();
208212
// Array elements references have the same alias_idx
209213
// but different offset and different instance_id.
210-
if (adr_offset == offset && adr_iid == alloc->_idx)
214+
if (adr_offset == offset && adr_iid == alloc->_idx) {
211215
return mem;
216+
}
212217
} else {
213218
assert(adr_idx == Compile::AliasIdxRaw, "address must match or be raw");
214219
}
@@ -222,10 +227,11 @@ static Node *scan_mem_chain(Node *mem, int alias_idx, int offset, Node *start_me
222227
InitializeNode* init = alloc->as_Allocate()->initialization();
223228
// We are looking for stored value, return Initialize node
224229
// or memory edge from Allocate node.
225-
if (init != NULL)
230+
if (init != NULL) {
226231
return init;
227-
else
232+
} else {
228233
return alloc->in(TypeFunc::Memory); // It will produce zero value (see callers).
234+
}
229235
}
230236
// Otherwise skip it (the call updated 'mem' value).
231237
} else if (mem->Opcode() == Op_SCMemProj) {
@@ -420,10 +426,8 @@ Node *PhaseMacroExpand::value_from_mem_phi(Node *mem, BasicType ft, const Type *
420426
}
421427
values.at_put(j, res);
422428
} else {
423-
#ifdef ASSERT
424-
val->dump();
429+
DEBUG_ONLY( val->dump(); )
425430
assert(false, "unknown node on this path");
426-
#endif
427431
return NULL; // unknown node on this path
428432
}
429433
}
@@ -500,6 +504,7 @@ Node *PhaseMacroExpand::value_from_mem(Node *sfpt_mem, Node *sfpt_ctl, BasicType
500504
} else if (mem->is_ArrayCopy()) {
501505
done = true;
502506
} else {
507+
DEBUG_ONLY( mem->dump(); )
503508
assert(false, "unexpected node");
504509
}
505510
}

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

+39-11
Original file line numberDiff line numberDiff line change
@@ -2969,25 +2969,23 @@ Node *StoreCMNode::Ideal(PhaseGVN *phase, bool can_reshape){
29692969

29702970
//------------------------------Value-----------------------------------------
29712971
const Type* StoreCMNode::Value(PhaseGVN* phase) const {
2972-
// Either input is TOP ==> the result is TOP
2973-
const Type *t = phase->type( in(MemNode::Memory) );
2974-
if( t == Type::TOP ) return Type::TOP;
2975-
t = phase->type( in(MemNode::Address) );
2976-
if( t == Type::TOP ) return Type::TOP;
2977-
t = phase->type( in(MemNode::ValueIn) );
2978-
if( t == Type::TOP ) return Type::TOP;
2972+
// Either input is TOP ==> the result is TOP (checked in StoreNode::Value).
29792973
// If extra input is TOP ==> the result is TOP
2980-
t = phase->type( in(MemNode::OopStore) );
2981-
if( t == Type::TOP ) return Type::TOP;
2982-
2983-
return StoreNode::Value( phase );
2974+
const Type* t = phase->type(in(MemNode::OopStore));
2975+
if (t == Type::TOP) {
2976+
return Type::TOP;
2977+
}
2978+
return StoreNode::Value(phase);
29842979
}
29852980

29862981

29872982
//=============================================================================
29882983
//----------------------------------SCMemProjNode------------------------------
29892984
const Type* SCMemProjNode::Value(PhaseGVN* phase) const
29902985
{
2986+
if (in(0) == NULL || phase->type(in(0)) == Type::TOP) {
2987+
return Type::TOP;
2988+
}
29912989
return bottom_type();
29922990
}
29932991

@@ -3006,6 +3004,27 @@ LoadStoreNode::LoadStoreNode( Node *c, Node *mem, Node *adr, Node *val, const Ty
30063004
init_class_id(Class_LoadStore);
30073005
}
30083006

3007+
//------------------------------Value-----------------------------------------
3008+
const Type* LoadStoreNode::Value(PhaseGVN* phase) const {
3009+
// Either input is TOP ==> the result is TOP
3010+
if (!in(MemNode::Control) || phase->type(in(MemNode::Control)) == Type::TOP) {
3011+
return Type::TOP;
3012+
}
3013+
const Type* t = phase->type(in(MemNode::Memory));
3014+
if (t == Type::TOP) {
3015+
return Type::TOP;
3016+
}
3017+
t = phase->type(in(MemNode::Address));
3018+
if (t == Type::TOP) {
3019+
return Type::TOP;
3020+
}
3021+
t = phase->type(in(MemNode::ValueIn));
3022+
if (t == Type::TOP) {
3023+
return Type::TOP;
3024+
}
3025+
return bottom_type();
3026+
}
3027+
30093028
uint LoadStoreNode::ideal_reg() const {
30103029
return _type->ideal_reg();
30113030
}
@@ -3051,6 +3070,15 @@ LoadStoreConditionalNode::LoadStoreConditionalNode( Node *c, Node *mem, Node *ad
30513070
init_req(ExpectedIn, ex );
30523071
}
30533072

3073+
const Type* LoadStoreConditionalNode::Value(PhaseGVN* phase) const {
3074+
// Either input is TOP ==> the result is TOP
3075+
const Type* t = phase->type(in(ExpectedIn));
3076+
if (t == Type::TOP) {
3077+
return Type::TOP;
3078+
}
3079+
return LoadStoreNode::Value(phase);
3080+
}
3081+
30543082
//=============================================================================
30553083
//-------------------------------adr_type--------------------------------------
30563084
const TypePtr* ClearArrayNode::adr_type() const {

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

+2
Original file line numberDiff line numberDiff line change
@@ -849,6 +849,7 @@ class LoadStoreNode : public Node {
849849
virtual const Type *bottom_type() const { return _type; }
850850
virtual uint ideal_reg() const;
851851
virtual const class TypePtr *adr_type() const { return _adr_type; } // returns bottom_type of address
852+
virtual const Type* Value(PhaseGVN* phase) const;
852853

853854
bool result_not_used() const;
854855
MemBarNode* trailing_membar() const;
@@ -863,6 +864,7 @@ class LoadStoreConditionalNode : public LoadStoreNode {
863864
ExpectedIn = MemNode::ValueIn+1 // One more input than MemNode
864865
};
865866
LoadStoreConditionalNode(Node *c, Node *mem, Node *adr, Node *val, Node *ex);
867+
virtual const Type* Value(PhaseGVN* phase) const;
866868
};
867869

868870
//------------------------------StorePConditionalNode---------------------------

0 commit comments

Comments
 (0)
Please sign in to comment.