Lines Matching refs:MILoc
190 bool parseMachineInst(MachineFunction &MF, yaml::MachineInstrLoc MILoc,
467 yaml::MachineInstrLoc MILoc, in parseMachineInst() argument
469 if (MILoc.BlockNum >= MF.size()) { in parseMachineInst()
472 " Unable to reference bb:" + Twine(MILoc.BlockNum)); in parseMachineInst()
474 auto BB = std::next(MF.begin(), MILoc.BlockNum); in parseMachineInst()
475 if (MILoc.Offset >= BB->size()) in parseMachineInst()
478 " Unable to reference instruction at bb: " + Twine(MILoc.BlockNum) + in parseMachineInst()
479 " at offset:" + Twine(MILoc.Offset)); in parseMachineInst()
480 MI = &*std::next(BB->instr_begin(), MILoc.Offset); in parseMachineInst()
490 yaml::MachineInstrLoc MILoc = YamlCSInfo.CallLocation; in initializeCallSiteInfo() local
492 if (parseMachineInst(MF, MILoc, CallI)) in initializeCallSiteInfo()
498 Twine(MILoc.BlockNum) + " at offset:" + Twine(MILoc.Offset) + in initializeCallSiteInfo()
1146 yaml::MachineInstrLoc MILoc = YamlCG.CallSite; in parseCalledGlobals() local
1148 if (parseMachineInst(MF, MILoc, CallI)) in parseCalledGlobals()
1154 Twine(MILoc.BlockNum) + " at offset:" + Twine(MILoc.Offset) + in parseCalledGlobals()