| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | InlineAdvisor.cpp | 58 return OptimizationRemarkMissed(DEBUG_TYPE, "NotInlined", DLoc, Block) in recordUnsuccessfulInliningImpl() 67 emitInlinedInto(ORE, DLoc, Block, *Callee, *Caller, *OIC); in recordInliningWithCalleeDeletedImpl() 72 emitInlinedInto(ORE, DLoc, Block, *Callee, *Caller, *OIC); in recordInliningImpl() 119 DLoc(CB.getDebugLoc()), Block(CB.getParent()), ORE(ORE), in InlineAdvice() 383 std::string llvm::getCallSiteLocation(DebugLoc DLoc) { in getCallSiteLocation() argument 387 for (DILocation *DIL = DLoc.get(); DIL; DIL = DIL->getInlinedAt()) { in getCallSiteLocation() 409 void llvm::addLocationToRemarks(OptimizationRemark &Remark, DebugLoc DLoc) { in addLocationToRemarks() argument 410 if (!DLoc.get()) { in addLocationToRemarks() 416 for (DILocation *DIL = DLoc.get(); DIL; DIL = DIL->getInlinedAt()) { in addLocationToRemarks() 435 void llvm::emitInlinedInto(OptimizationRemarkEmitter &ORE, DebugLoc DLoc, in emitInlinedInto() argument [all …]
|
| H A D | MLInlineAdvisor.cpp | 285 OptimizationRemark R(DEBUG_TYPE, "InliningSuccess", DLoc, Block); in recordInliningImpl() 294 OptimizationRemark R(DEBUG_TYPE, "InliningSuccessWithCalleeDeleted", DLoc, in recordInliningWithCalleeDeletedImpl() 306 DLoc, Block); in recordUnsuccessfulInliningImpl() 313 OptimizationRemarkMissed R(DEBUG_TYPE, "IniningNotAttempted", DLoc, Block); in recordUnattemptedInliningImpl()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | InlineAdvisor.h | 88 const DebugLoc &getOriginalCallSiteDebugLoc() const { return DLoc; } in getOriginalCallSiteDebugLoc() 105 const DebugLoc DLoc; variable 268 void emitInlinedInto(OptimizationRemarkEmitter &ORE, DebugLoc DLoc, 275 std::string getCallSiteLocation(DebugLoc DLoc); 278 void addLocationToRemarks(OptimizationRemark &Remark, DebugLoc DLoc);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | PseudoProbe.cpp | 28 if (const DebugLoc &DLoc = Inst.getDebugLoc()) { in extractProbeFromDiscriminator() local 29 const DILocation *DIL = DLoc; in extractProbeFromDiscriminator() 77 if (const DebugLoc &DLoc = Inst.getDebugLoc()) { in setProbeDistributionFactor() local 78 const DILocation *DIL = DLoc; in setProbeDistributionFactor()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | ObjCMissingSuperCallChecker.cpp | 196 PathDiagnosticLocation DLoc = in checkASTDecl() local 210 os.str(), DLoc); in checkASTDecl()
|
| H A D | CheckObjCDealloc.cpp | 241 PathDiagnosticLocation DLoc = in REGISTER_SET_FACTORY_WITH_PROGRAMSTATE() local 245 OS.str(), DLoc); in REGISTER_SET_FACTORY_WITH_PROGRAMSTATE()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | SwiftErrorValueTracking.cpp | 221 auto DLoc = isa<Instruction>(SwiftErrorVal) in propagateVRegs() local 232 BuildMI(*MBB, MBB->getFirstNonPHI(), DLoc, TII->get(TargetOpcode::COPY), in propagateVRegs() 245 BuildMI(*MBB, MBB->getFirstNonPHI(), DLoc, in propagateVRegs()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Utils/ |
| H A D | SampleProfileLoaderBaseImpl.h | 276 const DebugLoc &DLoc = Inst.getDebugLoc(); 277 if (!DLoc) 280 const DILocation *DIL = DLoc; 301 LLVM_DEBUG(dbgs() << " " << DLoc.getLine() << "."
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/ |
| H A D | SampleProfile.cpp | 522 const DebugLoc &DLoc = Inst.getDebugLoc(); in getInstWeight() local 523 if (!DLoc) in getInstWeight() 1169 DebugLoc DLoc = CB.getDebugLoc(); in tryInlineCandidate() local 1174 ORE->emit(OptimizationRemarkAnalysis(CSINLINE_DEBUG, "InlineFail", DLoc, BB) in tryInlineCandidate() 1186 emitInlinedInto(*ORE, DLoc, BB, *CalledFunction, *BB->getParent(), Cost, in tryInlineCandidate() 1448 const DebugLoc &DLoc = I.getDebugLoc(); in generateMDProfMetadata() local 1449 if (!DLoc) in generateMDProfMetadata() 1451 const DILocation *DIL = DLoc; in generateMDProfMetadata()
|
| H A D | Inliner.cpp | 439 DebugLoc DLoc = CB.getDebugLoc(); in inlineCallsImpl() local 452 return OptimizationRemarkMissed(DEBUG_TYPE, "NotInlined", DLoc, in inlineCallsImpl() 462 emitInlinedInto(ORE, DLoc, Block, *Callee, *Caller, *OIC); in inlineCallsImpl()
|
| H A D | PartialInlining.cpp | 320 DebugLoc DLoc = CB->getDebugLoc(); in getOneDebugLoc() local 322 return std::make_tuple(DLoc, Block); in getOneDebugLoc() 1389 DebugLoc DLoc; in tryPartialInline() local 1391 std::tie(DLoc, Block) = getOneDebugLoc(*Cloner.ClonedFunc); in tryPartialInline() 1394 DLoc, Block) in tryPartialInline()
|
| H A D | WholeProgramDevirt.cpp | 377 DebugLoc DLoc = CB.getDebugLoc(); in emitRemark() local 381 OREGetter(F).emit(OptimizationRemark(DEBUG_TYPE, OptName, DLoc, Block) in emitRemark()
|
| /netbsd-src/external/apache2/llvm/dist/clang/tools/libclang/ |
| H A D | CXLoadedDiagnostic.cpp | 90 static CXSourceLocation makeLocation(const CXLoadedDiagnostic::Location *DLoc) { in makeLocation() argument 93 uintptr_t V = (uintptr_t) DLoc; in makeLocation()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/ |
| H A D | HexagonLoopIdiomRecognition.cpp | 2165 DebugLoc DLoc = SI->getDebugLoc(); in processCopyingStore() local 2307 NewCall->setDebugLoc(DLoc); in processCopyingStore()
|