@@ -9989,11 +9989,11 @@ instruct CallStaticJavaDirect(method meth)
9989
9989
// Call Java Dynamic Instruction
9990
9990
// Note: If this code changes, the corresponding ret_addr_offset() and
9991
9991
// compute_padding() functions will have to be adjusted.
9992
- instruct CallDynamicJavaDirect(method meth, rFlagsReg cr )
9992
+ instruct CallDynamicJavaDirect(method meth)
9993
9993
%{
9994
9994
match(CallDynamicJava);
9995
9995
9996
- effect(USE meth, KILL cr );
9996
+ effect(USE meth);
9997
9997
9998
9998
ins_cost(BRANCH_COST + ALU_COST * 5);
9999
9999
@@ -10008,11 +10008,11 @@ instruct CallDynamicJavaDirect(method meth, rFlagsReg cr)
10008
10008
10009
10009
// Call Runtime Instruction
10010
10010
10011
- instruct CallRuntimeDirect(method meth, rFlagsReg cr )
10011
+ instruct CallRuntimeDirect(method meth)
10012
10012
%{
10013
10013
match(CallRuntime);
10014
10014
10015
- effect(USE meth, KILL cr );
10015
+ effect(USE meth);
10016
10016
10017
10017
ins_cost(BRANCH_COST);
10018
10018
@@ -10025,11 +10025,11 @@ instruct CallRuntimeDirect(method meth, rFlagsReg cr)
10025
10025
10026
10026
// Call Runtime Instruction
10027
10027
10028
- instruct CallLeafDirect(method meth, rFlagsReg cr )
10028
+ instruct CallLeafDirect(method meth)
10029
10029
%{
10030
10030
match(CallLeaf);
10031
10031
10032
- effect(USE meth, KILL cr );
10032
+ effect(USE meth);
10033
10033
10034
10034
ins_cost(BRANCH_COST);
10035
10035
@@ -10042,11 +10042,11 @@ instruct CallLeafDirect(method meth, rFlagsReg cr)
10042
10042
10043
10043
// Call Runtime Instruction without safepoint and with vector arguments
10044
10044
10045
- instruct CallLeafDirectVector(method meth, rFlagsReg cr )
10045
+ instruct CallLeafDirectVector(method meth)
10046
10046
%{
10047
10047
match(CallLeafVector);
10048
10048
10049
- effect(USE meth, KILL cr );
10049
+ effect(USE meth);
10050
10050
10051
10051
ins_cost(BRANCH_COST);
10052
10052
@@ -10059,11 +10059,11 @@ instruct CallLeafDirectVector(method meth, rFlagsReg cr)
10059
10059
10060
10060
// Call Runtime Instruction
10061
10061
10062
- instruct CallLeafNoFPDirect(method meth, rFlagsReg cr )
10062
+ instruct CallLeafNoFPDirect(method meth)
10063
10063
%{
10064
10064
match(CallLeafNoFP);
10065
10065
10066
- effect(USE meth, KILL cr );
10066
+ effect(USE meth);
10067
10067
10068
10068
ins_cost(BRANCH_COST);
10069
10069
0 commit comments