Lines Matching defs:inlinedAt
488 return translateLoc(loc, scope, /*inlinedAt=*/nullptr);
514 llvm::DILocation *inlinedAt) {
520 auto existingIt = locationToLoc.find(std::make_tuple(loc, scope, inlinedAt));
526 // For callsites, the caller is fed as the inlinedAt for the callee.
527 auto *callerLoc = translateLoc(callLoc.getCaller(), scope, inlinedAt);
531 // If there is an inlinedAt scope (an outer caller), skip to that
533 if (!inlinedAt)
535 callerLoc = inlinedAt;
548 scope, const_cast<llvm::DILocation *>(inlinedAt));
559 llvmLoc = translateLoc(locations.front(), scope, inlinedAt);
562 llvmLoc, translateLoc(locIt, scope, inlinedAt));
566 llvmLoc = translateLoc(nameLoc.getChildLoc(), scope, inlinedAt);
569 llvmLoc = translateLoc(opaqueLoc.getFallbackLocation(), scope, inlinedAt);
574 locationToLoc.try_emplace(std::make_tuple(loc, scope, inlinedAt), llvmLoc);