# HG changeset patch # User kvn # Date 1370033687 25200 # Node ID 3bd093aedfe9d47f9362f1cb5609f46bd96c577d # Parent 2c49e72dcf087149cccbfe58375f6c8c3d81defb 8015441: runThese crashed with assert(opcode == Op_ConP || opcode == Op_ThreadLocal || opcode == Op_CastX2P ..) failed: sanity Summary: Relax the assert to accept any raw ptr types. Reviewed-by: roland diff -r 2c49e72dcf08 -r 3bd093aedfe9 hotspot/src/share/vm/opto/escape.cpp --- a/hotspot/src/share/vm/opto/escape.cpp Fri May 31 14:40:26 2013 +0200 +++ b/hotspot/src/share/vm/opto/escape.cpp Fri May 31 13:54:47 2013 -0700 @@ -2202,7 +2202,7 @@ int opcode = uncast_base->Opcode(); assert(opcode == Op_ConP || opcode == Op_ThreadLocal || opcode == Op_CastX2P || uncast_base->is_DecodeNarrowPtr() || - (uncast_base->is_Mem() && uncast_base->bottom_type() == TypeRawPtr::NOTNULL) || + (uncast_base->is_Mem() && (uncast_base->bottom_type()->isa_rawptr() != NULL)) || (uncast_base->is_Proj() && uncast_base->in(0)->is_Allocate()), "sanity"); } return base;