Home
last modified time | relevance | path

Searched refs:callLoc (Results 1 – 5 of 5) sorted by relevance

/llvm-project-15.0.7/mlir/lib/IR/
H A DLocation.cpp45 .Case([&](CallSiteLoc callLoc) -> WalkResult { in walk() argument
46 if (callLoc.getCallee()->walk(walkFn).wasInterrupted()) in walk()
48 return callLoc.getCaller()->walk(walkFn); in walk()
H A DDiagnostics.cpp404 if (auto callLoc = loc.dyn_cast<CallSiteLoc>()) in getCallSiteLoc() local
405 return callLoc; in getCallSiteLoc()
408 if (auto callLoc = getCallSiteLoc(subLoc)) { in getCallSiteLoc() local
409 return callLoc; in getCallSiteLoc()
497 if (auto callLoc = getCallSiteLoc(loc)) { in emitDiagnostic() local
499 loc = callLoc->getCaller(); in emitDiagnostic()
502 if ((callLoc = getCallSiteLoc(loc))) in emitDiagnostic()
503 loc = callLoc->getCaller(); in emitDiagnostic()
545 .Case([&](CallSiteLoc callLoc) -> Optional<Location> { in findLocToShow() argument
548 return findLocToShow(callLoc.getCallee()); in findLocToShow()
/llvm-project-15.0.7/mlir/lib/Target/LLVMIR/
H A DDebugTranslation.cpp144 if (auto callLoc = loc.dyn_cast<CallSiteLoc>()) { in translateLoc() local
146 const auto *callerLoc = translateLoc(callLoc.getCaller(), scope, inlinedAt); in translateLoc()
147 llvmLoc = translateLoc(callLoc.getCallee(), scope, callerLoc); in translateLoc()
/llvm-project-15.0.7/clang/lib/Sema/
H A DSemaExpr.cpp20510 ExprResult Sema::checkUnknownAnyArg(SourceLocation callLoc, in checkUnknownAnyArg() argument
20530 return PerformCopyInitialization(entity, callLoc, arg); in checkUnknownAnyArg()
/llvm-project-15.0.7/clang/include/clang/Sema/
H A DSema.h12321 ExprResult checkUnknownAnyArg(SourceLocation callLoc,