Searched defs:pop_size (Results 1 - 4 of 4) sorted by relevance

/external/swiftshader/third_party/subzero/unittest/
H A DIceELFSectionTest.cpp26 size_t pop_size = std::string("pop").size(); local
45 EXPECT_EQ(pop_index, lollipop_index + (lollipop_size - pop_size));
52 EXPECT_EQ(Strtab.getSectionData().slice(pop_index, pop_index + pop_size),
/external/v8/src/compiler/ia32/
H A Dcode-generator-ia32.cc2389 // Might need ecx for scratch if pop_size is too big or if there is a variable
2392 size_t pop_size = descriptor->StackParameterCount() * kPointerSize; local
2415 pop_size += g.ToConstant(pop).ToInt32() * kPointerSize;
2416 __ Ret(static_cast<int>(pop_size), ecx);
2421 __ lea(esp, Operand(esp, pop_reg, times_4, static_cast<int>(pop_size)));
/external/v8/src/compiler/x64/
H A Dcode-generator-x64.cc2571 // Might need rcx for scratch if pop_size is too big or if there is a variable
2575 size_t pop_size = descriptor->StackParameterCount() * kPointerSize; local
2596 pop_size += g.ToConstant(pop).ToInt32() * kPointerSize;
2597 CHECK_LT(pop_size, static_cast<size_t>(std::numeric_limits<int>::max()));
2598 __ Ret(static_cast<int>(pop_size), rcx);
2603 __ leaq(rsp, Operand(rsp, pop_reg, times_8, static_cast<int>(pop_size)));
/external/v8/src/compiler/x87/
H A Dcode-generator-x87.cc2506 // Might need ecx for scratch if pop_size is too big or if there is a variable
2509 size_t pop_size = descriptor->StackParameterCount() * kPointerSize; local
2532 pop_size += g.ToConstant(pop).ToInt32() * kPointerSize;
2533 __ Ret(static_cast<int>(pop_size), ecx);
2538 __ lea(esp, Operand(esp, pop_reg, times_4, static_cast<int>(pop_size)));

Completed in 136 milliseconds