blob: c9eb8a650c809120be67d68dc8b0d8c3d1953a10 [file] [log] [blame]
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001//===- FileCheck.cpp - Check that File's Contents match what is expected --===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// FileCheck does a line-by line check of a file that validates whether it
11// contains the expected content. This is useful for regression tests etc.
12//
13// This program exits with an error status of 2 on error, exit status of 0 if
14// the file matched the expected contents, and exit status of 1 if it did not
15// contain the expected contents.
16//
17//===----------------------------------------------------------------------===//
18
Michael J. Spencer3ff95632010-12-16 03:29:14 +000019#include "llvm/ADT/OwningPtr.h"
Chandler Carruth4ffd89f2012-12-04 10:37:14 +000020#include "llvm/ADT/SmallString.h"
21#include "llvm/ADT/StringExtras.h"
22#include "llvm/ADT/StringMap.h"
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +000023#include "llvm/ADT/StringSet.h"
Chris Lattner81cb8ca2009-07-08 18:44:05 +000024#include "llvm/Support/CommandLine.h"
25#include "llvm/Support/MemoryBuffer.h"
26#include "llvm/Support/PrettyStackTrace.h"
Chris Lattner52870082009-09-24 21:47:32 +000027#include "llvm/Support/Regex.h"
Chandler Carruth4ffd89f2012-12-04 10:37:14 +000028#include "llvm/Support/Signals.h"
Chris Lattner81cb8ca2009-07-08 18:44:05 +000029#include "llvm/Support/SourceMgr.h"
30#include "llvm/Support/raw_ostream.h"
Michael J. Spencer333fb042010-12-09 17:36:48 +000031#include "llvm/Support/system_error.h"
Chris Lattnereec96952009-09-27 07:56:52 +000032#include <algorithm>
Will Dietze3ba15c2013-10-12 00:55:57 +000033#include <cctype>
Eli Bendersky9756ca72012-12-01 21:54:48 +000034#include <map>
35#include <string>
36#include <vector>
Chris Lattner81cb8ca2009-07-08 18:44:05 +000037using namespace llvm;
38
39static cl::opt<std::string>
40CheckFilename(cl::Positional, cl::desc("<check-file>"), cl::Required);
41
42static cl::opt<std::string>
43InputFilename("input-file", cl::desc("File to check (defaults to stdin)"),
44 cl::init("-"), cl::value_desc("filename"));
45
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +000046static cl::list<std::string>
47CheckPrefixes("check-prefix",
48 cl::desc("Prefix to use from check file (defaults to 'CHECK')"));
Chris Lattner81cb8ca2009-07-08 18:44:05 +000049
Chris Lattner88a7e9e2009-07-11 18:58:15 +000050static cl::opt<bool>
51NoCanonicalizeWhiteSpace("strict-whitespace",
52 cl::desc("Do not treat all horizontal whitespace as equivalent"));
53
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +000054typedef cl::list<std::string>::const_iterator prefix_iterator;
55
Chris Lattnera29703e2009-09-24 20:39:13 +000056//===----------------------------------------------------------------------===//
57// Pattern Handling Code.
58//===----------------------------------------------------------------------===//
59
Matt Arsenault4f67afc2013-09-17 22:30:02 +000060namespace Check {
61 enum CheckType {
62 CheckNone = 0,
63 CheckPlain,
64 CheckNext,
65 CheckNot,
66 CheckDAG,
67 CheckLabel,
68
69 /// MatchEOF - When set, this pattern only matches the end of file. This is
70 /// used for trailing CHECK-NOTs.
71 CheckEOF
72 };
73}
74
Chris Lattner9fc66782009-09-24 20:25:55 +000075class Pattern {
Chris Lattner94638f02009-09-25 17:29:36 +000076 SMLoc PatternLoc;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +000077
Matt Arsenault4f67afc2013-09-17 22:30:02 +000078 Check::CheckType CheckTy;
Michael Liao95ab3262013-05-14 20:34:12 +000079
Chris Lattner5d6a05f2009-09-25 17:23:43 +000080 /// FixedStr - If non-empty, this pattern is a fixed string match with the
81 /// specified fixed string.
Chris Lattner2702e6a2009-09-25 17:09:12 +000082 StringRef FixedStr;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +000083
Chris Lattner5d6a05f2009-09-25 17:23:43 +000084 /// RegEx - If non-empty, this is a regex pattern.
85 std::string RegExStr;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +000086
Alexander Kornienko70a870a2012-11-14 21:07:37 +000087 /// \brief Contains the number of line this pattern is in.
88 unsigned LineNumber;
89
Chris Lattnereec96952009-09-27 07:56:52 +000090 /// VariableUses - Entries in this vector map to uses of a variable in the
91 /// pattern, e.g. "foo[[bar]]baz". In this case, the RegExStr will contain
92 /// "foobaz" and we'll get an entry in this vector that tells us to insert the
93 /// value of bar at offset 3.
94 std::vector<std::pair<StringRef, unsigned> > VariableUses;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +000095
Eli Bendersky9756ca72012-12-01 21:54:48 +000096 /// VariableDefs - Maps definitions of variables to their parenthesized
97 /// capture numbers.
98 /// E.g. for the pattern "foo[[bar:.*]]baz", VariableDefs will map "bar" to 1.
99 std::map<StringRef, unsigned> VariableDefs;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000100
Chris Lattner9fc66782009-09-24 20:25:55 +0000101public:
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000102
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000103 Pattern(Check::CheckType Ty)
104 : CheckTy(Ty) { }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000105
Michael Liao0fc71372013-04-25 21:31:34 +0000106 /// getLoc - Return the location in source code.
107 SMLoc getLoc() const { return PatternLoc; }
108
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000109 /// ParsePattern - Parse the given string into the Pattern. Prefix provides
110 /// which prefix is being matched, SM provides the SourceMgr used for error
111 /// reports, and LineNumber is the line number in the input file from which
112 /// the pattern string was read. Returns true in case of an error, false
113 /// otherwise.
114 bool ParsePattern(StringRef PatternStr,
115 StringRef Prefix,
116 SourceMgr &SM,
117 unsigned LineNumber);
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000118
Chris Lattner9fc66782009-09-24 20:25:55 +0000119 /// Match - Match the pattern string against the input buffer Buffer. This
120 /// returns the position that is matched or npos if there is no match. If
121 /// there is a match, the size of the matched string is returned in MatchLen.
Chris Lattnereec96952009-09-27 07:56:52 +0000122 ///
123 /// The VariableTable StringMap provides the current values of filecheck
124 /// variables and is updated if this match defines new values.
125 size_t Match(StringRef Buffer, size_t &MatchLen,
126 StringMap<StringRef> &VariableTable) const;
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000127
128 /// PrintFailureInfo - Print additional information about a failure to match
129 /// involving this pattern.
130 void PrintFailureInfo(const SourceMgr &SM, StringRef Buffer,
131 const StringMap<StringRef> &VariableTable) const;
132
Stephen Lin178504b2013-07-12 14:51:05 +0000133 bool hasVariable() const { return !(VariableUses.empty() &&
134 VariableDefs.empty()); }
135
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000136 Check::CheckType getCheckTy() const { return CheckTy; }
Michael Liao95ab3262013-05-14 20:34:12 +0000137
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000138private:
Chris Lattnereec96952009-09-27 07:56:52 +0000139 static void AddFixedStringToRegEx(StringRef FixedStr, std::string &TheStr);
Eli Bendersky9756ca72012-12-01 21:54:48 +0000140 bool AddRegExToRegEx(StringRef RS, unsigned &CurParen, SourceMgr &SM);
141 void AddBackrefToRegEx(unsigned BackrefNum);
Daniel Dunbaread2dac2009-11-22 22:59:26 +0000142
143 /// ComputeMatchDistance - Compute an arbitrary estimate for the quality of
144 /// matching this pattern at the start of \arg Buffer; a distance of zero
145 /// should correspond to a perfect match.
146 unsigned ComputeMatchDistance(StringRef Buffer,
147 const StringMap<StringRef> &VariableTable) const;
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000148
149 /// \brief Evaluates expression and stores the result to \p Value.
150 /// \return true on success. false when the expression has invalid syntax.
151 bool EvaluateExpression(StringRef Expr, std::string &Value) const;
Eli Bendersky4db65112012-12-02 16:02:41 +0000152
153 /// \brief Finds the closing sequence of a regex variable usage or
154 /// definition. Str has to point in the beginning of the definition
155 /// (right after the opening sequence).
156 /// \return offset of the closing sequence within Str, or npos if it was not
157 /// found.
158 size_t FindRegexVarEnd(StringRef Str);
Chris Lattner9fc66782009-09-24 20:25:55 +0000159};
160
Chris Lattnereec96952009-09-27 07:56:52 +0000161
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000162bool Pattern::ParsePattern(StringRef PatternStr,
163 StringRef Prefix,
164 SourceMgr &SM,
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000165 unsigned LineNumber) {
166 this->LineNumber = LineNumber;
Chris Lattner94638f02009-09-25 17:29:36 +0000167 PatternLoc = SMLoc::getFromPointer(PatternStr.data());
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000168
Chris Lattnera29703e2009-09-24 20:39:13 +0000169 // Ignore trailing whitespace.
170 while (!PatternStr.empty() &&
171 (PatternStr.back() == ' ' || PatternStr.back() == '\t'))
172 PatternStr = PatternStr.substr(0, PatternStr.size()-1);
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000173
Chris Lattnera29703e2009-09-24 20:39:13 +0000174 // Check that there is something on the line.
175 if (PatternStr.empty()) {
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000176 SM.PrintMessage(PatternLoc, SourceMgr::DK_Error,
177 "found empty check string with prefix '" +
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000178 Prefix + ":'");
Chris Lattnera29703e2009-09-24 20:39:13 +0000179 return true;
180 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000181
Chris Lattner2702e6a2009-09-25 17:09:12 +0000182 // Check to see if this is a fixed string, or if it has regex pieces.
Ted Kremenek4f505172012-09-08 04:32:13 +0000183 if (PatternStr.size() < 2 ||
Chris Lattnereec96952009-09-27 07:56:52 +0000184 (PatternStr.find("{{") == StringRef::npos &&
185 PatternStr.find("[[") == StringRef::npos)) {
Chris Lattner2702e6a2009-09-25 17:09:12 +0000186 FixedStr = PatternStr;
187 return false;
188 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000189
Chris Lattnereec96952009-09-27 07:56:52 +0000190 // Paren value #0 is for the fully matched string. Any new parenthesized
Chris Lattner13a38c42011-04-09 06:18:02 +0000191 // values add from there.
Chris Lattnereec96952009-09-27 07:56:52 +0000192 unsigned CurParen = 1;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000193
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000194 // Otherwise, there is at least one regex piece. Build up the regex pattern
195 // by escaping scary characters in fixed strings, building up one big regex.
Chris Lattner52870082009-09-24 21:47:32 +0000196 while (!PatternStr.empty()) {
Chris Lattnereec96952009-09-27 07:56:52 +0000197 // RegEx matches.
Chris Lattner13a38c42011-04-09 06:18:02 +0000198 if (PatternStr.startswith("{{")) {
Eli Bendersky1e5cbcb2012-11-30 14:22:14 +0000199 // This is the start of a regex match. Scan for the }}.
Chris Lattnereec96952009-09-27 07:56:52 +0000200 size_t End = PatternStr.find("}}");
201 if (End == StringRef::npos) {
202 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000203 SourceMgr::DK_Error,
204 "found start of regex string with no end '}}'");
Chris Lattnereec96952009-09-27 07:56:52 +0000205 return true;
206 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000207
Chris Lattner42e31df2011-04-09 06:37:03 +0000208 // Enclose {{}} patterns in parens just like [[]] even though we're not
209 // capturing the result for any purpose. This is required in case the
210 // expression contains an alternation like: CHECK: abc{{x|z}}def. We
211 // want this to turn into: "abc(x|z)def" not "abcx|zdef".
212 RegExStr += '(';
213 ++CurParen;
214
Chris Lattnereec96952009-09-27 07:56:52 +0000215 if (AddRegExToRegEx(PatternStr.substr(2, End-2), CurParen, SM))
216 return true;
Chris Lattner42e31df2011-04-09 06:37:03 +0000217 RegExStr += ')';
Chris Lattner13a38c42011-04-09 06:18:02 +0000218
Chris Lattnereec96952009-09-27 07:56:52 +0000219 PatternStr = PatternStr.substr(End+2);
Chris Lattner52870082009-09-24 21:47:32 +0000220 continue;
221 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000222
Chris Lattnereec96952009-09-27 07:56:52 +0000223 // Named RegEx matches. These are of two forms: [[foo:.*]] which matches .*
224 // (or some other regex) and assigns it to the FileCheck variable 'foo'. The
225 // second form is [[foo]] which is a reference to foo. The variable name
Daniel Dunbar964ac012009-11-22 22:07:50 +0000226 // itself must be of the form "[a-zA-Z_][0-9a-zA-Z_]*", otherwise we reject
Chris Lattnereec96952009-09-27 07:56:52 +0000227 // it. This is to catch some common errors.
Chris Lattner13a38c42011-04-09 06:18:02 +0000228 if (PatternStr.startswith("[[")) {
Eli Bendersky4db65112012-12-02 16:02:41 +0000229 // Find the closing bracket pair ending the match. End is going to be an
230 // offset relative to the beginning of the match string.
231 size_t End = FindRegexVarEnd(PatternStr.substr(2));
232
Chris Lattnereec96952009-09-27 07:56:52 +0000233 if (End == StringRef::npos) {
234 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000235 SourceMgr::DK_Error,
236 "invalid named regex reference, no ]] found");
Chris Lattnereec96952009-09-27 07:56:52 +0000237 return true;
238 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000239
Eli Bendersky4db65112012-12-02 16:02:41 +0000240 StringRef MatchStr = PatternStr.substr(2, End);
241 PatternStr = PatternStr.substr(End+4);
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000242
Chris Lattnereec96952009-09-27 07:56:52 +0000243 // Get the regex name (e.g. "foo").
244 size_t NameEnd = MatchStr.find(':');
245 StringRef Name = MatchStr.substr(0, NameEnd);
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000246
Chris Lattnereec96952009-09-27 07:56:52 +0000247 if (Name.empty()) {
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000248 SM.PrintMessage(SMLoc::getFromPointer(Name.data()), SourceMgr::DK_Error,
249 "invalid name in named regex: empty name");
Chris Lattnereec96952009-09-27 07:56:52 +0000250 return true;
251 }
252
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000253 // Verify that the name/expression is well formed. FileCheck currently
254 // supports @LINE, @LINE+number, @LINE-number expressions. The check here
255 // is relaxed, more strict check is performed in \c EvaluateExpression.
256 bool IsExpression = false;
257 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
258 if (i == 0 && Name[i] == '@') {
259 if (NameEnd != StringRef::npos) {
260 SM.PrintMessage(SMLoc::getFromPointer(Name.data()),
261 SourceMgr::DK_Error,
262 "invalid name in named regex definition");
263 return true;
264 }
265 IsExpression = true;
266 continue;
267 }
268 if (Name[i] != '_' && !isalnum(Name[i]) &&
269 (!IsExpression || (Name[i] != '+' && Name[i] != '-'))) {
Chris Lattnereec96952009-09-27 07:56:52 +0000270 SM.PrintMessage(SMLoc::getFromPointer(Name.data()+i),
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000271 SourceMgr::DK_Error, "invalid name in named regex");
Chris Lattnereec96952009-09-27 07:56:52 +0000272 return true;
273 }
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000274 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000275
Chris Lattnereec96952009-09-27 07:56:52 +0000276 // Name can't start with a digit.
Guy Benyei87d0b9e2013-02-12 21:21:59 +0000277 if (isdigit(static_cast<unsigned char>(Name[0]))) {
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000278 SM.PrintMessage(SMLoc::getFromPointer(Name.data()), SourceMgr::DK_Error,
279 "invalid name in named regex");
Chris Lattnereec96952009-09-27 07:56:52 +0000280 return true;
281 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000282
Chris Lattnereec96952009-09-27 07:56:52 +0000283 // Handle [[foo]].
284 if (NameEnd == StringRef::npos) {
Eli Bendersky9756ca72012-12-01 21:54:48 +0000285 // Handle variables that were defined earlier on the same line by
286 // emitting a backreference.
287 if (VariableDefs.find(Name) != VariableDefs.end()) {
288 unsigned VarParenNum = VariableDefs[Name];
289 if (VarParenNum < 1 || VarParenNum > 9) {
290 SM.PrintMessage(SMLoc::getFromPointer(Name.data()),
291 SourceMgr::DK_Error,
292 "Can't back-reference more than 9 variables");
293 return true;
294 }
295 AddBackrefToRegEx(VarParenNum);
296 } else {
297 VariableUses.push_back(std::make_pair(Name, RegExStr.size()));
298 }
Chris Lattnereec96952009-09-27 07:56:52 +0000299 continue;
300 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000301
Chris Lattnereec96952009-09-27 07:56:52 +0000302 // Handle [[foo:.*]].
Eli Bendersky9756ca72012-12-01 21:54:48 +0000303 VariableDefs[Name] = CurParen;
Chris Lattnereec96952009-09-27 07:56:52 +0000304 RegExStr += '(';
305 ++CurParen;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000306
Chris Lattnereec96952009-09-27 07:56:52 +0000307 if (AddRegExToRegEx(MatchStr.substr(NameEnd+1), CurParen, SM))
308 return true;
309
310 RegExStr += ')';
Chris Lattner52870082009-09-24 21:47:32 +0000311 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000312
Chris Lattnereec96952009-09-27 07:56:52 +0000313 // Handle fixed string matches.
314 // Find the end, which is the start of the next regex.
315 size_t FixedMatchEnd = PatternStr.find("{{");
316 FixedMatchEnd = std::min(FixedMatchEnd, PatternStr.find("[["));
317 AddFixedStringToRegEx(PatternStr.substr(0, FixedMatchEnd), RegExStr);
318 PatternStr = PatternStr.substr(FixedMatchEnd);
Chris Lattner52870082009-09-24 21:47:32 +0000319 }
Chris Lattneradea46e2009-09-24 20:45:07 +0000320
Chris Lattnera29703e2009-09-24 20:39:13 +0000321 return false;
322}
323
Chris Lattnereec96952009-09-27 07:56:52 +0000324void Pattern::AddFixedStringToRegEx(StringRef FixedStr, std::string &TheStr) {
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000325 // Add the characters from FixedStr to the regex, escaping as needed. This
326 // avoids "leaning toothpicks" in common patterns.
327 for (unsigned i = 0, e = FixedStr.size(); i != e; ++i) {
328 switch (FixedStr[i]) {
329 // These are the special characters matched in "p_ere_exp".
330 case '(':
331 case ')':
332 case '^':
333 case '$':
334 case '|':
335 case '*':
336 case '+':
337 case '?':
338 case '.':
339 case '[':
340 case '\\':
341 case '{':
Chris Lattnereec96952009-09-27 07:56:52 +0000342 TheStr += '\\';
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000343 // FALL THROUGH.
344 default:
Chris Lattnereec96952009-09-27 07:56:52 +0000345 TheStr += FixedStr[i];
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000346 break;
347 }
348 }
349}
350
Eli Bendersky9756ca72012-12-01 21:54:48 +0000351bool Pattern::AddRegExToRegEx(StringRef RS, unsigned &CurParen,
Chris Lattnereec96952009-09-27 07:56:52 +0000352 SourceMgr &SM) {
Eli Bendersky9756ca72012-12-01 21:54:48 +0000353 Regex R(RS);
Chris Lattnereec96952009-09-27 07:56:52 +0000354 std::string Error;
355 if (!R.isValid(Error)) {
Eli Bendersky9756ca72012-12-01 21:54:48 +0000356 SM.PrintMessage(SMLoc::getFromPointer(RS.data()), SourceMgr::DK_Error,
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000357 "invalid regex: " + Error);
Chris Lattnereec96952009-09-27 07:56:52 +0000358 return true;
359 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000360
Eli Bendersky9756ca72012-12-01 21:54:48 +0000361 RegExStr += RS.str();
Chris Lattnereec96952009-09-27 07:56:52 +0000362 CurParen += R.getNumMatches();
363 return false;
364}
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000365
Eli Bendersky9756ca72012-12-01 21:54:48 +0000366void Pattern::AddBackrefToRegEx(unsigned BackrefNum) {
367 assert(BackrefNum >= 1 && BackrefNum <= 9 && "Invalid backref number");
368 std::string Backref = std::string("\\") +
369 std::string(1, '0' + BackrefNum);
370 RegExStr += Backref;
371}
372
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000373bool Pattern::EvaluateExpression(StringRef Expr, std::string &Value) const {
374 // The only supported expression is @LINE([\+-]\d+)?
375 if (!Expr.startswith("@LINE"))
376 return false;
377 Expr = Expr.substr(StringRef("@LINE").size());
378 int Offset = 0;
379 if (!Expr.empty()) {
380 if (Expr[0] == '+')
381 Expr = Expr.substr(1);
382 else if (Expr[0] != '-')
383 return false;
384 if (Expr.getAsInteger(10, Offset))
385 return false;
386 }
387 Value = llvm::itostr(LineNumber + Offset);
388 return true;
389}
390
Chris Lattner52870082009-09-24 21:47:32 +0000391/// Match - Match the pattern string against the input buffer Buffer. This
392/// returns the position that is matched or npos if there is no match. If
393/// there is a match, the size of the matched string is returned in MatchLen.
Chris Lattnereec96952009-09-27 07:56:52 +0000394size_t Pattern::Match(StringRef Buffer, size_t &MatchLen,
395 StringMap<StringRef> &VariableTable) const {
Jakob Stoklund Olesen824c10e2010-10-15 17:47:12 +0000396 // If this is the EOF pattern, match it immediately.
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000397 if (CheckTy == Check::CheckEOF) {
Jakob Stoklund Olesen824c10e2010-10-15 17:47:12 +0000398 MatchLen = 0;
399 return Buffer.size();
400 }
401
Chris Lattner2702e6a2009-09-25 17:09:12 +0000402 // If this is a fixed string pattern, just match it now.
403 if (!FixedStr.empty()) {
404 MatchLen = FixedStr.size();
405 return Buffer.find(FixedStr);
406 }
Chris Lattnereec96952009-09-27 07:56:52 +0000407
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000408 // Regex match.
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000409
Chris Lattnereec96952009-09-27 07:56:52 +0000410 // If there are variable uses, we need to create a temporary string with the
411 // actual value.
412 StringRef RegExToMatch = RegExStr;
413 std::string TmpStr;
414 if (!VariableUses.empty()) {
415 TmpStr = RegExStr;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000416
Chris Lattnereec96952009-09-27 07:56:52 +0000417 unsigned InsertOffset = 0;
418 for (unsigned i = 0, e = VariableUses.size(); i != e; ++i) {
Chris Lattnereec96952009-09-27 07:56:52 +0000419 std::string Value;
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000420
421 if (VariableUses[i].first[0] == '@') {
422 if (!EvaluateExpression(VariableUses[i].first, Value))
423 return StringRef::npos;
424 } else {
425 StringMap<StringRef>::iterator it =
426 VariableTable.find(VariableUses[i].first);
427 // If the variable is undefined, return an error.
428 if (it == VariableTable.end())
429 return StringRef::npos;
430
431 // Look up the value and escape it so that we can plop it into the regex.
432 AddFixedStringToRegEx(it->second, Value);
433 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000434
Chris Lattnereec96952009-09-27 07:56:52 +0000435 // Plop it into the regex at the adjusted offset.
436 TmpStr.insert(TmpStr.begin()+VariableUses[i].second+InsertOffset,
437 Value.begin(), Value.end());
438 InsertOffset += Value.size();
439 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000440
Chris Lattnereec96952009-09-27 07:56:52 +0000441 // Match the newly constructed regex.
442 RegExToMatch = TmpStr;
443 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000444
445
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000446 SmallVector<StringRef, 4> MatchInfo;
Chris Lattnereec96952009-09-27 07:56:52 +0000447 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000448 return StringRef::npos;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000449
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000450 // Successful regex match.
451 assert(!MatchInfo.empty() && "Didn't get any match");
452 StringRef FullMatch = MatchInfo[0];
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000453
Chris Lattnereec96952009-09-27 07:56:52 +0000454 // If this defines any variables, remember their values.
Eli Bendersky9756ca72012-12-01 21:54:48 +0000455 for (std::map<StringRef, unsigned>::const_iterator I = VariableDefs.begin(),
456 E = VariableDefs.end();
457 I != E; ++I) {
458 assert(I->second < MatchInfo.size() && "Internal paren error");
459 VariableTable[I->first] = MatchInfo[I->second];
Chris Lattner94638f02009-09-25 17:29:36 +0000460 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000461
Chris Lattner5d6a05f2009-09-25 17:23:43 +0000462 MatchLen = FullMatch.size();
463 return FullMatch.data()-Buffer.data();
Chris Lattner52870082009-09-24 21:47:32 +0000464}
465
Daniel Dunbaread2dac2009-11-22 22:59:26 +0000466unsigned Pattern::ComputeMatchDistance(StringRef Buffer,
467 const StringMap<StringRef> &VariableTable) const {
468 // Just compute the number of matching characters. For regular expressions, we
469 // just compare against the regex itself and hope for the best.
470 //
471 // FIXME: One easy improvement here is have the regex lib generate a single
472 // example regular expression which matches, and use that as the example
473 // string.
474 StringRef ExampleString(FixedStr);
475 if (ExampleString.empty())
476 ExampleString = RegExStr;
477
Daniel Dunbar0806f9f2010-01-30 00:24:06 +0000478 // Only compare up to the first line in the buffer, or the string size.
479 StringRef BufferPrefix = Buffer.substr(0, ExampleString.size());
480 BufferPrefix = BufferPrefix.split('\n').first;
481 return BufferPrefix.edit_distance(ExampleString);
Daniel Dunbaread2dac2009-11-22 22:59:26 +0000482}
483
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000484void Pattern::PrintFailureInfo(const SourceMgr &SM, StringRef Buffer,
485 const StringMap<StringRef> &VariableTable) const{
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000486 // If this was a regular expression using variables, print the current
487 // variable values.
488 if (!VariableUses.empty()) {
489 for (unsigned i = 0, e = VariableUses.size(); i != e; ++i) {
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000490 SmallString<256> Msg;
491 raw_svector_ostream OS(Msg);
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000492 StringRef Var = VariableUses[i].first;
493 if (Var[0] == '@') {
494 std::string Value;
495 if (EvaluateExpression(Var, Value)) {
496 OS << "with expression \"";
497 OS.write_escaped(Var) << "\" equal to \"";
498 OS.write_escaped(Value) << "\"";
499 } else {
500 OS << "uses incorrect expression \"";
501 OS.write_escaped(Var) << "\"";
502 }
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000503 } else {
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000504 StringMap<StringRef>::const_iterator it = VariableTable.find(Var);
505
506 // Check for undefined variable references.
507 if (it == VariableTable.end()) {
508 OS << "uses undefined variable \"";
509 OS.write_escaped(Var) << "\"";
510 } else {
511 OS << "with variable \"";
512 OS.write_escaped(Var) << "\" equal to \"";
513 OS.write_escaped(it->second) << "\"";
514 }
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000515 }
516
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000517 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Note,
518 OS.str());
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000519 }
520 }
Daniel Dunbaread2dac2009-11-22 22:59:26 +0000521
522 // Attempt to find the closest/best fuzzy match. Usually an error happens
523 // because some string in the output didn't exactly match. In these cases, we
524 // would like to show the user a best guess at what "should have" matched, to
525 // save them having to actually check the input manually.
526 size_t NumLinesForward = 0;
527 size_t Best = StringRef::npos;
528 double BestQuality = 0;
529
530 // Use an arbitrary 4k limit on how far we will search.
Dan Gohmane3a1e502010-01-29 21:57:46 +0000531 for (size_t i = 0, e = std::min(size_t(4096), Buffer.size()); i != e; ++i) {
Daniel Dunbaread2dac2009-11-22 22:59:26 +0000532 if (Buffer[i] == '\n')
533 ++NumLinesForward;
534
Dan Gohmand8a55412010-01-29 21:55:16 +0000535 // Patterns have leading whitespace stripped, so skip whitespace when
536 // looking for something which looks like a pattern.
537 if (Buffer[i] == ' ' || Buffer[i] == '\t')
538 continue;
539
Daniel Dunbaread2dac2009-11-22 22:59:26 +0000540 // Compute the "quality" of this match as an arbitrary combination of the
541 // match distance and the number of lines skipped to get to this match.
542 unsigned Distance = ComputeMatchDistance(Buffer.substr(i), VariableTable);
543 double Quality = Distance + (NumLinesForward / 100.);
544
545 if (Quality < BestQuality || Best == StringRef::npos) {
546 Best = i;
547 BestQuality = Quality;
548 }
549 }
550
Daniel Dunbar7a68e0d2010-03-19 18:07:43 +0000551 // Print the "possible intended match here" line if we found something
552 // reasonable and not equal to what we showed in the "scanning from here"
553 // line.
554 if (Best && Best != StringRef::npos && BestQuality < 50) {
555 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + Best),
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000556 SourceMgr::DK_Note, "possible intended match here");
Daniel Dunbaread2dac2009-11-22 22:59:26 +0000557
558 // FIXME: If we wanted to be really friendly we would show why the match
559 // failed, as it can be hard to spot simple one character differences.
560 }
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000561}
Chris Lattnera29703e2009-09-24 20:39:13 +0000562
Eli Bendersky4db65112012-12-02 16:02:41 +0000563size_t Pattern::FindRegexVarEnd(StringRef Str) {
564 // Offset keeps track of the current offset within the input Str
565 size_t Offset = 0;
566 // [...] Nesting depth
567 size_t BracketDepth = 0;
568
569 while (!Str.empty()) {
570 if (Str.startswith("]]") && BracketDepth == 0)
571 return Offset;
572 if (Str[0] == '\\') {
573 // Backslash escapes the next char within regexes, so skip them both.
574 Str = Str.substr(2);
575 Offset += 2;
576 } else {
577 switch (Str[0]) {
578 default:
579 break;
580 case '[':
581 BracketDepth++;
582 break;
583 case ']':
584 assert(BracketDepth > 0 && "Invalid regex");
585 BracketDepth--;
586 break;
587 }
588 Str = Str.substr(1);
589 Offset++;
590 }
591 }
592
593 return StringRef::npos;
594}
595
596
Chris Lattnera29703e2009-09-24 20:39:13 +0000597//===----------------------------------------------------------------------===//
598// Check Strings.
599//===----------------------------------------------------------------------===//
Chris Lattner9fc66782009-09-24 20:25:55 +0000600
601/// CheckString - This is a check that we found in the input file.
602struct CheckString {
603 /// Pat - The pattern to match.
604 Pattern Pat;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000605
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000606 /// Prefix - Which prefix name this check matched.
607 StringRef Prefix;
608
Chris Lattner207e1bc2009-08-15 17:41:04 +0000609 /// Loc - The location in the match file that the check string was specified.
610 SMLoc Loc;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000611
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000612 /// CheckTy - Specify what kind of check this is. e.g. CHECK-NEXT: directive,
613 /// as opposed to a CHECK: directive.
614 Check::CheckType CheckTy;
Stephen Lin178504b2013-07-12 14:51:05 +0000615
Michael Liao95ab3262013-05-14 20:34:12 +0000616 /// DagNotStrings - These are all of the strings that are disallowed from
Chris Lattnerf15380b2009-09-20 22:35:26 +0000617 /// occurring between this match string and the previous one (or start of
618 /// file).
Michael Liao95ab3262013-05-14 20:34:12 +0000619 std::vector<Pattern> DagNotStrings;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000620
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000621
622 CheckString(const Pattern &P,
623 StringRef S,
624 SMLoc L,
625 Check::CheckType Ty)
626 : Pat(P), Prefix(S), Loc(L), CheckTy(Ty) {}
Michael Liao7efbbd62013-05-14 20:29:52 +0000627
Michael Liao95ab3262013-05-14 20:34:12 +0000628 /// Check - Match check string and its "not strings" and/or "dag strings".
Stephen Line5f740c2013-10-11 18:38:36 +0000629 size_t Check(const SourceMgr &SM, StringRef Buffer, bool IsLabelScanMode,
Stephen Lin178504b2013-07-12 14:51:05 +0000630 size_t &MatchLen, StringMap<StringRef> &VariableTable) const;
Michael Liao7efbbd62013-05-14 20:29:52 +0000631
632 /// CheckNext - Verify there is a single line in the given buffer.
633 bool CheckNext(const SourceMgr &SM, StringRef Buffer) const;
634
635 /// CheckNot - Verify there's no "not strings" in the given buffer.
636 bool CheckNot(const SourceMgr &SM, StringRef Buffer,
Michael Liao95ab3262013-05-14 20:34:12 +0000637 const std::vector<const Pattern *> &NotStrings,
Michael Liao7efbbd62013-05-14 20:29:52 +0000638 StringMap<StringRef> &VariableTable) const;
Michael Liao95ab3262013-05-14 20:34:12 +0000639
640 /// CheckDag - Match "dag strings" and their mixed "not strings".
641 size_t CheckDag(const SourceMgr &SM, StringRef Buffer,
642 std::vector<const Pattern *> &NotStrings,
643 StringMap<StringRef> &VariableTable) const;
Chris Lattner207e1bc2009-08-15 17:41:04 +0000644};
645
Guy Benyei4cc74fc2013-02-06 20:40:38 +0000646/// Canonicalize whitespaces in the input file. Line endings are replaced
647/// with UNIX-style '\n'.
648///
649/// \param PreserveHorizontal Don't squash consecutive horizontal whitespace
650/// characters to a single space.
651static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB,
652 bool PreserveHorizontal) {
Chris Lattner4c842dd2010-04-05 22:42:30 +0000653 SmallString<128> NewFile;
Chris Lattneradea46e2009-09-24 20:45:07 +0000654 NewFile.reserve(MB->getBufferSize());
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000655
Chris Lattneradea46e2009-09-24 20:45:07 +0000656 for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
657 Ptr != End; ++Ptr) {
NAKAMURA Takumi9f6e03f2010-11-14 03:28:22 +0000658 // Eliminate trailing dosish \r.
659 if (Ptr <= End - 2 && Ptr[0] == '\r' && Ptr[1] == '\n') {
660 continue;
661 }
662
Michael Liaoc16f8c52013-04-25 18:54:02 +0000663 // If current char is not a horizontal whitespace or if horizontal
Guy Benyei4cc74fc2013-02-06 20:40:38 +0000664 // whitespace canonicalization is disabled, dump it to output as is.
665 if (PreserveHorizontal || (*Ptr != ' ' && *Ptr != '\t')) {
Chris Lattneradea46e2009-09-24 20:45:07 +0000666 NewFile.push_back(*Ptr);
667 continue;
668 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000669
Chris Lattneradea46e2009-09-24 20:45:07 +0000670 // Otherwise, add one space and advance over neighboring space.
671 NewFile.push_back(' ');
672 while (Ptr+1 != End &&
673 (Ptr[1] == ' ' || Ptr[1] == '\t'))
674 ++Ptr;
675 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000676
Chris Lattneradea46e2009-09-24 20:45:07 +0000677 // Free the old buffer and return a new one.
678 MemoryBuffer *MB2 =
Chris Lattner4c842dd2010-04-05 22:42:30 +0000679 MemoryBuffer::getMemBufferCopy(NewFile.str(), MB->getBufferIdentifier());
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000680
Chris Lattneradea46e2009-09-24 20:45:07 +0000681 delete MB;
682 return MB2;
683}
684
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000685static bool IsPartOfWord(char c) {
686 return (isalnum(c) || c == '-' || c == '_');
687}
688
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000689// Get the size of the prefix extension.
690static size_t CheckTypeSize(Check::CheckType Ty) {
691 switch (Ty) {
692 case Check::CheckNone:
693 return 0;
694
695 case Check::CheckPlain:
696 return sizeof(":") - 1;
697
698 case Check::CheckNext:
699 return sizeof("-NEXT:") - 1;
700
701 case Check::CheckNot:
702 return sizeof("-NOT:") - 1;
703
704 case Check::CheckDAG:
705 return sizeof("-DAG:") - 1;
706
707 case Check::CheckLabel:
708 return sizeof("-LABEL:") - 1;
709
710 case Check::CheckEOF:
711 llvm_unreachable("Should not be using EOF size");
712 }
713
714 llvm_unreachable("Bad check type");
715}
716
717static Check::CheckType FindCheckType(StringRef Buffer, StringRef Prefix) {
Matt Arsenault53bb26f2013-09-17 22:45:57 +0000718 char NextChar = Buffer[Prefix.size()];
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000719
720 // Verify that the : is present after the prefix.
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000721 if (NextChar == ':')
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000722 return Check::CheckPlain;
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000723
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000724 if (NextChar != '-')
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000725 return Check::CheckNone;
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000726
Matt Arsenault53bb26f2013-09-17 22:45:57 +0000727 StringRef Rest = Buffer.drop_front(Prefix.size() + 1);
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000728 if (Rest.startswith("NEXT:"))
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000729 return Check::CheckNext;
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000730
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000731 if (Rest.startswith("NOT:"))
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000732 return Check::CheckNot;
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000733
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000734 if (Rest.startswith("DAG:"))
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000735 return Check::CheckDAG;
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000736
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000737 if (Rest.startswith("LABEL:"))
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000738 return Check::CheckLabel;
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000739
740 return Check::CheckNone;
741}
742
743// From the given position, find the next character after the word.
744static size_t SkipWord(StringRef Str, size_t Loc) {
745 while (Loc < Str.size() && IsPartOfWord(Str[Loc]))
746 ++Loc;
747 return Loc;
748}
749
750// Try to find the first match in buffer for any prefix. If a valid match is
751// found, return that prefix and set its type and location. If there are almost
752// matches (e.g. the actual prefix string is found, but is not an actual check
753// string), but no valid match, return an empty string and set the position to
754// resume searching from. If no partial matches are found, return an empty
755// string and the location will be StringRef::npos. If one prefix is a substring
756// of another, the maximal match should be found. e.g. if "A" and "AA" are
757// prefixes then AA-CHECK: should match the second one.
758static StringRef FindFirstCandidateMatch(StringRef &Buffer,
759 Check::CheckType &CheckTy,
760 size_t &CheckLoc) {
761 StringRef FirstPrefix;
762 size_t FirstLoc = StringRef::npos;
763 size_t SearchLoc = StringRef::npos;
764 Check::CheckType FirstTy = Check::CheckNone;
765
766 CheckTy = Check::CheckNone;
767 CheckLoc = StringRef::npos;
768
769 for (prefix_iterator I = CheckPrefixes.begin(), E = CheckPrefixes.end();
770 I != E; ++I) {
771 StringRef Prefix(*I);
772 size_t PrefixLoc = Buffer.find(Prefix);
773
774 if (PrefixLoc == StringRef::npos)
775 continue;
776
777 // Track where we are searching for invalid prefixes that look almost right.
778 // We need to only advance to the first partial match on the next attempt
779 // since a partial match could be a substring of a later, valid prefix.
780 // Need to skip to the end of the word, otherwise we could end up
781 // matching a prefix in a substring later.
782 if (PrefixLoc < SearchLoc)
783 SearchLoc = SkipWord(Buffer, PrefixLoc);
784
785 // We only want to find the first match to avoid skipping some.
786 if (PrefixLoc > FirstLoc)
787 continue;
788
789 StringRef Rest = Buffer.drop_front(PrefixLoc);
790 // Make sure we have actually found the prefix, and not a word containing
791 // it. This should also prevent matching the wrong prefix when one is a
792 // substring of another.
793 if (PrefixLoc != 0 && IsPartOfWord(Buffer[PrefixLoc - 1]))
794 continue;
795
796 Check::CheckType Ty = FindCheckType(Rest, Prefix);
797 if (Ty == Check::CheckNone)
798 continue;
799
800 FirstLoc = PrefixLoc;
801 FirstTy = Ty;
802 FirstPrefix = Prefix;
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000803 }
804
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000805 if (FirstPrefix.empty()) {
806 CheckLoc = SearchLoc;
807 } else {
808 CheckTy = FirstTy;
809 CheckLoc = FirstLoc;
810 }
811
812 return FirstPrefix;
813}
814
815static StringRef FindFirstMatchingPrefix(StringRef &Buffer,
816 unsigned &LineNumber,
817 Check::CheckType &CheckTy,
818 size_t &CheckLoc) {
819 while (!Buffer.empty()) {
820 StringRef Prefix = FindFirstCandidateMatch(Buffer, CheckTy, CheckLoc);
821 // If we found a real match, we are done.
822 if (!Prefix.empty()) {
823 LineNumber += Buffer.substr(0, CheckLoc).count('\n');
824 return Prefix;
825 }
826
827 // We didn't find any almost matches either, we are also done.
828 if (CheckLoc == StringRef::npos)
829 return StringRef();
830
831 LineNumber += Buffer.substr(0, CheckLoc + 1).count('\n');
832
833 // Advance to the last possible match we found and try again.
834 Buffer = Buffer.drop_front(CheckLoc + 1);
835 }
836
837 return StringRef();
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000838}
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000839
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000840/// ReadCheckFile - Read the check file, which specifies the sequence of
841/// expected strings. The strings are added to the CheckStrings vector.
Eli Bendersky1e5cbcb2012-11-30 14:22:14 +0000842/// Returns true in case of an error, false otherwise.
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000843static bool ReadCheckFile(SourceMgr &SM,
Chris Lattner207e1bc2009-08-15 17:41:04 +0000844 std::vector<CheckString> &CheckStrings) {
Michael J. Spencer3ff95632010-12-16 03:29:14 +0000845 OwningPtr<MemoryBuffer> File;
846 if (error_code ec =
Rafael Espindoladd5af272013-06-25 05:28:34 +0000847 MemoryBuffer::getFileOrSTDIN(CheckFilename, File)) {
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000848 errs() << "Could not open check file '" << CheckFilename << "': "
Michael J. Spencer333fb042010-12-09 17:36:48 +0000849 << ec.message() << '\n';
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000850 return true;
851 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000852
Chris Lattneradea46e2009-09-24 20:45:07 +0000853 // If we want to canonicalize whitespace, strip excess whitespace from the
Guy Benyei4cc74fc2013-02-06 20:40:38 +0000854 // buffer containing the CHECK lines. Remove DOS style line endings.
Benjamin Kramer7cdba152013-03-23 13:56:23 +0000855 MemoryBuffer *F =
856 CanonicalizeInputFile(File.take(), NoCanonicalizeWhiteSpace);
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000857
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000858 SM.AddNewSourceBuffer(F, SMLoc());
859
Chris Lattnerd7e25052009-08-15 18:00:42 +0000860 // Find all instances of CheckPrefix followed by : in the file.
Chris Lattner96077032009-09-20 22:11:44 +0000861 StringRef Buffer = F->getBuffer();
Michael Liao95ab3262013-05-14 20:34:12 +0000862 std::vector<Pattern> DagNotMatches;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000863
Eli Bendersky1e5cbcb2012-11-30 14:22:14 +0000864 // LineNumber keeps track of the line on which CheckPrefix instances are
865 // found.
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000866 unsigned LineNumber = 1;
867
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000868 while (1) {
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000869 Check::CheckType CheckTy;
870 size_t PrefixLoc;
871
872 // See if a prefix occurs in the memory buffer.
873 StringRef UsedPrefix = FindFirstMatchingPrefix(Buffer,
874 LineNumber,
875 CheckTy,
876 PrefixLoc);
877 if (UsedPrefix.empty())
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000878 break;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000879
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000880 Buffer = Buffer.drop_front(PrefixLoc);
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000881
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000882 // Location to use for error messages.
883 const char *UsedPrefixStart = Buffer.data() + (PrefixLoc == 0 ? 0 : 1);
Alexander Kornienko70a870a2012-11-14 21:07:37 +0000884
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000885 // PrefixLoc is to the start of the prefix. Skip to the end.
886 Buffer = Buffer.drop_front(UsedPrefix.size() + CheckTypeSize(CheckTy));
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000887
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000888 // Okay, we found the prefix, yay. Remember the rest of the line, but ignore
889 // leading and trailing whitespace.
Chris Lattnerf15380b2009-09-20 22:35:26 +0000890 Buffer = Buffer.substr(Buffer.find_first_not_of(" \t"));
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000891
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000892 // Scan ahead to the end of line.
Chris Lattner96077032009-09-20 22:11:44 +0000893 size_t EOL = Buffer.find_first_of("\n\r");
Chris Lattnera29703e2009-09-24 20:39:13 +0000894
Dan Gohmane5463432010-01-29 21:53:18 +0000895 // Remember the location of the start of the pattern, for diagnostics.
896 SMLoc PatternLoc = SMLoc::getFromPointer(Buffer.data());
897
Chris Lattnera29703e2009-09-24 20:39:13 +0000898 // Parse the pattern.
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000899 Pattern P(CheckTy);
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000900 if (P.ParsePattern(Buffer.substr(0, EOL), UsedPrefix, SM, LineNumber))
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000901 return true;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000902
Stephen Lin178504b2013-07-12 14:51:05 +0000903 // Verify that CHECK-LABEL lines do not define or use variables
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000904 if ((CheckTy == Check::CheckLabel) && P.hasVariable()) {
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000905 SM.PrintMessage(SMLoc::getFromPointer(UsedPrefixStart),
Stephen Lin178504b2013-07-12 14:51:05 +0000906 SourceMgr::DK_Error,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000907 "found '" + UsedPrefix + "-LABEL:'"
908 " with variable definition or use");
Stephen Lin178504b2013-07-12 14:51:05 +0000909 return true;
910 }
911
Chris Lattnera29703e2009-09-24 20:39:13 +0000912 Buffer = Buffer.substr(EOL);
913
Chris Lattner5dafafd2009-08-15 18:32:21 +0000914 // Verify that CHECK-NEXT lines have at least one CHECK line before them.
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000915 if ((CheckTy == Check::CheckNext) && CheckStrings.empty()) {
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000916 SM.PrintMessage(SMLoc::getFromPointer(UsedPrefixStart),
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000917 SourceMgr::DK_Error,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000918 "found '" + UsedPrefix + "-NEXT:' without previous '"
919 + UsedPrefix + ": line");
Chris Lattner5dafafd2009-08-15 18:32:21 +0000920 return true;
921 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000922
Michael Liao95ab3262013-05-14 20:34:12 +0000923 // Handle CHECK-DAG/-NOT.
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000924 if (CheckTy == Check::CheckDAG || CheckTy == Check::CheckNot) {
Michael Liao95ab3262013-05-14 20:34:12 +0000925 DagNotMatches.push_back(P);
Chris Lattnera29703e2009-09-24 20:39:13 +0000926 continue;
927 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000928
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000929 // Okay, add the string we captured to the output vector and move on.
Chris Lattner9fc66782009-09-24 20:25:55 +0000930 CheckStrings.push_back(CheckString(P,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000931 UsedPrefix,
Dan Gohmane5463432010-01-29 21:53:18 +0000932 PatternLoc,
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000933 CheckTy));
Michael Liao95ab3262013-05-14 20:34:12 +0000934 std::swap(DagNotMatches, CheckStrings.back().DagNotStrings);
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000935 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000936
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000937 // Add an EOF pattern for any trailing CHECK-DAG/-NOTs, and use the first
938 // prefix as a filler for the error message.
Michael Liao95ab3262013-05-14 20:34:12 +0000939 if (!DagNotMatches.empty()) {
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000940 CheckStrings.push_back(CheckString(Pattern(Check::CheckEOF),
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000941 CheckPrefixes[0],
Jakob Stoklund Olesen824c10e2010-10-15 17:47:12 +0000942 SMLoc::getFromPointer(Buffer.data()),
Matt Arsenault4f67afc2013-09-17 22:30:02 +0000943 Check::CheckEOF));
Michael Liao95ab3262013-05-14 20:34:12 +0000944 std::swap(DagNotMatches, CheckStrings.back().DagNotStrings);
Jakob Stoklund Olesen824c10e2010-10-15 17:47:12 +0000945 }
946
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000947 if (CheckStrings.empty()) {
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +0000948 errs() << "error: no check strings found with prefix"
949 << (CheckPrefixes.size() > 1 ? "es " : " ");
950 for (size_t I = 0, N = CheckPrefixes.size(); I != N; ++I) {
951 StringRef Prefix(CheckPrefixes[I]);
952 errs() << '\'' << Prefix << ":'";
953 if (I != N - 1)
954 errs() << ", ";
955 }
956
957 errs() << '\n';
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000958 return true;
959 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000960
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000961 return false;
962}
963
Michael Liao95ab3262013-05-14 20:34:12 +0000964static void PrintCheckFailed(const SourceMgr &SM, const SMLoc &Loc,
965 const Pattern &Pat, StringRef Buffer,
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000966 StringMap<StringRef> &VariableTable) {
Chris Lattner5dafafd2009-08-15 18:32:21 +0000967 // Otherwise, we have an error, emit an error message.
Michael Liao95ab3262013-05-14 20:34:12 +0000968 SM.PrintMessage(Loc, SourceMgr::DK_Error,
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000969 "expected string not found in input");
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000970
Chris Lattner5dafafd2009-08-15 18:32:21 +0000971 // Print the "scanning from here" line. If the current position is at the
972 // end of a line, advance to the start of the next line.
Chris Lattner96077032009-09-20 22:11:44 +0000973 Buffer = Buffer.substr(Buffer.find_first_not_of(" \t\n\r"));
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000974
Chris Lattner3f2d5f62011-10-16 05:43:57 +0000975 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Note,
976 "scanning from here");
Daniel Dunbarfafe93c2009-11-22 22:08:06 +0000977
978 // Allow the pattern to print additional information if desired.
Michael Liao95ab3262013-05-14 20:34:12 +0000979 Pat.PrintFailureInfo(SM, Buffer, VariableTable);
980}
981
982static void PrintCheckFailed(const SourceMgr &SM, const CheckString &CheckStr,
983 StringRef Buffer,
984 StringMap<StringRef> &VariableTable) {
985 PrintCheckFailed(SM, CheckStr.Loc, CheckStr.Pat, Buffer, VariableTable);
Chris Lattner5dafafd2009-08-15 18:32:21 +0000986}
987
Chris Lattner3711b7a2009-09-20 22:42:44 +0000988/// CountNumNewlinesBetween - Count the number of newlines in the specified
989/// range.
990static unsigned CountNumNewlinesBetween(StringRef Range) {
Chris Lattner5dafafd2009-08-15 18:32:21 +0000991 unsigned NumNewLines = 0;
Chris Lattner3711b7a2009-09-20 22:42:44 +0000992 while (1) {
Chris Lattner5dafafd2009-08-15 18:32:21 +0000993 // Scan for newline.
Chris Lattner3711b7a2009-09-20 22:42:44 +0000994 Range = Range.substr(Range.find_first_of("\n\r"));
995 if (Range.empty()) return NumNewLines;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000996
Chris Lattner5dafafd2009-08-15 18:32:21 +0000997 ++NumNewLines;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +0000998
Chris Lattner5dafafd2009-08-15 18:32:21 +0000999 // Handle \n\r and \r\n as a single newline.
Chris Lattner3711b7a2009-09-20 22:42:44 +00001000 if (Range.size() > 1 &&
1001 (Range[1] == '\n' || Range[1] == '\r') &&
1002 (Range[0] != Range[1]))
1003 Range = Range.substr(1);
1004 Range = Range.substr(1);
Chris Lattner5dafafd2009-08-15 18:32:21 +00001005 }
Chris Lattner5dafafd2009-08-15 18:32:21 +00001006}
1007
Michael Liao7efbbd62013-05-14 20:29:52 +00001008size_t CheckString::Check(const SourceMgr &SM, StringRef Buffer,
Stephen Line5f740c2013-10-11 18:38:36 +00001009 bool IsLabelScanMode, size_t &MatchLen,
Michael Liao7efbbd62013-05-14 20:29:52 +00001010 StringMap<StringRef> &VariableTable) const {
Michael Liao95ab3262013-05-14 20:34:12 +00001011 size_t LastPos = 0;
1012 std::vector<const Pattern *> NotStrings;
1013
Stephen Line5f740c2013-10-11 18:38:36 +00001014 // IsLabelScanMode is true when we are scanning forward to find CHECK-LABEL
1015 // bounds; we have not processed variable definitions within the bounded block
1016 // yet so cannot handle any final CHECK-DAG yet; this is handled when going
1017 // over the block again (including the last CHECK-LABEL) in normal mode.
1018 if (!IsLabelScanMode) {
1019 // Match "dag strings" (with mixed "not strings" if any).
1020 LastPos = CheckDag(SM, Buffer, NotStrings, VariableTable);
1021 if (LastPos == StringRef::npos)
1022 return StringRef::npos;
1023 }
Michael Liao95ab3262013-05-14 20:34:12 +00001024
1025 // Match itself from the last position after matching CHECK-DAG.
1026 StringRef MatchBuffer = Buffer.substr(LastPos);
1027 size_t MatchPos = Pat.Match(MatchBuffer, MatchLen, VariableTable);
Michael Liao7efbbd62013-05-14 20:29:52 +00001028 if (MatchPos == StringRef::npos) {
Michael Liao95ab3262013-05-14 20:34:12 +00001029 PrintCheckFailed(SM, *this, MatchBuffer, VariableTable);
Michael Liao7efbbd62013-05-14 20:29:52 +00001030 return StringRef::npos;
1031 }
Michael Liao95ab3262013-05-14 20:34:12 +00001032 MatchPos += LastPos;
Michael Liao7efbbd62013-05-14 20:29:52 +00001033
Stephen Line5f740c2013-10-11 18:38:36 +00001034 // Similar to the above, in "label-scan mode" we can't yet handle CHECK-NEXT
1035 // or CHECK-NOT
1036 if (!IsLabelScanMode) {
Stephen Lin178504b2013-07-12 14:51:05 +00001037 StringRef SkippedRegion = Buffer.substr(LastPos, MatchPos);
Michael Liao7efbbd62013-05-14 20:29:52 +00001038
Stephen Lin178504b2013-07-12 14:51:05 +00001039 // If this check is a "CHECK-NEXT", verify that the previous match was on
1040 // the previous line (i.e. that there is one newline between them).
1041 if (CheckNext(SM, SkippedRegion))
1042 return StringRef::npos;
Michael Liao7efbbd62013-05-14 20:29:52 +00001043
Stephen Lin178504b2013-07-12 14:51:05 +00001044 // If this match had "not strings", verify that they don't exist in the
1045 // skipped region.
1046 if (CheckNot(SM, SkippedRegion, NotStrings, VariableTable))
1047 return StringRef::npos;
1048 }
Michael Liao7efbbd62013-05-14 20:29:52 +00001049
1050 return MatchPos;
1051}
1052
1053bool CheckString::CheckNext(const SourceMgr &SM, StringRef Buffer) const {
Matt Arsenault4f67afc2013-09-17 22:30:02 +00001054 if (CheckTy != Check::CheckNext)
Michael Liao7efbbd62013-05-14 20:29:52 +00001055 return false;
1056
1057 // Count the number of newlines between the previous match and this one.
1058 assert(Buffer.data() !=
1059 SM.getMemoryBuffer(
1060 SM.FindBufferContainingLoc(
1061 SMLoc::getFromPointer(Buffer.data())))->getBufferStart() &&
1062 "CHECK-NEXT can't be the first check in a file");
1063
1064 unsigned NumNewLines = CountNumNewlinesBetween(Buffer);
1065
1066 if (NumNewLines == 0) {
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001067 SM.PrintMessage(Loc, SourceMgr::DK_Error, Prefix +
Michael Liao7efbbd62013-05-14 20:29:52 +00001068 "-NEXT: is on the same line as previous match");
1069 SM.PrintMessage(SMLoc::getFromPointer(Buffer.end()),
1070 SourceMgr::DK_Note, "'next' match was here");
1071 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Note,
1072 "previous match ended here");
1073 return true;
1074 }
1075
1076 if (NumNewLines != 1) {
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001077 SM.PrintMessage(Loc, SourceMgr::DK_Error, Prefix +
Michael Liao7efbbd62013-05-14 20:29:52 +00001078 "-NEXT: is not on the line after the previous match");
1079 SM.PrintMessage(SMLoc::getFromPointer(Buffer.end()),
1080 SourceMgr::DK_Note, "'next' match was here");
1081 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Note,
1082 "previous match ended here");
1083 return true;
1084 }
1085
1086 return false;
1087}
1088
1089bool CheckString::CheckNot(const SourceMgr &SM, StringRef Buffer,
Michael Liao95ab3262013-05-14 20:34:12 +00001090 const std::vector<const Pattern *> &NotStrings,
Michael Liao7efbbd62013-05-14 20:29:52 +00001091 StringMap<StringRef> &VariableTable) const {
1092 for (unsigned ChunkNo = 0, e = NotStrings.size();
1093 ChunkNo != e; ++ChunkNo) {
Michael Liao95ab3262013-05-14 20:34:12 +00001094 const Pattern *Pat = NotStrings[ChunkNo];
Matt Arsenault4f67afc2013-09-17 22:30:02 +00001095 assert((Pat->getCheckTy() == Check::CheckNot) && "Expect CHECK-NOT!");
Michael Liao95ab3262013-05-14 20:34:12 +00001096
Michael Liao7efbbd62013-05-14 20:29:52 +00001097 size_t MatchLen = 0;
Michael Liao95ab3262013-05-14 20:34:12 +00001098 size_t Pos = Pat->Match(Buffer, MatchLen, VariableTable);
Michael Liao7efbbd62013-05-14 20:29:52 +00001099
1100 if (Pos == StringRef::npos) continue;
1101
1102 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()+Pos),
1103 SourceMgr::DK_Error,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001104 Prefix + "-NOT: string occurred!");
Michael Liao95ab3262013-05-14 20:34:12 +00001105 SM.PrintMessage(Pat->getLoc(), SourceMgr::DK_Note,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001106 Prefix + "-NOT: pattern specified here");
Michael Liao7efbbd62013-05-14 20:29:52 +00001107 return true;
1108 }
1109
1110 return false;
1111}
1112
Michael Liao95ab3262013-05-14 20:34:12 +00001113size_t CheckString::CheckDag(const SourceMgr &SM, StringRef Buffer,
1114 std::vector<const Pattern *> &NotStrings,
1115 StringMap<StringRef> &VariableTable) const {
1116 if (DagNotStrings.empty())
1117 return 0;
1118
1119 size_t LastPos = 0;
1120 size_t StartPos = LastPos;
1121
1122 for (unsigned ChunkNo = 0, e = DagNotStrings.size();
1123 ChunkNo != e; ++ChunkNo) {
1124 const Pattern &Pat = DagNotStrings[ChunkNo];
1125
Matt Arsenault4f67afc2013-09-17 22:30:02 +00001126 assert((Pat.getCheckTy() == Check::CheckDAG ||
1127 Pat.getCheckTy() == Check::CheckNot) &&
Michael Liao95ab3262013-05-14 20:34:12 +00001128 "Invalid CHECK-DAG or CHECK-NOT!");
1129
Matt Arsenault4f67afc2013-09-17 22:30:02 +00001130 if (Pat.getCheckTy() == Check::CheckNot) {
Michael Liao95ab3262013-05-14 20:34:12 +00001131 NotStrings.push_back(&Pat);
1132 continue;
1133 }
1134
Matt Arsenault4f67afc2013-09-17 22:30:02 +00001135 assert((Pat.getCheckTy() == Check::CheckDAG) && "Expect CHECK-DAG!");
Michael Liao95ab3262013-05-14 20:34:12 +00001136
1137 size_t MatchLen = 0, MatchPos;
1138
1139 // CHECK-DAG always matches from the start.
1140 StringRef MatchBuffer = Buffer.substr(StartPos);
1141 MatchPos = Pat.Match(MatchBuffer, MatchLen, VariableTable);
1142 // With a group of CHECK-DAGs, a single mismatching means the match on
1143 // that group of CHECK-DAGs fails immediately.
1144 if (MatchPos == StringRef::npos) {
1145 PrintCheckFailed(SM, Pat.getLoc(), Pat, MatchBuffer, VariableTable);
1146 return StringRef::npos;
1147 }
1148 // Re-calc it as the offset relative to the start of the original string.
1149 MatchPos += StartPos;
1150
1151 if (!NotStrings.empty()) {
1152 if (MatchPos < LastPos) {
1153 // Reordered?
1154 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + MatchPos),
1155 SourceMgr::DK_Error,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001156 Prefix + "-DAG: found a match of CHECK-DAG"
Michael Liao95ab3262013-05-14 20:34:12 +00001157 " reordering across a CHECK-NOT");
1158 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data() + LastPos),
1159 SourceMgr::DK_Note,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001160 Prefix + "-DAG: the farthest match of CHECK-DAG"
Michael Liao95ab3262013-05-14 20:34:12 +00001161 " is found here");
1162 SM.PrintMessage(NotStrings[0]->getLoc(), SourceMgr::DK_Note,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001163 Prefix + "-NOT: the crossed pattern specified"
Michael Liao95ab3262013-05-14 20:34:12 +00001164 " here");
1165 SM.PrintMessage(Pat.getLoc(), SourceMgr::DK_Note,
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001166 Prefix + "-DAG: the reordered pattern specified"
Michael Liao95ab3262013-05-14 20:34:12 +00001167 " here");
1168 return StringRef::npos;
1169 }
1170 // All subsequent CHECK-DAGs should be matched from the farthest
1171 // position of all precedent CHECK-DAGs (including this one.)
1172 StartPos = LastPos;
1173 // If there's CHECK-NOTs between two CHECK-DAGs or from CHECK to
1174 // CHECK-DAG, verify that there's no 'not' strings occurred in that
1175 // region.
1176 StringRef SkippedRegion = Buffer.substr(LastPos, MatchPos);
Tim Northovere57343b2013-08-02 11:32:50 +00001177 if (CheckNot(SM, SkippedRegion, NotStrings, VariableTable))
Michael Liao95ab3262013-05-14 20:34:12 +00001178 return StringRef::npos;
1179 // Clear "not strings".
1180 NotStrings.clear();
1181 }
1182
1183 // Update the last position with CHECK-DAG matches.
1184 LastPos = std::max(MatchPos + MatchLen, LastPos);
1185 }
1186
1187 return LastPos;
1188}
1189
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001190// A check prefix must contain only alphanumeric, hyphens and underscores.
1191static bool ValidateCheckPrefix(StringRef CheckPrefix) {
1192 Regex Validator("^[a-zA-Z0-9_-]*$");
1193 return Validator.match(CheckPrefix);
1194}
1195
1196static bool ValidateCheckPrefixes() {
1197 StringSet<> PrefixSet;
1198
1199 for (prefix_iterator I = CheckPrefixes.begin(), E = CheckPrefixes.end();
1200 I != E; ++I) {
1201 StringRef Prefix(*I);
1202
1203 if (!PrefixSet.insert(Prefix))
1204 return false;
1205
1206 if (!ValidateCheckPrefix(Prefix))
1207 return false;
1208 }
1209
1210 return true;
1211}
1212
1213// I don't think there's a way to specify an initial value for cl::list,
1214// so if nothing was specified, add the default
1215static void AddCheckPrefixIfNeeded() {
1216 if (CheckPrefixes.empty())
1217 CheckPrefixes.push_back("CHECK");
Rui Ueyamad9a84ef2013-08-12 23:05:59 +00001218}
1219
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001220int main(int argc, char **argv) {
1221 sys::PrintStackTraceOnErrorSignal();
1222 PrettyStackTraceProgram X(argc, argv);
1223 cl::ParseCommandLineOptions(argc, argv);
1224
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001225 if (!ValidateCheckPrefixes()) {
1226 errs() << "Supplied check-prefix is invalid! Prefixes must be unique and "
1227 "start with a letter and contain only alphanumeric characters, "
1228 "hyphens and underscores\n";
Rui Ueyamad9a84ef2013-08-12 23:05:59 +00001229 return 2;
1230 }
1231
Matt Arsenaultee4f5ea2013-11-10 02:04:09 +00001232 AddCheckPrefixIfNeeded();
1233
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001234 SourceMgr SM;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001235
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001236 // Read the expected strings from the check file.
Chris Lattner207e1bc2009-08-15 17:41:04 +00001237 std::vector<CheckString> CheckStrings;
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001238 if (ReadCheckFile(SM, CheckStrings))
1239 return 2;
1240
1241 // Open the file to check and add it to SourceMgr.
Michael J. Spencer3ff95632010-12-16 03:29:14 +00001242 OwningPtr<MemoryBuffer> File;
1243 if (error_code ec =
Rafael Espindoladd5af272013-06-25 05:28:34 +00001244 MemoryBuffer::getFileOrSTDIN(InputFilename, File)) {
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001245 errs() << "Could not open input file '" << InputFilename << "': "
Michael J. Spencer333fb042010-12-09 17:36:48 +00001246 << ec.message() << '\n';
Eli Bendersky7f8e76f2012-11-30 13:51:33 +00001247 return 2;
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001248 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001249
Benjamin Kramer7cdba152013-03-23 13:56:23 +00001250 if (File->getBufferSize() == 0) {
Chris Lattner1aac1862011-02-09 16:46:02 +00001251 errs() << "FileCheck error: '" << InputFilename << "' is empty.\n";
Eli Bendersky7f8e76f2012-11-30 13:51:33 +00001252 return 2;
Chris Lattner1aac1862011-02-09 16:46:02 +00001253 }
Benjamin Kramer7cdba152013-03-23 13:56:23 +00001254
Chris Lattner88a7e9e2009-07-11 18:58:15 +00001255 // Remove duplicate spaces in the input file if requested.
Guy Benyei4cc74fc2013-02-06 20:40:38 +00001256 // Remove DOS style line endings.
Benjamin Kramer7cdba152013-03-23 13:56:23 +00001257 MemoryBuffer *F =
1258 CanonicalizeInputFile(File.take(), NoCanonicalizeWhiteSpace);
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001259
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001260 SM.AddNewSourceBuffer(F, SMLoc());
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001261
Chris Lattnereec96952009-09-27 07:56:52 +00001262 /// VariableTable - This holds all the current filecheck variables.
1263 StringMap<StringRef> VariableTable;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001264
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001265 // Check that we have all of the expected strings, in order, in the input
1266 // file.
Chris Lattner96077032009-09-20 22:11:44 +00001267 StringRef Buffer = F->getBuffer();
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001268
Stephen Lin178504b2013-07-12 14:51:05 +00001269 bool hasError = false;
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001270
Stephen Lin178504b2013-07-12 14:51:05 +00001271 unsigned i = 0, j = 0, e = CheckStrings.size();
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001272
Stephen Lin178504b2013-07-12 14:51:05 +00001273 while (true) {
1274 StringRef CheckRegion;
1275 if (j == e) {
1276 CheckRegion = Buffer;
1277 } else {
1278 const CheckString &CheckLabelStr = CheckStrings[j];
Matt Arsenault4f67afc2013-09-17 22:30:02 +00001279 if (CheckLabelStr.CheckTy != Check::CheckLabel) {
Stephen Lin178504b2013-07-12 14:51:05 +00001280 ++j;
1281 continue;
1282 }
Chris Lattner3711b7a2009-09-20 22:42:44 +00001283
Stephen Lin178504b2013-07-12 14:51:05 +00001284 // Scan to next CHECK-LABEL match, ignoring CHECK-NOT and CHECK-DAG
1285 size_t MatchLabelLen = 0;
Stephen Line5f740c2013-10-11 18:38:36 +00001286 size_t MatchLabelPos = CheckLabelStr.Check(SM, Buffer, true,
Stephen Lin178504b2013-07-12 14:51:05 +00001287 MatchLabelLen, VariableTable);
1288 if (MatchLabelPos == StringRef::npos) {
1289 hasError = true;
1290 break;
1291 }
1292
1293 CheckRegion = Buffer.substr(0, MatchLabelPos + MatchLabelLen);
1294 Buffer = Buffer.substr(MatchLabelPos + MatchLabelLen);
1295 ++j;
1296 }
1297
1298 for ( ; i != j; ++i) {
1299 const CheckString &CheckStr = CheckStrings[i];
1300
1301 // Check each string within the scanned region, including a second check
1302 // of any final CHECK-LABEL (to verify CHECK-NOT and CHECK-DAG)
1303 size_t MatchLen = 0;
Stephen Line5f740c2013-10-11 18:38:36 +00001304 size_t MatchPos = CheckStr.Check(SM, CheckRegion, false, MatchLen,
Stephen Lin178504b2013-07-12 14:51:05 +00001305 VariableTable);
1306
1307 if (MatchPos == StringRef::npos) {
1308 hasError = true;
1309 i = j;
1310 break;
1311 }
1312
1313 CheckRegion = CheckRegion.substr(MatchPos + MatchLen);
1314 }
1315
1316 if (j == e)
1317 break;
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001318 }
Mikhail Glushenkov7112c862010-08-20 17:38:38 +00001319
Stephen Lin178504b2013-07-12 14:51:05 +00001320 return hasError ? 1 : 0;
Chris Lattner81cb8ca2009-07-08 18:44:05 +00001321}