Searched refs:MILoc (Results 1 – 1 of 1) sorted by relevance
190 bool parseMachineInst(MachineFunction &MF, yaml::MachineInstrLoc MILoc,467 yaml::MachineInstrLoc MILoc, in parseMachineInst() argument469 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[all …]