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

References

lib/Target/AArch64/AArch64StackTagging.cpp
  133     for (int64_t Offset = Start - Start % 8; Offset < End; Offset += 8) {
  133     for (int64_t Offset = Start - Start % 8; Offset < End; Offset += 8) {
  135       int LowBits = Offset < Start ? (Start - Offset) * 8 : 0;
  135       int LowBits = Offset < Start ? (Start - Offset) * 8 : 0;
  138       int HighBits = End - Offset < 8 ? (8 - (End - Offset)) * 8 : 0;
  138       int HighBits = End - Offset < 8 ? (8 - (End - Offset)) * 8 : 0;
  144       Value *&CurrentV = Out[Offset];