aboutsummaryrefslogtreecommitdiff
path: root/lib/Frontend/PlistDiagnostics.cpp
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2009-04-05 02:08:28 +0000
committerTed Kremenek <kremenek@apple.com>2009-04-05 02:08:28 +0000
commitf076339c679a889f751873a9cf8e5ad4a8686a03 (patch)
tree26633633ea3fe61ed59e4d477ac9b7a5c58402fb /lib/Frontend/PlistDiagnostics.cpp
parentba16be9d4f8677b0e22ac708e3c532e71b4aee4f (diff)
Fix output of ranges in analyzer plist files.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@68437 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Frontend/PlistDiagnostics.cpp')
-rw-r--r--lib/Frontend/PlistDiagnostics.cpp22
1 files changed, 14 insertions, 8 deletions
diff --git a/lib/Frontend/PlistDiagnostics.cpp b/lib/Frontend/PlistDiagnostics.cpp
index 575c3f3bfc..d87a8f189f 100644
--- a/lib/Frontend/PlistDiagnostics.cpp
+++ b/lib/Frontend/PlistDiagnostics.cpp
@@ -15,6 +15,7 @@
#include "clang/Analysis/PathDiagnostic.h"
#include "clang/Basic/SourceManager.h"
#include "clang/Basic/FileManager.h"
+#include "clang/Lex/Lexer.h"
#include "llvm/Support/Compiler.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/Support/Casting.h"
@@ -80,22 +81,27 @@ static llvm::raw_ostream& Indent(llvm::raw_ostream& o, const unsigned indent) {
static void EmitLocation(llvm::raw_ostream& o, const SourceManager* SM,
SourceLocation L, const FIDMap& FM,
- const unsigned indent) {
+ const unsigned indent, bool extend = false) {
+ FullSourceLoc Loc(SM->getInstantiationLoc(L), const_cast<SourceManager&>(*SM));
+
+ // Add in the length of the token, so that we cover multi-char tokens.
+ unsigned offset = extend ? Lexer::MeasureTokenLength(Loc, *SM) - 1 : 0;
+
Indent(o, indent) << "<dict>\n";
Indent(o, indent) << " <key>line</key><integer>"
- << SM->getInstantiationLineNumber(L) << "</integer>\n";
+ << Loc.getInstantiationLineNumber() << "</integer>\n";
Indent(o, indent) << " <key>col</key><integer>"
- << SM->getInstantiationColumnNumber(L) << "</integer>\n";
+ << Loc.getInstantiationColumnNumber() + offset << "</integer>\n";
Indent(o, indent) << " <key>file</key><integer>"
- << GetFID(FM, SM, L) << "</integer>\n";
+ << GetFID(FM, SM, Loc) << "</integer>\n";
Indent(o, indent) << "</dict>\n";
}
static void EmitLocation(llvm::raw_ostream& o, const SourceManager* SM,
const PathDiagnosticLocation &L, const FIDMap& FM,
- const unsigned indent) {
- EmitLocation(o, SM, L.asLocation(), FM, indent);
+ const unsigned indent, bool extend = false) {
+ EmitLocation(o, SM, L.asLocation(), FM, indent, extend);
}
static void EmitRange(llvm::raw_ostream& o, const SourceManager* SM,
@@ -103,8 +109,8 @@ static void EmitRange(llvm::raw_ostream& o, const SourceManager* SM,
const unsigned indent) {
Indent(o, indent) << "<array>\n";
- EmitLocation(o, SM, R.getBegin(), FM, indent+1);
- EmitLocation(o, SM, R.getEnd(), FM, indent+1);
+ EmitLocation(o, SM, R.getBegin(), FM, indent+1);
+ EmitLocation(o, SM, R.getEnd(), FM, indent+1, true);
Indent(o, indent) << "</array>\n";
}