reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

lib/Target/AArch64/MCTargetDesc/AArch64AddressingModes.h
  215   if (Imm == 0ULL || Imm == ~0ULL ||
  215   if (Imm == 0ULL || Imm == ~0ULL ||
  217         (Imm >> RegSize != 0 || Imm == (~0ULL >> (64 - RegSize)))))
  217         (Imm >> RegSize != 0 || Imm == (~0ULL >> (64 - RegSize)))))
  227     if ((Imm & Mask) != ((Imm >> Size) & Mask)) {
  227     if ((Imm & Mask) != ((Imm >> Size) & Mask)) {
  236   Imm &= Mask;
  238   if (isShiftedMask_64(Imm)) {
  239     I = countTrailingZeros(Imm);
  241     CTO = countTrailingOnes(Imm >> I);
  243     Imm |= ~Mask;
  244     if (!isShiftedMask_64(~Imm))
  247     unsigned CLO = countLeadingOnes(Imm);
  249     CTO = CLO + countTrailingOnes(Imm) - (64 - Size);