HomeSort by relevance Sort by last modified time
    Searched refs:kValid (Results 1 - 7 of 7) sorted by null

  /art/compiler/dex/quick/arm/
arm_lir.h 207 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/
mips_lir.h 258 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/
x86_lir.h 220 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/
arm64_lir.h 163 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...]
assemble_arm64.cc     [all...]
target_arm64.cc 872 return RegStorage(RegStorage::kValid | reg_kind | RegStorage::kFloatingPoint | n);
    [all...]
  /art/compiler/dex/
reg_storage.h 79 kValid = 0x8000,
111 kValid | rs_kind | (reg & kRegTypeMask)) {
120 kValid | rs_kind | ((high_reg & kHighRegNumMask) << kHighRegShift) |
142 return ((reg_ & kValidMask) == kValid);
247 return RegStorage(kValid | GetHighReg());

Completed in 60 milliseconds