Home
last modified time | relevance | path

Searched refs:pop_size (Results 1 – 4 of 4) sorted by relevance

/external/swiftshader/third_party/subzero/unittest/
DIceELFSectionTest.cpp26 size_t pop_size = std::string("pop").size(); in CheckStringTablePermLayout() local
45 EXPECT_EQ(pop_index, lollipop_index + (lollipop_size - pop_size)); in CheckStringTablePermLayout()
52 EXPECT_EQ(Strtab.getSectionData().slice(pop_index, pop_index + pop_size), in CheckStringTablePermLayout()
/external/v8/src/compiler/x64/
Dcode-generator-x64.cc2575 size_t pop_size = descriptor->StackParameterCount() * kPointerSize; in AssembleReturn() local
2596 pop_size += g.ToConstant(pop).ToInt32() * kPointerSize; in AssembleReturn()
2597 CHECK_LT(pop_size, static_cast<size_t>(std::numeric_limits<int>::max())); in AssembleReturn()
2598 __ Ret(static_cast<int>(pop_size), rcx); in AssembleReturn()
2603 __ leaq(rsp, Operand(rsp, pop_reg, times_8, static_cast<int>(pop_size))); in AssembleReturn()
/external/v8/src/compiler/x87/
Dcode-generator-x87.cc2509 size_t pop_size = descriptor->StackParameterCount() * kPointerSize; in AssembleReturn() local
2532 pop_size += g.ToConstant(pop).ToInt32() * kPointerSize; in AssembleReturn()
2533 __ Ret(static_cast<int>(pop_size), ecx); in AssembleReturn()
2538 __ lea(esp, Operand(esp, pop_reg, times_4, static_cast<int>(pop_size))); in AssembleReturn()
/external/v8/src/compiler/ia32/
Dcode-generator-ia32.cc2392 size_t pop_size = descriptor->StackParameterCount() * kPointerSize; in AssembleReturn() local
2415 pop_size += g.ToConstant(pop).ToInt32() * kPointerSize; in AssembleReturn()
2416 __ Ret(static_cast<int>(pop_size), ecx); in AssembleReturn()
2421 __ lea(esp, Operand(esp, pop_reg, times_4, static_cast<int>(pop_size))); in AssembleReturn()