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

References

lib/CodeGen/MIRPrinter.cpp
  364   for (int I = MFI.getObjectIndexBegin(); I < 0; ++I, ++ID) {
  365     if (MFI.isDeadObjectIndex(I))
  370     YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
  373     YamlObject.Offset = MFI.getObjectOffset(I);
  374     YamlObject.Size = MFI.getObjectSize(I);
  375     YamlObject.Alignment = MFI.getObjectAlignment(I);
  376     YamlObject.StackID = (TargetStackID::Value)MFI.getStackID(I);
  377     YamlObject.IsImmutable = MFI.isImmutableObjectIndex(I);
  378     YamlObject.IsAliased = MFI.isAliasedObjectIndex(I);
  386   for (int I = 0, E = MFI.getObjectIndexEnd(); I < E; ++I, ++ID) {
  387     if (MFI.isDeadObjectIndex(I))
  392     if (const auto *Alloca = MFI.getObjectAllocation(I))
  395     YamlObject.Type = MFI.isSpillSlotObjectIndex(I)
  397                           : MFI.isVariableSizedObjectIndex(I)
  400     YamlObject.Offset = MFI.getObjectOffset(I);
  401     YamlObject.Size = MFI.getObjectSize(I);
  402     YamlObject.Alignment = MFI.getObjectAlignment(I);
  403     YamlObject.StackID = (TargetStackID::Value)MFI.getStackID(I);
  410   for (const auto &CSInfo : MFI.getCalleeSavedInfo()) {
  411     if (!CSInfo.isSpilledToReg() && MFI.isDeadObjectIndex(CSInfo.getFrameIdx()))
  432   for (unsigned I = 0, E = MFI.getLocalFrameObjectCount(); I < E; ++I) {
  433     auto LocalObject = MFI.getLocalFrameObjectMap(I);
  444   if (MFI.hasStackProtectorIndex()) {
  447         .printStackObjectReference(MFI.getStackProtectorIndex());