@@ -1229,7 +1229,7 @@ LLVM_DUMP_METHOD void MachineInstr::dump() const {
1229
1229
}
1230
1230
#endif
1231
1231
1232
- void MachineInstr::print (raw_ostream &OS, bool IsVerbose , bool SkipOpers,
1232
+ void MachineInstr::print (raw_ostream &OS, bool IsStandalone , bool SkipOpers,
1233
1233
bool SkipDebugLoc, const TargetInstrInfo *TII) const {
1234
1234
const Module *M = nullptr ;
1235
1235
const Function *F = nullptr ;
@@ -1241,11 +1241,11 @@ void MachineInstr::print(raw_ostream &OS, bool IsVerbose, bool SkipOpers,
1241
1241
ModuleSlotTracker MST (M);
1242
1242
if (F)
1243
1243
MST.incorporateFunction (*F);
1244
- print (OS, MST, IsVerbose , SkipOpers, SkipDebugLoc, TII);
1244
+ print (OS, MST, IsStandalone , SkipOpers, SkipDebugLoc, TII);
1245
1245
}
1246
1246
1247
1247
void MachineInstr::print (raw_ostream &OS, ModuleSlotTracker &MST,
1248
- bool IsVerbose , bool SkipOpers, bool SkipDebugLoc,
1248
+ bool IsStandalone , bool SkipOpers, bool SkipDebugLoc,
1249
1249
const TargetInstrInfo *TII) const {
1250
1250
// We can be a bit tidier if we know the MachineFunction.
1251
1251
const MachineFunction *MF = nullptr ;
@@ -1281,7 +1281,7 @@ void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST,
1281
1281
1282
1282
LLT TypeToPrint = MRI ? getTypeToPrint (StartOp, PrintedTypes, *MRI) : LLT{};
1283
1283
unsigned TiedOperandIdx = getTiedOperandIdx (StartOp);
1284
- MO.print (OS, MST, TypeToPrint, /* PrintDef=*/ false , IsVerbose ,
1284
+ MO.print (OS, MST, TypeToPrint, /* PrintDef=*/ false , IsStandalone ,
1285
1285
ShouldPrintRegisterTies, TiedOperandIdx, TRI, IntrinsicInfo);
1286
1286
++StartOp;
1287
1287
}
@@ -1314,7 +1314,7 @@ void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST,
1314
1314
const unsigned OpIdx = InlineAsm::MIOp_AsmString;
1315
1315
LLT TypeToPrint = MRI ? getTypeToPrint (OpIdx, PrintedTypes, *MRI) : LLT{};
1316
1316
unsigned TiedOperandIdx = getTiedOperandIdx (OpIdx);
1317
- getOperand (OpIdx).print (OS, MST, TypeToPrint, /* PrintDef=*/ true , IsVerbose ,
1317
+ getOperand (OpIdx).print (OS, MST, TypeToPrint, /* PrintDef=*/ true , IsStandalone ,
1318
1318
ShouldPrintRegisterTies, TiedOperandIdx, TRI,
1319
1319
IntrinsicInfo);
1320
1320
@@ -1353,7 +1353,7 @@ void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST,
1353
1353
else {
1354
1354
LLT TypeToPrint = MRI ? getTypeToPrint (i, PrintedTypes, *MRI) : LLT{};
1355
1355
unsigned TiedOperandIdx = getTiedOperandIdx (i);
1356
- MO.print (OS, MST, TypeToPrint, /* PrintDef=*/ true , IsVerbose ,
1356
+ MO.print (OS, MST, TypeToPrint, /* PrintDef=*/ true , IsStandalone ,
1357
1357
ShouldPrintRegisterTies, TiedOperandIdx, TRI, IntrinsicInfo);
1358
1358
}
1359
1359
} else if (i == AsmDescOp && MO.isImm ()) {
@@ -1420,7 +1420,7 @@ void MachineInstr::print(raw_ostream &OS, ModuleSlotTracker &MST,
1420
1420
if (MO.isImm () && isOperandSubregIdx (i))
1421
1421
MachineOperand::printSubRegIdx (OS, MO.getImm (), TRI);
1422
1422
else
1423
- MO.print (OS, MST, TypeToPrint, /* PrintDef=*/ true , IsVerbose ,
1423
+ MO.print (OS, MST, TypeToPrint, /* PrintDef=*/ true , IsStandalone ,
1424
1424
ShouldPrintRegisterTies, TiedOperandIdx, TRI, IntrinsicInfo);
1425
1425
}
1426
1426
}
0 commit comments