Searched refs:_rsp_offset (Results 1 - 2 of 2) sorted by relevance

/openjdk9/hotspot/src/cpu/x86/vm/
H A Dc1_MacroAssembler_x86.hpp31 int _rsp_offset; // track rsp changes variable
33 void pd_init() { _rsp_offset = 0; }
95 int rsp_offset() const { return _rsp_offset; }
96 void set_rsp_offset(int n) { _rsp_offset = n; }
99 // This helps us to track the rsp changes compared to the entry rsp (->_rsp_offset)
101 void push_jint (jint i) { _rsp_offset++; push(i); }
102 void push_oop (jobject o) { _rsp_offset++; pushoop(o); }
104 void push_addr (Address a) { _rsp_offset++; pushptr(a); }
105 void push_reg (Register r) { _rsp_offset++; push(r); }
106 void pop_reg (Register r) { _rsp_offset
[all...]
/openjdk9/hotspot/src/cpu/aarch64/vm/
H A Dc1_MacroAssembler_aarch64.hpp35 int _rsp_offset; // track rsp changes variable
37 void pd_init() { _rsp_offset = 0; }
104 int rsp_offset() const { return _rsp_offset; }
105 void set_rsp_offset(int n) { _rsp_offset = n; }

Completed in 46 milliseconds