Searched defs:tmp1 (Results 1 - 2 of 2) sorted by relevance

/art/runtime/arch/arm64/
H A Dmemcmp16_arm64.S41 #define tmp1 x8 define
53 eor tmp1, src1, src2
54 tst tmp1, #7
56 ands tmp1, src1, #7
111 add limit, limit, tmp1 /* Adjust the limit for the extra. */
112 lsl tmp1, tmp1, #3 /* Bytes beyond alignment -> bits. */
114 neg tmp1, tmp1 /* Bits to alignment -64. */
118 lsr tmp2, tmp2, tmp1 /* Shif
[all...]
/art/compiler/optimizing/
H A Dintrinsics_arm64.cc2026 Register tmp1 = XRegisterFrom(locations->GetTemp(2)); local
2059 __ Subs(tmp1, num_chr, 8);
2063 __ Mov(num_chr, tmp1);
2068 __ Ldp(tmp1, tmp2, MemOperand(src_ptr, char_size * 8, PostIndex));
2070 __ Stp(tmp1, tmp2, MemOperand(dst_ptr, char_size * 8, PostIndex));
2079 __ Ldrh(tmp1, MemOperand(src_ptr, char_size, PostIndex));
2081 __ Strh(tmp1, MemOperand(dst_ptr, char_size, PostIndex));
2092 __ Ldrb(tmp1, MemOperand(src_ptr, c_char_size, PostIndex));
2093 __ Strh(tmp1, MemOperand(dst_ptr, char_size, PostIndex));

Completed in 86 milliseconds