Home
last modified time | relevance | path

Searched refs:nr (Results 1 – 2 of 2) sorted by relevance

/art/compiler/dex/quick/arm64/
Darm64_lir.h131 # define A64_DEFINE_REGISTERS(nr) \ argument
132 rw##nr = RegStorage::k32BitSolo | RegStorage::kCoreRegister | nr, \
133 rx##nr = RegStorage::k64BitSolo | RegStorage::kCoreRegister | nr, \
134 rf##nr = RegStorage::k32BitSolo | RegStorage::kFloatingPoint | nr, \
135 rd##nr = RegStorage::k64BitSolo | RegStorage::kFloatingPoint | nr,
162 #define A64_DEFINE_REGSTORAGES(nr) \ argument
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);
/art/compiler/utils/arm/
Dconstants_arm.h255 int Bit(int nr) const { in Bit() argument
256 return (InstructionBits() >> nr) & 1; in Bit()