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

/openjdk7/hotspot/src/cpu/x86/vm/
H A Dassembler_x86.hpp2171 // and which only pops x and y if specified. If pop_right is
2173 void fcmp(Register tmp, int index, bool pop_left, bool pop_right);
2181 // and which only pops x and y if specified. If pop_right is
2183 void fcmp2int(Register dst, bool unordered_is_less, int index, bool pop_left, bool pop_right);
H A Dassembler_x86.cpp7503 void MacroAssembler::fcmp(Register tmp, int index, bool pop_left, bool pop_right) { argument
7504 assert(!pop_right || pop_left, "usage error");
7512 if (pop_right) {
7518 if (pop_right) {
7543 void MacroAssembler::fcmp2int(Register dst, bool unordered_is_less, int index, bool pop_left, bool pop_right) { argument
7544 fcmp(VM_Version::supports_cmov() ? noreg : dst, index, pop_left, pop_right);

Completed in 82 milliseconds