Searched defs:tmp2 (Results 1 - 4 of 4) sorted by relevance
/art/runtime/arch/arm64/ |
H A D | memcmp16_arm64.S | 42 #define tmp2 x9 define 116 mov tmp2, #~0 118 lsr tmp2, tmp2, tmp1 /* Shift (tmp1 & 63). */ 120 orr data1, data1, tmp2 121 orr data2, data2, tmp2
|
/art/compiler/dex/quick/arm/ |
H A D | fp_arm.cc | 178 RegStorage tmp2 = AllocTempDouble(); local 182 LoadConstantWide(tmp2, 0x41f0000000000000LL); 183 NewLIR3(kThumb2VmlaF64, rl_result.reg.GetReg(), tmp1.GetReg(), tmp2.GetReg()); 185 FreeTemp(tmp2);
|
/art/compiler/dex/quick/mips/ |
H A D | utility_mips.cc | 241 uint64_t tmp2 = value; local 242 if (((tmp2 >> 16) & 0xFFFF) != 0 || (tmp2 & 0xFFFFFFFF) == 0) { 243 res = NewLIR2(kMipsLui, r_dest.GetReg(), tmp2 >> 16); 245 if ((tmp2 & 0xFFFF) != 0) { 247 NewLIR3(kMipsOri, r_dest.GetReg(), r_dest.GetReg(), tmp2); 249 res = NewLIR3(kMipsOri, r_dest.GetReg(), rZEROd, tmp2); 252 tmp2 += UINT64_C(0x100000000); 254 if (((tmp2 >> 32) & 0xFFFF) != 0) { 255 NewLIR2(kMips64Dahi, r_dest.GetReg(), tmp2 >> 3 [all...] |
/art/compiler/utils/mips64/ |
H A D | assembler_mips64.cc | 715 uint64_t tmp2 = value; local 717 if (((tmp2 >> 16) & 0xFFFF) != 0 || (tmp2 & 0xFFFFFFFF) == 0) { 718 Lui(rd, tmp2 >> 16); 721 if ((tmp2 & 0xFFFF) != 0) { 723 Ori(rd, rd, tmp2); 725 Ori(rd, ZERO, tmp2); 728 tmp2 += UINT64_C(0x100000000); 730 if (((tmp2 >> 32) & 0xFFFF) != 0) { 731 Dahi(rd, tmp2 >> 3 [all...] |
Completed in 187 milliseconds