Home
last modified time | relevance | path

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

/art/compiler/dex/quick/arm64/
Darm64_lir.h132 # define A64_DEFINE_REGISTERS(nr) \ argument
133 rw##nr = RegStorage::k32BitSolo | RegStorage::kCoreRegister | nr, \
134 rx##nr = RegStorage::k64BitSolo | RegStorage::kCoreRegister | nr, \
135 rf##nr = RegStorage::k32BitSolo | RegStorage::kFloatingPoint | nr, \
136 rd##nr = RegStorage::k64BitSolo | RegStorage::kFloatingPoint | nr,
161 #define A64_DEFINE_REGSTORAGES(nr) \ argument
162 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);
/art/compiler/utils/arm/
Dconstants_arm.h252 int Bit(int nr) const { in Bit() argument
253 return (InstructionBits() >> nr) & 1; in Bit()
/art/compiler/dex/
Dmir_graph.cc933 const char *suffix, int nr, std::string* output) { in CreateDumpFile() argument
942 suffix == nullptr ? "" : suffix, nr); in CreateDumpFile()
945 std::string suffix_str = StringPrintf("_%d.dot", nr); in CreateDumpFile()
963 int nr = cnt.LoadRelaxed(); in DumpCFG() local
969 suffix, nr, &fpath)) { in DumpCFG()