Searched refs:movt (Results 1 – 9 of 9) sorted by relevance
/art/compiler/linker/arm/ |
D | relative_patcher_thumb2_test.cc | 152 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/ |
D | int_arm.cc | 1101 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/ |
D | assembler_arm32.cc | 754 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()
|
D | assembler_thumb2.cc | 1682 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()
|
D | assembler_arm32.h | 84 void movt(Register rd, uint16_t imm16, Condition cond = AL) OVERRIDE;
|
D | assembler_thumb2.h | 106 void movt(Register rd, uint16_t imm16, Condition cond = AL) OVERRIDE;
|
D | assembler_arm.h | 393 virtual void movt(Register rd, uint16_t imm16, Condition cond = AL) = 0;
|
/art/compiler/utils/ |
D | assembler_thumb_test.cc | 762 __ movt(R0, 0); in TEST() local 763 __ movt(R0, 0x1234); in TEST() local 764 __ movt(R1, 0xffff); in TEST() local
|
D | assembler_thumb_test_expected.cc.inc | 337 " 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",
|