HomeSort by: relevance | last modified time | path
    Searched refs:DLoc (Results 1 - 14 of 14) sorted by relevancy

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

Completed in 35 milliseconds