Skip to content
Snippets Groups Projects
Commit 67883929 authored by Richard Smith's avatar Richard Smith
Browse files

Simplify diagnostic emission. No functionality change intended.

git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@169351 91177308-0d34-0410-b5e6-96231b3b80d8
parent 91e20617
No related branches found
No related tags found
No related merge requests found
...@@ -1479,35 +1479,19 @@ public: ...@@ -1479,35 +1479,19 @@ public:
bool UseLineDirectives = true) const{ bool UseLineDirectives = true) const{
// This is a condensed form of the algorithm used by emitCaretDiagnostic to // This is a condensed form of the algorithm used by emitCaretDiagnostic to
// walk to the top of the macro call stack. // walk to the top of the macro call stack.
while (Loc.isMacroID()) { while (Loc.isMacroID())
Loc = skipToMacroArgExpansion(Loc);
Loc = getImmediateMacroCallerLoc(Loc); Loc = getImmediateMacroCallerLoc(Loc);
}
return getPresumedLoc(Loc, UseLineDirectives); return getPresumedLoc(Loc, UseLineDirectives);
} }
/// Look through spelling locations for a macro argument expansion, and if
/// found skip to it so that we can trace the argument rather than the macros
/// in which that argument is used. If no macro argument expansion is found,
/// don't skip anything and return the starting location.
SourceLocation skipToMacroArgExpansion(SourceLocation StartLoc) const {
for (SourceLocation L = StartLoc; L.isMacroID();
L = getImmediateSpellingLoc(L)) {
if (isMacroArgExpansion(L))
return L;
}
// Otherwise just return initial location, there's nothing to skip.
return StartLoc;
}
/// Gets the location of the immediate macro caller, one level up the stack /// Gets the location of the immediate macro caller, one level up the stack
/// toward the initial macro typed into the source. /// toward the initial macro typed into the source.
SourceLocation getImmediateMacroCallerLoc(SourceLocation Loc) const { SourceLocation getImmediateMacroCallerLoc(SourceLocation Loc) const {
if (!Loc.isMacroID()) return Loc; if (!Loc.isMacroID()) return Loc;
// When we have the location of (part of) an expanded parameter, its // When we have the location of (part of) an expanded parameter, its
// spelling location points to the argument as typed into the macro call, // spelling location points to the argument as expanded in the macro call,
// and therefore is used to locate the macro caller. // and therefore is used to locate the macro caller.
if (isMacroArgExpansion(Loc)) if (isMacroArgExpansion(Loc))
return getImmediateSpellingLoc(Loc); return getImmediateSpellingLoc(Loc);
...@@ -1517,22 +1501,6 @@ public: ...@@ -1517,22 +1501,6 @@ public:
return getImmediateExpansionRange(Loc).first; return getImmediateExpansionRange(Loc).first;
} }
/// Gets the location of the immediate macro callee, one level down the stack
/// toward the leaf macro.
SourceLocation getImmediateMacroCalleeLoc(SourceLocation Loc) const {
if (!Loc.isMacroID()) return Loc;
// When we have the location of (part of) an expanded parameter, its
// expansion location points to the unexpanded parameter reference within
// the macro definition (or callee).
if (isMacroArgExpansion(Loc))
return getImmediateExpansionRange(Loc).first;
// Otherwise, the callee of the macro is located where this location was
// spelled inside the macro definition.
return getImmediateSpellingLoc(Loc);
}
private: private:
const llvm::MemoryBuffer *getFakeBufferForRecovery() const; const llvm::MemoryBuffer *getFakeBufferForRecovery() const;
const SrcMgr::ContentCache *getFakeContentCacheForRecovery() const; const SrcMgr::ContentCache *getFakeContentCacheForRecovery() const;
......
...@@ -380,7 +380,7 @@ void DiagnosticRenderer::emitMacroExpansionsAndCarets( ...@@ -380,7 +380,7 @@ void DiagnosticRenderer::emitMacroExpansionsAndCarets(
unsigned OnMacroInst) unsigned OnMacroInst)
{ {
assert(!Loc.isInvalid() && "must have a valid source location here"); assert(!Loc.isInvalid() && "must have a valid source location here");
// If this is a file source location, directly emit the source snippet and // If this is a file source location, directly emit the source snippet and
// caret line. Also record the macro depth reached. // caret line. Also record the macro depth reached.
if (Loc.isFileID()) { if (Loc.isFileID()) {
...@@ -394,22 +394,12 @@ void DiagnosticRenderer::emitMacroExpansionsAndCarets( ...@@ -394,22 +394,12 @@ void DiagnosticRenderer::emitMacroExpansionsAndCarets(
return; return;
} }
// Otherwise recurse through each macro expansion layer. // Otherwise recurse through each macro expansion layer.
// When processing macros, skip over the expansions leading up to
// a macro argument, and trace the argument's expansion stack instead.
Loc = SM.skipToMacroArgExpansion(Loc);
SourceLocation OneLevelUp = SM.getImmediateMacroCallerLoc(Loc);
// Walk up to the caller of this macro, and produce a backtrace down to there.
SourceLocation OneLevelUp = SM.getImmediateMacroCallerLoc(Loc);
emitMacroExpansionsAndCarets(OneLevelUp, Level, Ranges, Hints, SM, MacroDepth, emitMacroExpansionsAndCarets(OneLevelUp, Level, Ranges, Hints, SM, MacroDepth,
OnMacroInst + 1); OnMacroInst + 1);
// Save the original location so we can find the spelling of the macro call.
SourceLocation MacroLoc = Loc;
// Map the location.
Loc = SM.getImmediateMacroCalleeLoc(Loc);
unsigned MacroSkipStart = 0, MacroSkipEnd = 0; unsigned MacroSkipStart = 0, MacroSkipEnd = 0;
if (MacroDepth > DiagOpts->MacroBacktraceLimit && if (MacroDepth > DiagOpts->MacroBacktraceLimit &&
DiagOpts->MacroBacktraceLimit != 0) { DiagOpts->MacroBacktraceLimit != 0) {
...@@ -417,11 +407,11 @@ void DiagnosticRenderer::emitMacroExpansionsAndCarets( ...@@ -417,11 +407,11 @@ void DiagnosticRenderer::emitMacroExpansionsAndCarets(
DiagOpts->MacroBacktraceLimit % 2; DiagOpts->MacroBacktraceLimit % 2;
MacroSkipEnd = MacroDepth - DiagOpts->MacroBacktraceLimit / 2; MacroSkipEnd = MacroDepth - DiagOpts->MacroBacktraceLimit / 2;
} }
// Whether to suppress printing this macro expansion. // Whether to suppress printing this macro expansion.
bool Suppressed = (OnMacroInst >= MacroSkipStart && bool Suppressed = (OnMacroInst >= MacroSkipStart &&
OnMacroInst < MacroSkipEnd); OnMacroInst < MacroSkipEnd);
if (Suppressed) { if (Suppressed) {
// Tell the user that we've skipped contexts. // Tell the user that we've skipped contexts.
if (OnMacroInst == MacroSkipStart) { if (OnMacroInst == MacroSkipStart) {
...@@ -435,15 +425,24 @@ void DiagnosticRenderer::emitMacroExpansionsAndCarets( ...@@ -435,15 +425,24 @@ void DiagnosticRenderer::emitMacroExpansionsAndCarets(
return; return;
} }
// Map the ranges. // Find the spelling location for the macro definition. We must use the
// spelling location here to avoid emitting a macro bactrace for the note.
SourceLocation SpellingLoc = Loc;
// If this is the expansion of a macro argument, point the caret at the
// use of the argument in the definition of the macro, not the expansion.
if (SM.isMacroArgExpansion(Loc))
SpellingLoc = SM.getImmediateExpansionRange(Loc).first;
SpellingLoc = SM.getSpellingLoc(SpellingLoc);
// Map the ranges into the FileID of the diagnostic location.
SmallVector<CharSourceRange, 4> SpellingRanges; SmallVector<CharSourceRange, 4> SpellingRanges;
mapDiagnosticRanges(MacroLoc, Ranges, SpellingRanges, &SM); mapDiagnosticRanges(Loc, Ranges, SpellingRanges, &SM);
SmallString<100> MessageStorage; SmallString<100> MessageStorage;
llvm::raw_svector_ostream Message(MessageStorage); llvm::raw_svector_ostream Message(MessageStorage);
Message << "expanded from macro '" Message << "expanded from macro '"
<< getImmediateMacroName(MacroLoc, SM, LangOpts) << "'"; << getImmediateMacroName(Loc, SM, LangOpts) << "'";
emitDiagnostic(SM.getSpellingLoc(Loc), DiagnosticsEngine::Note, emitDiagnostic(SpellingLoc, DiagnosticsEngine::Note,
Message.str(), Message.str(),
SpellingRanges, ArrayRef<FixItHint>(), &SM); SpellingRanges, ArrayRef<FixItHint>(), &SM);
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment