summaryrefslogtreecommitdiff
path: root/clang-tools-extra/pp-trace
diff options
context:
space:
mode:
authorErich Keane <erich.keane@intel.com>2017-06-15 00:27:23 +0000
committerErich Keane <erich.keane@intel.com>2017-06-15 00:27:23 +0000
commit5b767760e9dd5d92c17604ccf425300fe4cb2d45 (patch)
tree8d1eb4bc78a728f2958cf13cc5a334ac3ce450a9 /clang-tools-extra/pp-trace
parent7901b4709455a98096e436221d21760ab68a55ad (diff)
downloadllvm-5b767760e9dd5d92c17604ccf425300fe4cb2d45.tar.gz
Update Append Argument to more efficiently traverse tokens
This function was previously making (correct) assumptions without complete knowledge of MacroArgs guarantees for Arguments. After going through Macro Args a bunch, I'd corrected the getNumArguments (and changed its name), however didn't realize this was depending on the behavior. This patch has version that depends on the corrected getNumMacroArguments's behavior, with the rest checked against my knowledge of the MacroArgs' token list. Commiting no-wait since the test is broken. llvm-svn: 305434
Diffstat (limited to 'clang-tools-extra/pp-trace')
-rw-r--r--clang-tools-extra/pp-trace/PPCallbacksTracker.cpp19
1 files changed, 9 insertions, 10 deletions
diff --git a/clang-tools-extra/pp-trace/PPCallbacksTracker.cpp b/clang-tools-extra/pp-trace/PPCallbacksTracker.cpp
index d09cb9988313..ca634d2d3dd9 100644
--- a/clang-tools-extra/pp-trace/PPCallbacksTracker.cpp
+++ b/clang-tools-extra/pp-trace/PPCallbacksTracker.cpp
@@ -588,19 +588,16 @@ void PPCallbacksTracker::appendArgument(const char *Name,
std::string Str;
llvm::raw_string_ostream SS(Str);
SS << "[";
- // The argument tokens might include end tokens, so we reflect how
- // how getUnexpArgument provides the arguments.
- for (int I = 0, E = Value->getNumMacroArguments(); I < E; ++I) {
+
+ // Each argument is is a series of contiguous Tokens, terminated by a eof.
+ // Go through each argument printing tokens until we reach eof.
+ for (unsigned I = 0; I < Value->getNumMacroArguments(); ++I) {
const clang::Token *Current = Value->getUnexpArgument(I);
- int TokenCount = Value->getArgLength(Current) + 1; // include EOF
- E -= TokenCount;
if (I)
SS << ", ";
- // We're assuming tokens are contiguous, as otherwise we have no
- // other way to get at them.
- --TokenCount;
- for (int TokenIndex = 0; TokenIndex < TokenCount; ++TokenIndex, ++Current) {
- if (TokenIndex)
+ bool First = true;
+ while (Current->isNot(clang::tok::eof)) {
+ if (!First)
SS << " ";
// We need to be careful here because the arguments might not be legal in
// YAML, so we use the token name for anything but identifiers and
@@ -611,6 +608,8 @@ void PPCallbacksTracker::appendArgument(const char *Name,
} else {
SS << "<" << Current->getName() << ">";
}
+ ++Current;
+ First = false;
}
}
SS << "]";