@@ -2719,15 +2719,6 @@ struct Final_Reshape_Counts : public StackObj {
2719
2719
int get_inner_loop_count () const { return _inner_loop_count; }
2720
2720
};
2721
2721
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
-
2731
2722
// Eliminate trivially redundant StoreCMs and accumulate their
2732
2723
// precedence edges.
2733
2724
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
2850
2841
case Op_ConF:
2851
2842
case Op_CmpF:
2852
2843
case Op_CmpF3:
2844
+ case Op_StoreF:
2845
+ case Op_LoadF:
2853
2846
// case Op_ConvL2F: // longs are split into 32-bit halves
2854
2847
frc.inc_float_count ();
2855
2848
break ;
@@ -2874,6 +2867,9 @@ void Compile::final_graph_reshaping_main_switch(Node* n, Final_Reshape_Counts& f
2874
2867
case Op_ConD:
2875
2868
case Op_CmpD:
2876
2869
case Op_CmpD3:
2870
+ case Op_StoreD:
2871
+ case Op_LoadD:
2872
+ case Op_LoadD_unaligned:
2877
2873
frc.inc_double_count ();
2878
2874
break ;
2879
2875
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
2915
2911
break ;
2916
2912
}
2917
2913
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
-
2928
2914
case Op_StoreCM:
2929
2915
{
2930
2916
// Convert OopStore dependence into precedence edge
@@ -2986,18 +2972,8 @@ void Compile::final_graph_reshaping_main_switch(Node* n, Final_Reshape_Counts& f
2986
2972
case Op_LoadP:
2987
2973
case Op_LoadN:
2988
2974
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:
2999
2976
break ;
3000
- }
3001
2977
3002
2978
case Op_AddP: { // Assert sane base pointers
3003
2979
Node *addp = n->in (AddPNode::Address);
0 commit comments