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

/openjdk7/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; }
94 int rsp_offset() const { return _rsp_offset; }
95 void set_rsp_offset(int n) { _rsp_offset = n; }
98 // This helps us to track the rsp changes compared to the entry rsp (->_rsp_offset)
100 void push_jint (jint i) { _rsp_offset++; push(i); }
101 void push_oop (jobject o) { _rsp_offset++; pushoop(o); }
103 void push_addr (Address a) { _rsp_offset++; pushptr(a); }
104 void push_reg (Register r) { _rsp_offset++; push(r); }
105 void pop_reg (Register r) { _rsp_offset
[all...]

Completed in 43 milliseconds