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

References

lib/CodeGen/MachineOperand.cpp
 1074   OS << '(';
 1076     OS << "volatile ";
 1078     OS << "non-temporal ";
 1080     OS << "dereferenceable ";
 1082     OS << "invariant ";
 1084     OS << '"' << getTargetMMOFlagName(*TII, MachineMemOperand::MOTargetFlag1)
 1087     OS << '"' << getTargetMMOFlagName(*TII, MachineMemOperand::MOTargetFlag2)
 1090     OS << '"' << getTargetMMOFlagName(*TII, MachineMemOperand::MOTargetFlag3)
 1096     OS << "load ";
 1098     OS << "store ";
 1100   printSyncScope(OS, Context, getSyncScopeID(), SSNs);
 1103     OS << toIRString(getOrdering()) << ' ';
 1105     OS << toIRString(getFailureOrdering()) << ' ';
 1108     OS << "unknown-size";
 1110     OS << getSize();
 1113     OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ");
 1114     printIRValueReference(OS, *Val, MST);
 1116     OS << ((isLoad() && isStore()) ? " on " : isLoad() ? " from " : " into ");
 1120       OS << "stack";
 1123       OS << "got";
 1126       OS << "jump-table";
 1129       OS << "constant-pool";
 1134       printFrameIndex(OS, FrameIndex, IsFixed, MFI);
 1138       OS << "call-entry ";
 1140           OS, /*PrintType=*/false, MST);
 1143       OS << "call-entry &";
 1145           OS, cast<ExternalSymbolPseudoSourceValue>(PVal)->getSymbol());
 1152       OS << "custom ";
 1153       PVal->printCustom(OS);
 1157   MachineOperand::printOperandOffset(OS, getOffset());
 1159     OS << ", align " << getBaseAlignment();
 1162     OS << ", !tbaa ";
 1163     AAInfo.TBAA->printAsOperand(OS, MST);
 1166     OS << ", !alias.scope ";
 1167     AAInfo.Scope->printAsOperand(OS, MST);
 1170     OS << ", !noalias ";
 1171     AAInfo.NoAlias->printAsOperand(OS, MST);
 1174     OS << ", !range ";
 1175     getRanges()->printAsOperand(OS, MST);
 1180     OS << ", addrspace " << AS;
 1182   OS << ')';