Home
last modified time | relevance | path

Searched refs:CallLocation (Results 1 – 4 of 4) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/
H A DMIRPrinter.cpp530 yaml::MachineInstrLoc CallLocation; in convertCallSiteObjects() local
534 CallLocation.BlockNum = CallI->getParent()->getNumber(); in convertCallSiteObjects()
536 CallLocation.Offset = in convertCallSiteObjects()
538 YmlCS.CallLocation = CallLocation; in convertCallSiteObjects()
552 return std::tie(A.CallLocation.BlockNum, A.CallLocation.Offset) < in convertCallSiteObjects()
553 std::tie(B.CallLocation.BlockNum, B.CallLocation.Offset); in convertCallSiteObjects()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DMIRYamlMapping.h483 MachineInstrLoc CallLocation;
487 return CallLocation.BlockNum == Other.CallLocation.BlockNum &&
488 CallLocation.Offset == Other.CallLocation.Offset;
510 YamlIO.mapRequired("bb", CSInfo.CallLocation.BlockNum);
511 YamlIO.mapRequired("offset", CSInfo.CallLocation.Offset);
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/
H A DGenericTaintChecker.cpp152 const LocationContext *CallLocation) { in taintOriginTrackerTag() argument
154 TaintedArgs = std::move(TaintedArgs), CallLocation]( in taintOriginTrackerTag()
157 if (!BR.isInteresting(CallLocation) || in taintOriginTrackerTag()
180 std::vector<ArgIdxTy> TaintedArgs, const LocationContext *CallLocation) { in taintPropagationExplainerTag() argument
183 TaintedArgs = std::move(TaintedArgs), CallLocation]( in taintPropagationExplainerTag()
195 BR.markInteresting(CallLocation); in taintPropagationExplainerTag()
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/MIRParser/
H A DMIRParser.cpp490 yaml::MachineInstrLoc MILoc = YamlCSInfo.CallLocation; in initializeCallSiteInfo()