/external/v8/src/compiler/x64/ |
D | code-generator-x64.cc | 81 Operand MemoryOperand(size_t* offset) { in MemoryOperand() function in v8::internal::compiler::X64OperandConverter 149 Operand MemoryOperand(size_t first_input = 0) { in MemoryOperand() function in v8::internal::compiler::X64OperandConverter 150 return MemoryOperand(&first_input); in MemoryOperand() 370 Operand right = i.MemoryOperand(&index); \ 393 Operand left = i.MemoryOperand(&index); \ 457 __ asm_instr(i.OutputRegister(), i.MemoryOperand()); \ 511 __ mov_inst(rax, i.MemoryOperand(1)); \ 515 __ cmpxchg_inst(i.MemoryOperand(1), i.TempRegister(0)); \ 523 __ mov_inst(rax, i.MemoryOperand(1)); \ 527 __ cmpxchg_inst(i.MemoryOperand(1), i.TempRegister(0)); \ [all …]
|
/external/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MCCodeEmitter.cpp | 1149 int MemoryOperand = X86II::getMemoryOperandNo(TSFlags); in encodeInstruction() local 1150 if (MemoryOperand != -1) MemoryOperand += CurOp; in encodeInstruction() 1153 if (MemoryOperand >= 0) in encodeInstruction() 1154 EmitSegmentOverridePrefix(CurByte, MemoryOperand+X86::AddrSegmentReg, in encodeInstruction() 1168 } else if (MemoryOperand < 0) { in encodeInstruction() 1171 assert(!Is16BitMemOperand(MI, MemoryOperand, STI)); in encodeInstruction() 1172 need_address_override = Is32BitMemOperand(MI, MemoryOperand); in encodeInstruction() 1174 assert(!Is64BitMemOperand(MI, MemoryOperand)); in encodeInstruction() 1175 need_address_override = Is16BitMemOperand(MI, MemoryOperand, STI); in encodeInstruction() 1178 assert(!Is64BitMemOperand(MI, MemoryOperand)); in encodeInstruction() [all …]
|
/external/v8/src/compiler/ia32/ |
D | code-generator-ia32.cc | 107 Operand MemoryOperand(size_t* offset) { in MemoryOperand() function in v8::internal::compiler::IA32OperandConverter 168 Operand MemoryOperand(size_t first_input = 0) { in MemoryOperand() function in v8::internal::compiler::IA32OperandConverter 169 return MemoryOperand(&first_input); in MemoryOperand() 351 Operand left = i.MemoryOperand(&index); \ 407 Operand right = i.MemoryOperand(&index); \ 422 __ mov_inst(eax, i.MemoryOperand(1)); \ 426 __ cmpxchg_inst(i.MemoryOperand(1), i.TempRegister(0)); \ 434 __ mov(i.OutputRegister(0), i.MemoryOperand(2)); \ 441 __ cmpxchg8b(i.MemoryOperand(2)); \ 450 __ mov_instr(i.OutputRegister(), i.MemoryOperand()); \ [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/X86/MCTargetDesc/ |
D | X86MCCodeEmitter.cpp | 1226 int MemoryOperand = X86II::getMemoryOperandNo(TSFlags); in encodeInstruction() local 1227 if (MemoryOperand != -1) MemoryOperand += CurOp; in encodeInstruction() 1230 if (MemoryOperand >= 0) in encodeInstruction() 1231 EmitSegmentOverridePrefix(CurByte, MemoryOperand+X86::AddrSegmentReg, in encodeInstruction() 1247 } else if (MemoryOperand < 0) { in encodeInstruction() 1250 assert(!Is16BitMemOperand(MI, MemoryOperand, STI)); in encodeInstruction() 1251 need_address_override = Is32BitMemOperand(MI, MemoryOperand); in encodeInstruction() 1253 assert(!Is64BitMemOperand(MI, MemoryOperand)); in encodeInstruction() 1254 need_address_override = Is16BitMemOperand(MI, MemoryOperand, STI); in encodeInstruction() 1257 assert(!Is64BitMemOperand(MI, MemoryOperand)); in encodeInstruction() [all …]
|
/external/v8/src/compiler/s390/ |
D | code-generator-s390.cc | 77 MemOperand MemoryOperand(AddressingMode* mode, size_t* first_index) { in MemoryOperand() function in v8::internal::compiler::S390OperandConverter 100 MemOperand MemoryOperand(AddressingMode* mode = nullptr, in MemoryOperand() function in v8::internal::compiler::S390OperandConverter 102 return MemoryOperand(mode, &first_index); in MemoryOperand() 329 mem = i.MemoryOperand(&mode, &first_index); \ 343 mem = i.MemoryOperand(&mode, &first_index); \ 514 MemOperand operand = i.MemoryOperand(&mode, &first_index); \ 547 MemOperand operand = i.MemoryOperand(&mode, &first_index); \ 580 MemOperand operand = i.MemoryOperand(&mode, &first_index); \ 829 MemOperand operand = i.MemoryOperand(&mode); \ 837 MemOperand operand = i.MemoryOperand(&mode); \ [all …]
|
/external/v8/src/compiler/mips64/ |
D | code-generator-mips64.cc | 105 MemOperand MemoryOperand(size_t* first_index) { in MemoryOperand() function in v8::internal::compiler::MipsOperandConverter 120 MemOperand MemoryOperand(size_t index = 0) { return MemoryOperand(&index); } in MemoryOperand() function in v8::internal::compiler::MipsOperandConverter 341 __ asm_instr(i.OutputRegister(), i.MemoryOperand()); \ 348 __ asm_instr(i.InputOrZeroRegister(2), i.MemoryOperand()); \ 1659 __ Lbu(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1663 __ Lb(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1667 __ Sb(i.InputOrZeroRegister(2), i.MemoryOperand()); in AssembleArchInstruction() 1670 __ Lhu(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1674 __ Ulhu(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1678 __ Lh(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() [all …]
|
/external/v8/src/compiler/mips/ |
D | code-generator-mips.cc | 102 MemOperand MemoryOperand(size_t* first_index) { in MemoryOperand() function in v8::internal::compiler::MipsOperandConverter 117 MemOperand MemoryOperand(size_t index = 0) { return MemoryOperand(&index); } in MemoryOperand() function in v8::internal::compiler::MipsOperandConverter 331 __ asm_instr(i.OutputRegister(), i.MemoryOperand()); \ 338 __ asm_instr(i.InputOrZeroRegister(2), i.MemoryOperand()); \ 1464 __ lbu(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1468 __ lb(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1472 __ sb(i.InputOrZeroRegister(2), i.MemoryOperand()); in AssembleArchInstruction() 1475 __ lhu(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1479 __ Ulhu(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1483 __ lh(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() [all …]
|
/external/v8/src/compiler/arm64/ |
D | code-generator-arm64.cc | 170 MemOperand MemoryOperand(size_t index = 0) { in MemoryOperand() function in v8::internal::compiler::Arm64OperandConverter 1509 __ Ldrb(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1513 __ Ldrsb(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1517 __ Strb(i.InputOrZeroRegister64(0), i.MemoryOperand(1)); in AssembleArchInstruction() 1520 __ Ldrh(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1524 __ Ldrsh(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1528 __ Strh(i.InputOrZeroRegister64(0), i.MemoryOperand(1)); in AssembleArchInstruction() 1531 __ Ldrsw(i.OutputRegister(), i.MemoryOperand()); in AssembleArchInstruction() 1535 __ Ldr(i.OutputRegister32(), i.MemoryOperand()); in AssembleArchInstruction() 1539 __ Str(i.InputOrZeroRegister32(0), i.MemoryOperand(1)); in AssembleArchInstruction() [all …]
|
/external/swiftshader/third_party/LLVM/lib/Target/X86/MCTargetDesc/ |
D | X86MCCodeEmitter.cpp | 873 int MemoryOperand = X86II::getMemoryOperandNo(TSFlags); in EncodeInstruction() local 874 if (MemoryOperand != -1) MemoryOperand += CurOp; in EncodeInstruction() 877 EmitOpcodePrefix(TSFlags, CurByte, MemoryOperand, MI, Desc, OS); in EncodeInstruction() 879 EmitVEXOpcodePrefix(TSFlags, CurByte, MemoryOperand, MI, Desc, OS); in EncodeInstruction()
|
/external/v8/src/compiler/ppc/ |
D | code-generator-ppc.cc | 84 MemOperand MemoryOperand(AddressingMode* mode, size_t* first_index) { in MemoryOperand() function in v8::internal::compiler::PPCOperandConverter 100 MemOperand MemoryOperand(AddressingMode* mode, size_t first_index = 0) { in MemoryOperand() function in v8::internal::compiler::PPCOperandConverter 101 return MemoryOperand(mode, &first_index); in MemoryOperand() 547 MemOperand operand = i.MemoryOperand(&mode); \ 561 MemOperand operand = i.MemoryOperand(&mode); \ 575 MemOperand operand = i.MemoryOperand(&mode, &index); \ 592 MemOperand operand = i.MemoryOperand(&mode, &index); \ 607 MemOperand operand = i.MemoryOperand(&mode, &index); \ 629 MemOperand operand = i.MemoryOperand(&mode); \ 641 MemOperand operand = i.MemoryOperand(&mode, &index); \
|