Home
last modified time | relevance | path

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

/art/compiler/dex/quick/arm/
Darm_lir.h207 constexpr RegStorage rs_r0(RegStorage::kValid | r0);
208 constexpr RegStorage rs_r1(RegStorage::kValid | r1);
209 constexpr RegStorage rs_r2(RegStorage::kValid | r2);
210 constexpr RegStorage rs_r3(RegStorage::kValid | r3);
212 constexpr RegStorage rs_rARM_SUSPEND(RegStorage::kValid | rARM_SUSPEND);
214 constexpr RegStorage rs_r4(RegStorage::kValid | r4);
216 constexpr RegStorage rs_r5(RegStorage::kValid | r5);
217 constexpr RegStorage rs_r6(RegStorage::kValid | r6);
218 constexpr RegStorage rs_r7(RegStorage::kValid | r7);
219 constexpr RegStorage rs_r8(RegStorage::kValid | r8);
[all …]
/art/compiler/dex/quick/mips/
Dmips_lir.h258 constexpr RegStorage rs_rZERO(RegStorage::kValid | rZERO);
259 constexpr RegStorage rs_rAT(RegStorage::kValid | rAT);
260 constexpr RegStorage rs_rV0(RegStorage::kValid | rV0);
261 constexpr RegStorage rs_rV1(RegStorage::kValid | rV1);
262 constexpr RegStorage rs_rA0(RegStorage::kValid | rA0);
263 constexpr RegStorage rs_rA1(RegStorage::kValid | rA1);
264 constexpr RegStorage rs_rA2(RegStorage::kValid | rA2);
265 constexpr RegStorage rs_rA3(RegStorage::kValid | rA3);
266 constexpr RegStorage rs_rT0(RegStorage::kValid | rT0);
267 constexpr RegStorage rs_rT1(RegStorage::kValid | rT1);
[all …]
/art/compiler/dex/quick/x86/
Dx86_lir.h220 constexpr RegStorage rs_r0(RegStorage::kValid | r0);
221 constexpr RegStorage rs_r0q(RegStorage::kValid | r0q);
223 constexpr RegStorage rs_r1(RegStorage::kValid | r1);
224 constexpr RegStorage rs_r1q(RegStorage::kValid | r1q);
226 constexpr RegStorage rs_r2(RegStorage::kValid | r2);
227 constexpr RegStorage rs_r2q(RegStorage::kValid | r2q);
229 constexpr RegStorage rs_r3(RegStorage::kValid | r3);
230 constexpr RegStorage rs_r3q(RegStorage::kValid | r3q);
232 constexpr RegStorage rs_rX86_SP_64(RegStorage::kValid | r4sp_64);
233 constexpr RegStorage rs_rX86_SP_32(RegStorage::kValid | r4sp_32);
[all …]
/art/compiler/dex/quick/arm64/
Darm64_lir.h163 constexpr RegStorage rs_w##nr(RegStorage::kValid | rw##nr); \
164 constexpr RegStorage rs_x##nr(RegStorage::kValid | rx##nr); \
165 constexpr RegStorage rs_f##nr(RegStorage::kValid | rf##nr); \
166 constexpr RegStorage rs_d##nr(RegStorage::kValid | rd##nr);
170 constexpr RegStorage rs_xzr(RegStorage::kValid | rxzr);
171 constexpr RegStorage rs_wzr(RegStorage::kValid | rwzr);
172 constexpr RegStorage rs_xIP0(RegStorage::kValid | rxIP0);
173 constexpr RegStorage rs_wIP0(RegStorage::kValid | rwIP0);
174 constexpr RegStorage rs_xIP1(RegStorage::kValid | rxIP1);
175 constexpr RegStorage rs_wIP1(RegStorage::kValid | rwIP1);
[all …]
Dassemble_arm64.cc726 RegStorage reg(operand | RegStorage::kValid); in EncodeLIRs()
Dtarget_arm64.cc872 return RegStorage(RegStorage::kValid | reg_kind | RegStorage::kFloatingPoint | n); in GetArgPhysicalReg()
/art/compiler/dex/
Dreg_storage.h79 kValid = 0x8000, enumerator
111 kValid | rs_kind | (reg & kRegTypeMask)) { in RegStorage()
120 kValid | rs_kind | ((high_reg & kHighRegNumMask) << kHighRegShift) | in RegStorage()
142 return ((reg_ & kValidMask) == kValid); in Valid()
247 return RegStorage(kValid | GetHighReg()); in GetHigh()