mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-22 20:14:43 +02:00
6710487: More than half of JDI Regression tests hang with COOPs in -Xcomp mode
Remove DecodeNNode::decode() and EncodePNode::encode() methods. Reviewed-by: rasbold, never
This commit is contained in:
parent
2d64a7a369
commit
a671e7c7b5
17 changed files with 103 additions and 143 deletions
|
@ -743,8 +743,8 @@ Node *CmpPNode::Ideal( PhaseGVN *phase, bool can_reshape ) {
|
|||
// Simplify an CmpN (compare 2 pointers) node, based on local information.
|
||||
// If both inputs are constants, compare them.
|
||||
const Type *CmpNNode::sub( const Type *t1, const Type *t2 ) const {
|
||||
const TypePtr *r0 = t1->is_narrowoop()->make_oopptr(); // Handy access
|
||||
const TypePtr *r1 = t2->is_narrowoop()->make_oopptr();
|
||||
const TypePtr *r0 = t1->make_ptr(); // Handy access
|
||||
const TypePtr *r1 = t2->make_ptr();
|
||||
|
||||
// Undefined inputs makes for an undefined result
|
||||
if( TypePtr::above_centerline(r0->_ptr) ||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue