@@ -137,7 +137,7 @@ OptoReg::Name Matcher::warp_incoming_stk_arg( VMReg reg ) {
137
137
_in_arg_limit = OptoReg::add (warped, 1 ); // Bump max stack slot seen
138
138
if (!RegMask::can_represent_arg (warped)) {
139
139
// the compiler cannot represent this method's calling sequence
140
- C->record_method_not_compilable_all_tiers (" unsupported incoming calling sequence" );
140
+ C->record_method_not_compilable (" unsupported incoming calling sequence" );
141
141
return OptoReg::Bad;
142
142
}
143
143
return warped;
@@ -1139,7 +1139,7 @@ OptoReg::Name Matcher::warp_outgoing_stk_arg( VMReg reg, OptoReg::Name begin_out
1139
1139
if ( warped >= out_arg_limit_per_call )
1140
1140
out_arg_limit_per_call = OptoReg::add (warped,1 );
1141
1141
if (!RegMask::can_represent_arg (warped)) {
1142
- C->record_method_not_compilable_all_tiers (" unsupported calling sequence" );
1142
+ C->record_method_not_compilable (" unsupported calling sequence" );
1143
1143
return OptoReg::Bad;
1144
1144
}
1145
1145
return warped;
@@ -1318,7 +1318,7 @@ MachNode *Matcher::match_sfpt( SafePointNode *sfpt ) {
1318
1318
uint r_cnt = mcall->tf ()->range ()->cnt ();
1319
1319
MachProjNode *proj = new (C) MachProjNode ( mcall, r_cnt+10000 , RegMask::Empty, MachProjNode::fat_proj );
1320
1320
if (!RegMask::can_represent_arg (OptoReg::Name (out_arg_limit_per_call-1 ))) {
1321
- C->record_method_not_compilable_all_tiers (" unsupported outgoing calling sequence" );
1321
+ C->record_method_not_compilable (" unsupported outgoing calling sequence" );
1322
1322
} else {
1323
1323
for (int i = begin_out_arg_area; i < out_arg_limit_per_call; i++)
1324
1324
proj->_rout .Insert (OptoReg::Name (i));
@@ -1506,7 +1506,7 @@ Node *Matcher::Label_Root( const Node *n, State *svec, Node *control, const Node
1506
1506
// out of stack space. See bugs 6272980 & 6227033 for more info.
1507
1507
LabelRootDepth++;
1508
1508
if (LabelRootDepth > MaxLabelRootDepth) {
1509
- C->record_method_not_compilable_all_tiers (" Out of stack space, increase MaxLabelRootDepth" );
1509
+ C->record_method_not_compilable (" Out of stack space, increase MaxLabelRootDepth" );
1510
1510
return NULL ;
1511
1511
}
1512
1512
uint care = 0 ; // Edges matcher cares about
0 commit comments