Searched refs:PushOpcode (Results 1 – 4 of 4) sorted by relevance
/external/llvm/lib/Target/X86/ |
D | X86CallFrameOptimization.cpp | 469 unsigned PushOpcode; in adjustCallSequence() local 475 PushOpcode = Is64Bit ? X86::PUSH64i32 : X86::PUSHi32; in adjustCallSequence() 483 PushOpcode = Is64Bit ? X86::PUSH64i8 : X86::PUSH32i8; in adjustCallSequence() 485 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)) in adjustCallSequence() 512 PushOpcode = Is64Bit ? X86::PUSH64rmm : X86::PUSH32rmm; in adjustCallSequence() 513 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)); in adjustCallSequence() 521 PushOpcode = Is64Bit ? X86::PUSH64r : X86::PUSH32r; in adjustCallSequence() 522 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)) in adjustCallSequence()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/ |
D | X86CallFrameOptimization.cpp | 509 unsigned PushOpcode; in adjustCallSequence() local 521 PushOpcode = Is64Bit ? X86::PUSH64i32 : X86::PUSHi32; in adjustCallSequence() 529 PushOpcode = Is64Bit ? X86::PUSH64i8 : X86::PUSH32i8; in adjustCallSequence() 531 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)).add(PushOp); in adjustCallSequence() 557 PushOpcode = Is64Bit ? X86::PUSH64rmm : X86::PUSH32rmm; in adjustCallSequence() 558 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)); in adjustCallSequence() 566 PushOpcode = Is64Bit ? X86::PUSH64r : X86::PUSH32r; in adjustCallSequence() 567 Push = BuildMI(MBB, Context.Call, DL, TII->get(PushOpcode)) in adjustCallSequence()
|
/external/swiftshader/third_party/subzero/unittest/AssemblerX8664/ |
D | LowLevel.cpp | 100 constexpr uint8_t PushOpcode = 0x50; in TEST_F() local 102 codeBytes(), PushOpcode | Encoded_GPR_eax(), in TEST_F() 103 PushOpcode | Encoded_GPR_ebx(), PushOpcode | Encoded_GPR_ecx(), in TEST_F() 104 PushOpcode | Encoded_GPR_edx(), PushOpcode | Encoded_GPR_edi(), in TEST_F() 105 PushOpcode | Encoded_GPR_esi(), PushOpcode | Encoded_GPR_ebp(), Rex_B, in TEST_F() 106 PushOpcode | (Encoded_GPR_r8() & 7), Rex_B, in TEST_F() 107 PushOpcode | (Encoded_GPR_r9() & 7), Rex_B, in TEST_F() 108 PushOpcode | (Encoded_GPR_r10() & 7), Rex_B, in TEST_F() 109 PushOpcode | (Encoded_GPR_r11() & 7), Rex_B, in TEST_F() 110 PushOpcode | (Encoded_GPR_r12() & 7), Rex_B, in TEST_F() [all …]
|
/external/swiftshader/third_party/subzero/unittest/AssemblerX8632/ |
D | LowLevel.cpp | 77 constexpr uint8_t PushOpcode = 0x50; in TEST_F() local 78 verifyBytes<ByteCount>(codeBytes(), PushOpcode | GPRRegister::Encoded_Reg_eax, in TEST_F() 79 PushOpcode | GPRRegister::Encoded_Reg_ebx, in TEST_F() 80 PushOpcode | GPRRegister::Encoded_Reg_ecx, in TEST_F() 81 PushOpcode | GPRRegister::Encoded_Reg_edx, in TEST_F() 82 PushOpcode | GPRRegister::Encoded_Reg_edi, in TEST_F() 83 PushOpcode | GPRRegister::Encoded_Reg_esi, in TEST_F() 84 PushOpcode | GPRRegister::Encoded_Reg_ebp); in TEST_F()
|