Searched defs:movb (Results 1 – 6 of 6) sorted by relevance
/art/compiler/optimizing/ |
D | code_generator_x86.cc | 1544 __ movb(dst, Immediate(CodeGenerator::GetInt8ValueOf(src.GetConstant()))); in MoveToMemory() local 1546 __ movb(dst, src.AsRegister<ByteRegister>()); in MoveToMemory() local 5639 __ movb(Address(temp, card, TIMES_1, 0), in MarkGCCard() local 5881 __ movb(field_addr, Immediate(CodeGenerator::GetInt8ValueOf(value.GetConstant()))); in HandleFieldSet() local 5883 __ movb(field_addr, value.AsRegister<ByteRegister>()); in HandleFieldSet() local 6395 __ movb(address, value.AsRegister<ByteRegister>()); in VisitArraySet() local 6397 __ movb(address, Immediate(CodeGenerator::GetInt8ValueOf(value.GetConstant()))); in VisitArraySet() local
|
D | code_generator_x86_64.cc | 5074 __ movb(Address(base, offset), in HandleFieldSet() local 5077 __ movb(Address(base, offset), value.AsRegister<CpuRegister>()); in HandleFieldSet() local 5538 __ movb(address, value.AsRegister<CpuRegister>()); in VisitArraySet() local 5540 __ movb(address, Immediate(CodeGenerator::GetInt8ValueOf(value.GetConstant()))); in VisitArraySet() local 5861 __ movb(Address(temp, card, TIMES_1, 0), card); in MarkGCCard() local
|
D | intrinsics_x86_64.cc | 1706 __ movb(Address(address, 0), in GenPoke() local 1709 __ movb(Address(address, 0), value.AsRegister<CpuRegister>()); in GenPoke() local
|
D | intrinsics_x86.cc | 1553 __ movb(Address(address, 0), in GenPoke() local 1556 __ movb(Address(address, 0), value_loc.AsRegister<ByteRegister>()); in GenPoke() local
|
/art/compiler/utils/x86/ |
D | assembler_x86.cc | 313 void X86Assembler::movb(Register /*dst*/, const Address& /*src*/) { in movb() function in art::x86::X86Assembler 318 void X86Assembler::movb(const Address& dst, ByteRegister src) { in movb() function in art::x86::X86Assembler 325 void X86Assembler::movb(const Address& dst, const Immediate& imm) { in movb() function in art::x86::X86Assembler
|
/art/compiler/utils/x86_64/ |
D | assembler_x86_64.cc | 315 void X86_64Assembler::movb(CpuRegister /*dst*/, const Address& /*src*/) { in movb() function in art::x86_64::X86_64Assembler 320 void X86_64Assembler::movb(const Address& dst, CpuRegister src) { in movb() function in art::x86_64::X86_64Assembler 328 void X86_64Assembler::movb(const Address& dst, const Immediate& imm) { in movb() function in art::x86_64::X86_64Assembler
|