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

  /art/compiler/dex/
reg_storage.h 99 static const uint16_t kRegNumMask = 0x003f; // Num only.
119 DCHECK_CONSTEXPR((high_reg & kRegNumMask) <= kHighRegNumMask,
258 return reg_ & kRegNumMask;
295 return RegStorage(k32BitSolo, (reg_num & kRegNumMask) | kFloatingPoint);
310 return RegStorage(k64BitSolo, (reg_num & kRegNumMask) | kFloatingPoint);
318 return raw_reg_bits & kRegNumMask;
  /art/compiler/dex/quick/arm64/
target_arm64.cc 406 snprintf(tbuf, arraysize(tbuf), "s%d", operand & RegStorage::kRegNumMask);
409 snprintf(tbuf, arraysize(tbuf), "d%d", operand & RegStorage::kRegNumMask);
413 operand & RegStorage::kRegNumMask);
435 snprintf(tbuf, arraysize(tbuf), "w%d", operand & RegStorage::kRegNumMask);
441 snprintf(tbuf, arraysize(tbuf), "w%d", operand & RegStorage::kRegNumMask);
447 snprintf(tbuf, arraysize(tbuf), "x%d", operand & RegStorage::kRegNumMask);
453 snprintf(tbuf, arraysize(tbuf), "x%d", operand & RegStorage::kRegNumMask);
484 operand & RegStorage::kRegNumMask);
494 operand & RegStorage::kRegNumMask);

Completed in 395 milliseconds