HomeSort by relevance Sort by last modified time
    Searched refs:other_slot (Results 1 - 2 of 2) sorted by null

  /external/v8/src/crankshaft/x87/
lithium-codegen-x87.h 90 void X87Fxch(X87Register reg, int other_slot = 0) {
91 x87_stack_.Fxch(reg, other_slot);
379 void Fxch(X87Register reg, int other_slot = 0);
lithium-codegen-x87.cc 436 void LCodeGen::X87Stack::Fxch(X87Register reg, int other_slot) {
438 DCHECK(Contains(reg) && stack_depth_ > other_slot); local
441 if (st != other_slot) {
442 int other_i = st2idx(other_slot);
447 __ fxch(other_slot);
448 } else if (other_slot == 0) {
452 __ fxch(other_slot);
    [all...]

Completed in 67 milliseconds