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

  /external/chromium_org/v8/src/x87/
lithium-codegen-x87.h 96 void X87Fxch(X87Register reg, int other_slot = 0) {
97 x87_stack_.Fxch(reg, other_slot);
399 void Fxch(X87Register reg, int other_slot = 0);
lithium-codegen-x87.cc 503 void LCodeGen::X87Stack::Fxch(X87Register reg, int other_slot) {
505 ASSERT(Contains(reg) && stack_depth_ > other_slot); local
508 if (st != other_slot) {
509 int other_i = st2idx(other_slot);
514 __ fxch(other_slot);
515 } else if (other_slot == 0) {
519 __ fxch(other_slot);
    [all...]

Completed in 60 milliseconds