Skip to content

Commit 124db3b

Browse files
committedAug 27, 2020
8252215: Remove VerifyOptoOopOffsets flag
Reviewed-by: thartmann, kvn
1 parent 0483ff5 commit 124db3b

File tree

3 files changed

+6
-43
lines changed

3 files changed

+6
-43
lines changed
 

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

-10
Original file line numberDiff line numberDiff line change
@@ -1146,16 +1146,6 @@ bool ShenandoahBarrierSetC2::final_graph_reshaping(Compile* compile, Node* n, ui
11461146
case Op_ShenandoahWeakCompareAndSwapP:
11471147
case Op_ShenandoahCompareAndExchangeP:
11481148
case Op_ShenandoahCompareAndExchangeN:
1149-
#ifdef ASSERT
1150-
if( VerifyOptoOopOffsets ) {
1151-
MemNode* mem = n->as_Mem();
1152-
// Check to see if address types have grounded out somehow.
1153-
const TypeInstPtr *tp = mem->in(MemNode::Address)->bottom_type()->isa_instptr();
1154-
ciInstanceKlass *k = tp->klass()->as_instance_klass();
1155-
bool oop_offset_is_sane = k->contains_field_offset(tp->offset());
1156-
assert( !tp || oop_offset_is_sane, "" );
1157-
}
1158-
#endif
11591149
return true;
11601150
case Op_ShenandoahLoadReferenceBarrier:
11611151
assert(false, "should have been expanded already");

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

-3
Original file line numberDiff line numberDiff line change
@@ -112,9 +112,6 @@
112112
notproduct(bool, PrintIdealNodeCount, false, \
113113
"Print liveness counts of ideal nodes") \
114114
\
115-
notproduct(bool, VerifyOptoOopOffsets, false, \
116-
"Check types of base addresses in field references") \
117-
\
118115
develop(bool, IdealizedNumerics, false, \
119116
"Check performance difference allowing FP " \
120117
"associativity and commutativity...") \

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

+6-30
Original file line numberDiff line numberDiff line change
@@ -2719,15 +2719,6 @@ struct Final_Reshape_Counts : public StackObj {
27192719
int get_inner_loop_count() const { return _inner_loop_count; }
27202720
};
27212721

2722-
#ifdef ASSERT
2723-
static bool oop_offset_is_sane(const TypeInstPtr* tp) {
2724-
ciInstanceKlass *k = tp->klass()->as_instance_klass();
2725-
// Make sure the offset goes inside the instance layout.
2726-
return k->contains_field_offset(tp->offset());
2727-
// Note that OffsetBot and OffsetTop are very negative.
2728-
}
2729-
#endif
2730-
27312722
// Eliminate trivially redundant StoreCMs and accumulate their
27322723
// precedence edges.
27332724
void Compile::eliminate_redundant_card_marks(Node* n) {
@@ -2850,6 +2841,8 @@ void Compile::final_graph_reshaping_main_switch(Node* n, Final_Reshape_Counts& f
28502841
case Op_ConF:
28512842
case Op_CmpF:
28522843
case Op_CmpF3:
2844+
case Op_StoreF:
2845+
case Op_LoadF:
28532846
// case Op_ConvL2F: // longs are split into 32-bit halves
28542847
frc.inc_float_count();
28552848
break;
@@ -2874,6 +2867,9 @@ void Compile::final_graph_reshaping_main_switch(Node* n, Final_Reshape_Counts& f
28742867
case Op_ConD:
28752868
case Op_CmpD:
28762869
case Op_CmpD3:
2870+
case Op_StoreD:
2871+
case Op_LoadD:
2872+
case Op_LoadD_unaligned:
28772873
frc.inc_double_count();
28782874
break;
28792875
case Op_Opaque1: // Remove Opaque Nodes before matching
@@ -2915,16 +2911,6 @@ void Compile::final_graph_reshaping_main_switch(Node* n, Final_Reshape_Counts& f
29152911
break;
29162912
}
29172913

2918-
case Op_StoreD:
2919-
case Op_LoadD:
2920-
case Op_LoadD_unaligned:
2921-
frc.inc_double_count();
2922-
goto handle_mem;
2923-
case Op_StoreF:
2924-
case Op_LoadF:
2925-
frc.inc_float_count();
2926-
goto handle_mem;
2927-
29282914
case Op_StoreCM:
29292915
{
29302916
// Convert OopStore dependence into precedence edge
@@ -2986,18 +2972,8 @@ void Compile::final_graph_reshaping_main_switch(Node* n, Final_Reshape_Counts& f
29862972
case Op_LoadP:
29872973
case Op_LoadN:
29882974
case Op_LoadRange:
2989-
case Op_LoadS: {
2990-
handle_mem:
2991-
#ifdef ASSERT
2992-
if( VerifyOptoOopOffsets ) {
2993-
MemNode* mem = n->as_Mem();
2994-
// Check to see if address types have grounded out somehow.
2995-
const TypeInstPtr *tp = mem->in(MemNode::Address)->bottom_type()->isa_instptr();
2996-
assert( !tp || oop_offset_is_sane(tp), "" );
2997-
}
2998-
#endif
2975+
case Op_LoadS:
29992976
break;
3000-
}
30012977

30022978
case Op_AddP: { // Assert sane base pointers
30032979
Node *addp = n->in(AddPNode::Address);

0 commit comments

Comments
 (0)
Please sign in to comment.