Searched defs:movt (Results 1 - 4 of 4) sorted by relevance

/art/compiler/linker/arm/
H A Drelative_patcher_thumb2_test.cc152 uint32_t movt = 0xf2c00000u | // MOVT r0, #0 (placeholder), local
160 static_cast<uint8_t>(movt >> 16), static_cast<uint8_t>(movt >> 24),
161 static_cast<uint8_t>(movt >> 0), static_cast<uint8_t>(movt >> 8),
/art/compiler/dex/quick/arm/
H A Dint_arm.cc1101 LIR* movt = NewLIR2(kThumb2MovImm16H, r_dest.GetReg(), 0); local
1108 movt->operands[2] = movw->operands[2];
1109 movt->operands[3] = movw->operands[3];
1110 movt->operands[4] = movw->operands[4];
1112 dex_cache_access_insns_.push_back(movt);
/art/compiler/utils/arm/
H A Dassembler_arm32.cc754 void Arm32Assembler::movt(Register rd, uint16_t imm16, Condition cond) { function in class:art::arm::Arm32Assembler
1383 movt(IP, value_high, cond);
1410 movt(IP, value_high, cond);
1427 movt(rd, value_high, cond);
H A Dassembler_thumb2.cc1682 void Thumb2Assembler::movt(Register rd, uint16_t imm16, Condition cond) { function in class:art::arm::Thumb2Assembler
2488 movt(IP, value_high, cond);
2515 movt(IP, value_high, cond);
2533 movt(rd, value_high, cond);

Completed in 127 milliseconds