Home
last modified time | relevance | path

Searched refs:other_slot (Results 1 – 2 of 2) sorted by relevance

/external/v8/src/crankshaft/x87/
Dlithium-codegen-x87.h90 void X87Fxch(X87Register reg, int other_slot = 0) {
91 x87_stack_.Fxch(reg, other_slot);
379 void Fxch(X87Register reg, int other_slot = 0);
Dlithium-codegen-x87.cc432 void LCodeGen::X87Stack::Fxch(X87Register reg, int other_slot) { in Fxch() argument
434 DCHECK(Contains(reg) && stack_depth_ > other_slot); in Fxch()
437 if (st != other_slot) { in Fxch()
438 int other_i = st2idx(other_slot); in Fxch()
443 __ fxch(other_slot); in Fxch()
444 } else if (other_slot == 0) { in Fxch()
448 __ fxch(other_slot); in Fxch()