Home
last modified time | relevance | path

Searched refs:movt (Results 1 – 9 of 9) sorted by relevance

/art/compiler/linker/arm/
Drelative_patcher_thumb2_test.cc152 uint32_t movt = 0xf2c00000u | // MOVT r0, #0 (placeholder), in TestDexCachereference() local
160 static_cast<uint8_t>(movt >> 16), static_cast<uint8_t>(movt >> 24), in TestDexCachereference()
161 static_cast<uint8_t>(movt >> 0), static_cast<uint8_t>(movt >> 8), in TestDexCachereference()
/art/compiler/dex/quick/arm/
Dint_arm.cc1101 LIR* movt = NewLIR2(kThumb2MovImm16H, r_dest.GetReg(), 0); in OpPcRelDexCacheArrayAddr() local
1108 movt->operands[2] = movw->operands[2]; in OpPcRelDexCacheArrayAddr()
1109 movt->operands[3] = movw->operands[3]; in OpPcRelDexCacheArrayAddr()
1110 movt->operands[4] = movw->operands[4]; in OpPcRelDexCacheArrayAddr()
1112 dex_cache_access_insns_.push_back(movt); in OpPcRelDexCacheArrayAddr()
/art/compiler/utils/arm/
Dassembler_arm32.cc754 void Arm32Assembler::movt(Register rd, uint16_t imm16, Condition cond) { in movt() function in art::arm::Arm32Assembler
1383 movt(IP, value_high, cond); in AddConstant()
1410 movt(IP, value_high, cond); in AddConstantSetFlags()
1427 movt(rd, value_high, cond); in LoadImmediate()
Dassembler_thumb2.cc1682 void Thumb2Assembler::movt(Register rd, uint16_t imm16, Condition cond) { in movt() function in art::arm::Thumb2Assembler
2488 movt(IP, value_high, cond); in AddConstant()
2515 movt(IP, value_high, cond); in AddConstantSetFlags()
2533 movt(rd, value_high, cond); in LoadImmediate()
Dassembler_arm32.h84 void movt(Register rd, uint16_t imm16, Condition cond = AL) OVERRIDE;
Dassembler_thumb2.h106 void movt(Register rd, uint16_t imm16, Condition cond = AL) OVERRIDE;
Dassembler_arm.h393 virtual void movt(Register rd, uint16_t imm16, Condition cond = AL) = 0;
/art/compiler/utils/
Dassembler_thumb_test.cc762 __ movt(R0, 0); in TEST() local
763 __ movt(R0, 0x1234); in TEST() local
764 __ movt(R1, 0xffff); in TEST() local
Dassembler_thumb_test_expected.cc.inc337 " 10: f2c0 0000 movt r0, #0\n",
338 " 14: f2c1 2034 movt r0, #4660 ; 0x1234\n",
339 " 18: f6cf 71ff movt r1, #65535 ; 0xffff\n",