Home
last modified time | relevance | path

Searched refs:kValid (Results 1 – 6 of 6) sorted by relevance

/art/compiler/dex/quick/mips/
Dmips_lir.h346 constexpr RegStorage rs_rZERO(RegStorage::kValid | rZERO);
347 constexpr RegStorage rs_rAT(RegStorage::kValid | rAT);
348 constexpr RegStorage rs_rV0(RegStorage::kValid | rV0);
349 constexpr RegStorage rs_rV1(RegStorage::kValid | rV1);
350 constexpr RegStorage rs_rA0(RegStorage::kValid | rA0);
351 constexpr RegStorage rs_rA1(RegStorage::kValid | rA1);
352 constexpr RegStorage rs_rA2(RegStorage::kValid | rA2);
353 constexpr RegStorage rs_rA3(RegStorage::kValid | rA3);
354 constexpr RegStorage rs_rT0_32(RegStorage::kValid | rT0_32);
356 constexpr RegStorage rs_rT1_32(RegStorage::kValid | rT1_32);
[all …]
/art/compiler/dex/quick/arm/
Darm_lir.h209 constexpr RegStorage rs_r0(RegStorage::kValid | r0);
210 constexpr RegStorage rs_r1(RegStorage::kValid | r1);
211 constexpr RegStorage rs_r2(RegStorage::kValid | r2);
212 constexpr RegStorage rs_r3(RegStorage::kValid | r3);
214 constexpr RegStorage rs_rARM_SUSPEND(RegStorage::kValid | rARM_SUSPEND);
216 constexpr RegStorage rs_r4(RegStorage::kValid | r4);
218 constexpr RegStorage rs_r5(RegStorage::kValid | r5);
219 constexpr RegStorage rs_r6(RegStorage::kValid | r6);
220 constexpr RegStorage rs_r7(RegStorage::kValid | r7);
221 constexpr RegStorage rs_r8(RegStorage::kValid | r8);
[all …]
/art/compiler/dex/quick/x86/
Dx86_lir.h227 constexpr RegStorage rs_r0(RegStorage::kValid | r0);
228 constexpr RegStorage rs_r0q(RegStorage::kValid | r0q);
230 constexpr RegStorage rs_r1(RegStorage::kValid | r1);
231 constexpr RegStorage rs_r1q(RegStorage::kValid | r1q);
233 constexpr RegStorage rs_r2(RegStorage::kValid | r2);
234 constexpr RegStorage rs_r2q(RegStorage::kValid | r2q);
236 constexpr RegStorage rs_r3(RegStorage::kValid | r3);
237 constexpr RegStorage rs_r3q(RegStorage::kValid | r3q);
239 constexpr RegStorage rs_rX86_SP_64(RegStorage::kValid | r4sp_64);
240 constexpr RegStorage rs_rX86_SP_32(RegStorage::kValid | r4sp_32);
[all …]
/art/compiler/dex/quick/arm64/
Darm64_lir.h162 constexpr RegStorage rs_w##nr(RegStorage::kValid | rw##nr); \
163 constexpr RegStorage rs_x##nr(RegStorage::kValid | rx##nr); \
164 constexpr RegStorage rs_f##nr(RegStorage::kValid | rf##nr); \
165 constexpr RegStorage rs_d##nr(RegStorage::kValid | rd##nr);
169 constexpr RegStorage rs_xzr(RegStorage::kValid | rxzr);
170 constexpr RegStorage rs_wzr(RegStorage::kValid | rwzr);
171 constexpr RegStorage rs_xIP0(RegStorage::kValid | rxIP0);
172 constexpr RegStorage rs_wIP0(RegStorage::kValid | rwIP0);
173 constexpr RegStorage rs_xIP1(RegStorage::kValid | rxIP1);
174 constexpr RegStorage rs_wIP1(RegStorage::kValid | rwIP1);
[all …]
Dassemble_arm64.cc764 RegStorage reg(operand | RegStorage::kValid); in EncodeLIRs()
945 RegStorage reg(lir->operands[0] | RegStorage::kValid); in AssembleLIR()
/art/compiler/dex/
Dreg_storage.h80 kValid = 0x8000, enumerator
112 kValid | rs_kind | (reg & kRegTypeMask)) { in RegStorage()
121 kValid | rs_kind | ((high_reg & kHighRegNumMask) << kHighRegShift) | in RegStorage()
143 return ((reg_ & kValidMask) == kValid); in Valid()
248 return RegStorage(kValid | GetHighReg()); in GetHigh()