File tree 3 files changed +0
-9
lines changed
3 files changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -3605,7 +3605,6 @@ encode %{
3605
3605
call->_tf = _tf;
3606
3606
call->_entry_point = _entry_point;
3607
3607
call->_cnt = _cnt;
3608
- call->_argsize = _argsize;
3609
3608
call->_oop_map = _oop_map;
3610
3609
call->_jvms = _jvms;
3611
3610
call->_jvmadj = _jvmadj;
@@ -3806,7 +3805,6 @@ encode %{
3806
3805
call->_tf = _tf;
3807
3806
call->_entry_point = _entry_point;
3808
3807
call->_cnt = _cnt;
3809
- call->_argsize = _argsize;
3810
3808
call->_oop_map = _oop_map;
3811
3809
guarantee(!_jvms, "You must clone the jvms and adapt the offsets by fix_jvms().");
3812
3810
call->_jvms = NULL;
Original file line number Diff line number Diff line change @@ -880,17 +880,14 @@ class MachCallNode : public MachSafePointNode {
880
880
const TypeFunc *_tf; // Function type
881
881
address _entry_point; // Address of the method being called
882
882
float _cnt; // Estimate of number of times called
883
- uint _argsize; // Size of argument block on stack
884
883
885
884
const TypeFunc* tf () const { return _tf; }
886
885
const address entry_point () const { return _entry_point; }
887
886
const float cnt () const { return _cnt; }
888
- uint argsize () const { return _argsize; }
889
887
890
888
void set_tf (const TypeFunc* tf) { _tf = tf; }
891
889
void set_entry_point (address p) { _entry_point = p; }
892
890
void set_cnt (float c) { _cnt = c; }
893
- void set_argsize (int s) { _argsize = s; }
894
891
895
892
MachCallNode () : MachSafePointNode() {
896
893
init_class_id (Class_MachCall);
Original file line number Diff line number Diff line change @@ -1305,10 +1305,6 @@ MachNode *Matcher::match_sfpt( SafePointNode *sfpt ) {
1305
1305
if (OptoReg::is_valid (reg2))
1306
1306
rm->Insert ( reg2 );
1307
1307
} // End of for all arguments
1308
-
1309
- // Compute number of stack slots needed to restore stack in case of
1310
- // Pascal-style argument popping.
1311
- mcall->_argsize = out_arg_limit_per_call - begin_out_arg_area;
1312
1308
}
1313
1309
1314
1310
// Compute the max stack slot killed by any call. These will not be
You can’t perform that action at this time.
0 commit comments