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

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dc1_FpuStackSim_x86.hpp58 int get_slot(int tos_offset) const; // return the entry at the given offset from TOS
59 void set_slot(int tos_offset, int rnr); // set the entry at the given offset from TOS
63 bool slot_is_empty(int tos_offset);
H A Dc1_FpuStackSim_x86.cpp111 int FpuStackSim::get_slot(int tos_offset) const {
112 return regs_at(tos_index() - tos_offset);
115 void FpuStackSim::set_slot(int tos_offset, int rnr) { argument
116 set_regs_at(tos_index() - tos_offset, rnr);
156 bool FpuStackSim::slot_is_empty(int tos_offset) { argument
157 return (regs_at(tos_index() - tos_offset) == EMPTY);
H A Dc1_LinearScan_x86.cpp320 int FpuStackAllocator::tos_offset(LIR_Opr opr) { function in class:FpuStackAllocator
328 int stack_offset = tos_offset(opr);
339 assert(dont_check_offset || tos_offset(opr) == 0, "operand is not on stack top");
374 insert_exchange(tos_offset(opr));
396 int res_slot = tos_offset(opr);
403 int res_slot = tos_offset(opr);
409 int offset = tos_offset(from);
432 assert(tos_offset(opr) == 0, "can only pop stack top");
442 assert(tos_offset(opr) == 0, "can only pop stack top");
713 if (tos_offset(righ
[all...]
H A Dc1_LinearScan_x86.hpp148 int tos_offset(LIR_Opr opr);

Completed in 33 milliseconds