/freebsd/contrib/llvm-project/llvm/lib/DebugInfo/GSYM/ |
H A D | FunctionInfo.cpp | 249 SourceLocation SrcLoc; in lookup() local 250 SrcLoc.Name = LR.FuncName; in lookup() 251 SrcLoc.Offset = Addr - FuncAddr; in lookup() 252 LR.Locations.push_back(SrcLoc); in lookup() 262 SourceLocation SrcLoc; in lookup() local 263 SrcLoc.Name = LR.FuncName; in lookup() 264 SrcLoc.Offset = Addr - FuncAddr; in lookup() 265 SrcLoc.Dir = GR.getString(LineEntryFile->Dir); in lookup() 266 SrcLoc.Base = GR.getString(LineEntryFile->Base); in lookup() 267 SrcLoc in lookup() [all...] |
H A D | InlineInfo.cpp | 147 SourceLocation SrcLoc; in lookup() local 148 SrcLoc.Name = SrcLocs.back().Name; in lookup() 149 SrcLoc.Offset = SrcLocs.back().Offset; in lookup() 150 SrcLoc.Dir = GR.getString(CallFile->Dir); in lookup() 151 SrcLoc.Base = GR.getString(CallFile->Base); in lookup() 152 SrcLoc.Line = Inline.CallLine; in lookup() 155 SrcLocs.push_back(SrcLoc); in lookup()
|
/freebsd/contrib/llvm-project/llvm/lib/IR/ |
H A D | DiagnosticInfo.cpp | 55 if (const MDNode *SrcLoc = I.getMetadata("srcloc")) { in DiagnosticInfoInlineAsm() local 56 if (SrcLoc->getNumOperands() != 0) in DiagnosticInfoInlineAsm() 58 mdconst::dyn_extract<ConstantInt>(SrcLoc->getOperand(0))) in DiagnosticInfoInlineAsm()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/GlobalISel/ |
H A D | InlineAsmLowering.cpp | 556 if (const MDNode *SrcLoc = Call.getMetadata("srcloc")) in lowerInlineAsm() local 557 Inst.addMetadata(SrcLoc); in lowerInlineAsm()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/ |
H A D | MemCpyOptimizer.cpp | 1024 MemoryLocation SrcLoc = in performCallSlotOptzn() local 1048 if (isModOrRefSet(BAA.getModRefInfo(&I, SrcLoc)) || I.isTerminator()) in performCallSlotOptzn() 1656 MemoryLocation SrcLoc(SrcAlloca, LocationSize::precise(Size)); in performStackMoveOptzn() local 1663 ModRefInfo Res = BAA.getModRefInfo(UI, SrcLoc); in performStackMoveOptzn()
|
/freebsd/contrib/llvm-project/llvm/utils/TableGen/Common/GlobalISel/ |
H A D | GlobalISelMatchTable.h | 524 ArrayRef<SMLoc> SrcLoc; variable 545 RuleMatcher(ArrayRef<SMLoc> SrcLoc) in RuleMatcher() argument 546 : NextInsnVarID(0), NextOutputInsnID(0), NextTempRegID(0), SrcLoc(SrcLoc), in RuleMatcher()
|
H A D | GlobalISelMatchTable.cpp | 923 PrintFatalError(SrcLoc, "Register " + Reg->getName() + in getPhysRegOperandMatcher() 934 PrintFatalError(SrcLoc, "Operand " + Name + " was not declared in matcher"); in getOperandMatcher() 943 PrintFatalError(SrcLoc, "Operand " + Name + " was not declared in matcher"); in getOperandMatcher()
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | ELF_riscv.cpp | 586 const auto SrcLoc = Loc.getValue() + E.getAddend(); in relaxAlign() local 587 Remove = SrcLoc - DestLoc; in relaxAlign()
|
/freebsd/contrib/llvm-project/llvm/lib/Frontend/OpenMP/ |
H A D | OMPIRBuilder.cpp | 4000 Value *SrcLoc = getOrCreateIdent(SrcLocStr, SrcLocStrSize); in applyStaticWorkshareLoop() local 4030 Value *ThreadNum = getOrCreateThreadID(SrcLoc); in applyStaticWorkshareLoop() 4038 {SrcLoc, ThreadNum, SchedulingType, PLastIter, PLowerBound, in applyStaticWorkshareLoop() 4060 Builder.CreateCall(StaticFini, {SrcLoc, ThreadNum}); in applyStaticWorkshareLoop() 4129 Value *SrcLoc = getOrCreateIdent(SrcLocStr, SrcLocStrSize); in applyStaticChunkedWorkshareLoop() local 4130 Value *ThreadNum = getOrCreateThreadID(SrcLoc); in applyStaticChunkedWorkshareLoop() 4132 {/*loc=*/SrcLoc, /*global_tid=*/ThreadNum, in applyStaticChunkedWorkshareLoop() 4201 Builder.CreateCall(StaticFini, {SrcLoc, ThreadNum}); in applyStaticChunkedWorkshareLoop() 4564 Value *SrcLoc = getOrCreateIdent(SrcLocStr, SrcLocStrSize); in applyDynamicWorkshareLoop() local 4604 Value *ThreadNum = getOrCreateThreadID(SrcLoc); in applyDynamicWorkshareLoop() [all …]
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/ |
H A D | FastISel.cpp | 1182 const MDNode *SrcLoc = Call->getMetadata("srcloc"); in selectCall() local 1183 if (SrcLoc) in selectCall() 1184 MIB.addMetadata(SrcLoc); in selectCall()
|
H A D | SelectionDAGBuilder.cpp | 9924 const MDNode *SrcLoc = Call.getMetadata("srcloc"); in visitInlineAsm() local 9925 AsmNodeOperands.push_back(DAG.getMDNode(SrcLoc)); in visitInlineAsm()
|
/freebsd/contrib/llvm-project/clang/lib/StaticAnalyzer/Core/ |
H A D | BugReporter.cpp | 1444 PathDiagnosticLocation SrcLoc = Piece->getStartLocation(); in addContextEdges() local 1447 PathDiagnosticLocation NextSrcContext = SrcLoc; in addContextEdges() 1498 std::make_shared<PathDiagnosticControlFlowPiece>(SrcLoc, DstContext); in addContextEdges()
|
/freebsd/contrib/llvm-project/llvm/lib/CodeGen/LiveDebugValues/ |
H A D | InstrRefBasedImpl.cpp | 2091 LocIdx SrcLoc = MTracker->getRegMLoc(SrcReg); in transferSpillOrRestoreInst() local 2092 TTracker->transferMlocs(SrcLoc, DstLoc, MI.getIterator()); in transferSpillOrRestoreInst()
|
/freebsd/contrib/llvm-project/clang/lib/Sema/ |
H A D | SemaDeclAttr.cpp | 554 SourceLocation SrcLoc = AttrArg->getBeginLoc(); in checkParamIsIntegerType() local 555 S.Diag(SrcLoc, diag::err_attribute_integers_only) in checkParamIsIntegerType()
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/ |
H A D | SLPVectorizer.cpp | 14880 MemoryLocation SrcLoc = getLocation(SrcInst); in calculateDependencies() local 14898 SLP->isAliased(SrcLoc, SrcInst, DepDest->Inst)))) { in calculateDependencies()
|