blob: 468fed9cbf931b96fb33d7b3775e4e588c3c3deb [file] [log] [blame]
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001//===- FileCheck.cpp - Check that File's Contents match what is expected --===//
2//
Chandler Carruth2946cd72019-01-19 08:50:56 +00003// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00006//
7//===----------------------------------------------------------------------===//
8//
9// FileCheck does a line-by line check of a file that validates whether it
10// contains the expected content. This is useful for regression tests etc.
11//
12// This file implements most of the API that will be used by the FileCheck utility
13// as well as various unittests.
14//===----------------------------------------------------------------------===//
15
16#include "llvm/Support/FileCheck.h"
17#include "llvm/ADT/StringSet.h"
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +000018#include "llvm/Support/FormatVariadic.h"
19#include <cstdint>
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +000020#include <list>
21#include <map>
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +000022#include <tuple>
23#include <utility>
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +000024
25using namespace llvm;
26
27/// Parses the given string into the Pattern.
28///
29/// \p Prefix provides which prefix is being matched, \p SM provides the
30/// SourceMgr used for error reports, and \p LineNumber is the line number in
31/// the input file from which the pattern string was read. Returns true in
32/// case of an error, false otherwise.
33bool FileCheckPattern::ParsePattern(StringRef PatternStr, StringRef Prefix,
34 SourceMgr &SM, unsigned LineNumber,
35 const FileCheckRequest &Req) {
36 bool MatchFullLinesHere = Req.MatchFullLines && CheckTy != Check::CheckNot;
37
38 this->LineNumber = LineNumber;
39 PatternLoc = SMLoc::getFromPointer(PatternStr.data());
40
41 if (!(Req.NoCanonicalizeWhiteSpace && Req.MatchFullLines))
42 // Ignore trailing whitespace.
43 while (!PatternStr.empty() &&
44 (PatternStr.back() == ' ' || PatternStr.back() == '\t'))
45 PatternStr = PatternStr.substr(0, PatternStr.size() - 1);
46
47 // Check that there is something on the line.
48 if (PatternStr.empty() && CheckTy != Check::CheckEmpty) {
49 SM.PrintMessage(PatternLoc, SourceMgr::DK_Error,
50 "found empty check string with prefix '" + Prefix + ":'");
51 return true;
52 }
53
54 if (!PatternStr.empty() && CheckTy == Check::CheckEmpty) {
55 SM.PrintMessage(
56 PatternLoc, SourceMgr::DK_Error,
57 "found non-empty check string for empty check with prefix '" + Prefix +
58 ":'");
59 return true;
60 }
61
62 if (CheckTy == Check::CheckEmpty) {
63 RegExStr = "(\n$)";
64 return false;
65 }
66
67 // Check to see if this is a fixed string, or if it has regex pieces.
68 if (!MatchFullLinesHere &&
69 (PatternStr.size() < 2 || (PatternStr.find("{{") == StringRef::npos &&
70 PatternStr.find("[[") == StringRef::npos))) {
71 FixedStr = PatternStr;
72 return false;
73 }
74
75 if (MatchFullLinesHere) {
76 RegExStr += '^';
77 if (!Req.NoCanonicalizeWhiteSpace)
78 RegExStr += " *";
79 }
80
81 // Paren value #0 is for the fully matched string. Any new parenthesized
82 // values add from there.
83 unsigned CurParen = 1;
84
85 // Otherwise, there is at least one regex piece. Build up the regex pattern
86 // by escaping scary characters in fixed strings, building up one big regex.
87 while (!PatternStr.empty()) {
88 // RegEx matches.
89 if (PatternStr.startswith("{{")) {
90 // This is the start of a regex match. Scan for the }}.
91 size_t End = PatternStr.find("}}");
92 if (End == StringRef::npos) {
93 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
94 SourceMgr::DK_Error,
95 "found start of regex string with no end '}}'");
96 return true;
97 }
98
99 // Enclose {{}} patterns in parens just like [[]] even though we're not
100 // capturing the result for any purpose. This is required in case the
101 // expression contains an alternation like: CHECK: abc{{x|z}}def. We
102 // want this to turn into: "abc(x|z)def" not "abcx|zdef".
103 RegExStr += '(';
104 ++CurParen;
105
106 if (AddRegExToRegEx(PatternStr.substr(2, End - 2), CurParen, SM))
107 return true;
108 RegExStr += ')';
109
110 PatternStr = PatternStr.substr(End + 2);
111 continue;
112 }
113
114 // Named RegEx matches. These are of two forms: [[foo:.*]] which matches .*
115 // (or some other regex) and assigns it to the FileCheck variable 'foo'. The
116 // second form is [[foo]] which is a reference to foo. The variable name
117 // itself must be of the form "[a-zA-Z_][0-9a-zA-Z_]*", otherwise we reject
118 // it. This is to catch some common errors.
119 if (PatternStr.startswith("[[")) {
120 // Find the closing bracket pair ending the match. End is going to be an
121 // offset relative to the beginning of the match string.
122 size_t End = FindRegexVarEnd(PatternStr.substr(2), SM);
123
124 if (End == StringRef::npos) {
125 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
126 SourceMgr::DK_Error,
127 "invalid named regex reference, no ]] found");
128 return true;
129 }
130
131 StringRef MatchStr = PatternStr.substr(2, End);
132 PatternStr = PatternStr.substr(End + 4);
133
134 // Get the regex name (e.g. "foo").
135 size_t NameEnd = MatchStr.find(':');
136 StringRef Name = MatchStr.substr(0, NameEnd);
137
138 if (Name.empty()) {
139 SM.PrintMessage(SMLoc::getFromPointer(Name.data()), SourceMgr::DK_Error,
140 "invalid name in named regex: empty name");
141 return true;
142 }
143
144 // Verify that the name/expression is well formed. FileCheck currently
145 // supports @LINE, @LINE+number, @LINE-number expressions. The check here
146 // is relaxed, more strict check is performed in \c EvaluateExpression.
147 bool IsExpression = false;
148 for (unsigned i = 0, e = Name.size(); i != e; ++i) {
149 if (i == 0) {
150 if (Name[i] == '$') // Global vars start with '$'
151 continue;
152 if (Name[i] == '@') {
153 if (NameEnd != StringRef::npos) {
154 SM.PrintMessage(SMLoc::getFromPointer(Name.data()),
155 SourceMgr::DK_Error,
156 "invalid name in named regex definition");
157 return true;
158 }
159 IsExpression = true;
160 continue;
161 }
162 }
163 if (Name[i] != '_' && !isalnum(Name[i]) &&
164 (!IsExpression || (Name[i] != '+' && Name[i] != '-'))) {
165 SM.PrintMessage(SMLoc::getFromPointer(Name.data() + i),
166 SourceMgr::DK_Error, "invalid name in named regex");
167 return true;
168 }
169 }
170
171 // Name can't start with a digit.
172 if (isdigit(static_cast<unsigned char>(Name[0]))) {
173 SM.PrintMessage(SMLoc::getFromPointer(Name.data()), SourceMgr::DK_Error,
174 "invalid name in named regex");
175 return true;
176 }
177
178 // Handle [[foo]].
179 if (NameEnd == StringRef::npos) {
180 // Handle variables that were defined earlier on the same line by
181 // emitting a backreference.
182 if (VariableDefs.find(Name) != VariableDefs.end()) {
183 unsigned VarParenNum = VariableDefs[Name];
184 if (VarParenNum < 1 || VarParenNum > 9) {
185 SM.PrintMessage(SMLoc::getFromPointer(Name.data()),
186 SourceMgr::DK_Error,
187 "Can't back-reference more than 9 variables");
188 return true;
189 }
190 AddBackrefToRegEx(VarParenNum);
191 } else {
192 VariableUses.push_back(std::make_pair(Name, RegExStr.size()));
193 }
194 continue;
195 }
196
197 // Handle [[foo:.*]].
198 VariableDefs[Name] = CurParen;
199 RegExStr += '(';
200 ++CurParen;
201
202 if (AddRegExToRegEx(MatchStr.substr(NameEnd + 1), CurParen, SM))
203 return true;
204
205 RegExStr += ')';
206 }
207
208 // Handle fixed string matches.
209 // Find the end, which is the start of the next regex.
210 size_t FixedMatchEnd = PatternStr.find("{{");
211 FixedMatchEnd = std::min(FixedMatchEnd, PatternStr.find("[["));
212 RegExStr += Regex::escape(PatternStr.substr(0, FixedMatchEnd));
213 PatternStr = PatternStr.substr(FixedMatchEnd);
214 }
215
216 if (MatchFullLinesHere) {
217 if (!Req.NoCanonicalizeWhiteSpace)
218 RegExStr += " *";
219 RegExStr += '$';
220 }
221
222 return false;
223}
224
225bool FileCheckPattern::AddRegExToRegEx(StringRef RS, unsigned &CurParen, SourceMgr &SM) {
226 Regex R(RS);
227 std::string Error;
228 if (!R.isValid(Error)) {
229 SM.PrintMessage(SMLoc::getFromPointer(RS.data()), SourceMgr::DK_Error,
230 "invalid regex: " + Error);
231 return true;
232 }
233
234 RegExStr += RS.str();
235 CurParen += R.getNumMatches();
236 return false;
237}
238
239void FileCheckPattern::AddBackrefToRegEx(unsigned BackrefNum) {
240 assert(BackrefNum >= 1 && BackrefNum <= 9 && "Invalid backref number");
241 std::string Backref = std::string("\\") + std::string(1, '0' + BackrefNum);
242 RegExStr += Backref;
243}
244
245/// Evaluates expression and stores the result to \p Value.
246///
247/// Returns true on success and false when the expression has invalid syntax.
248bool FileCheckPattern::EvaluateExpression(StringRef Expr, std::string &Value) const {
249 // The only supported expression is @LINE([\+-]\d+)?
250 if (!Expr.startswith("@LINE"))
251 return false;
252 Expr = Expr.substr(StringRef("@LINE").size());
253 int Offset = 0;
254 if (!Expr.empty()) {
255 if (Expr[0] == '+')
256 Expr = Expr.substr(1);
257 else if (Expr[0] != '-')
258 return false;
259 if (Expr.getAsInteger(10, Offset))
260 return false;
261 }
262 Value = llvm::itostr(LineNumber + Offset);
263 return true;
264}
265
266/// Matches the pattern string against the input buffer \p Buffer
267///
268/// This returns the position that is matched or npos if there is no match. If
269/// there is a match, the size of the matched string is returned in \p
270/// MatchLen.
271///
272/// The \p VariableTable StringMap provides the current values of filecheck
273/// variables and is updated if this match defines new values.
274size_t FileCheckPattern::Match(StringRef Buffer, size_t &MatchLen,
275 StringMap<StringRef> &VariableTable) const {
276 // If this is the EOF pattern, match it immediately.
277 if (CheckTy == Check::CheckEOF) {
278 MatchLen = 0;
279 return Buffer.size();
280 }
281
282 // If this is a fixed string pattern, just match it now.
283 if (!FixedStr.empty()) {
284 MatchLen = FixedStr.size();
285 return Buffer.find(FixedStr);
286 }
287
288 // Regex match.
289
290 // If there are variable uses, we need to create a temporary string with the
291 // actual value.
292 StringRef RegExToMatch = RegExStr;
293 std::string TmpStr;
294 if (!VariableUses.empty()) {
295 TmpStr = RegExStr;
296
297 unsigned InsertOffset = 0;
298 for (const auto &VariableUse : VariableUses) {
299 std::string Value;
300
301 if (VariableUse.first[0] == '@') {
302 if (!EvaluateExpression(VariableUse.first, Value))
303 return StringRef::npos;
304 } else {
305 StringMap<StringRef>::iterator it =
306 VariableTable.find(VariableUse.first);
307 // If the variable is undefined, return an error.
308 if (it == VariableTable.end())
309 return StringRef::npos;
310
311 // Look up the value and escape it so that we can put it into the regex.
312 Value += Regex::escape(it->second);
313 }
314
315 // Plop it into the regex at the adjusted offset.
316 TmpStr.insert(TmpStr.begin() + VariableUse.second + InsertOffset,
317 Value.begin(), Value.end());
318 InsertOffset += Value.size();
319 }
320
321 // Match the newly constructed regex.
322 RegExToMatch = TmpStr;
323 }
324
325 SmallVector<StringRef, 4> MatchInfo;
326 if (!Regex(RegExToMatch, Regex::Newline).match(Buffer, &MatchInfo))
327 return StringRef::npos;
328
329 // Successful regex match.
330 assert(!MatchInfo.empty() && "Didn't get any match");
331 StringRef FullMatch = MatchInfo[0];
332
333 // If this defines any variables, remember their values.
334 for (const auto &VariableDef : VariableDefs) {
335 assert(VariableDef.second < MatchInfo.size() && "Internal paren error");
336 VariableTable[VariableDef.first] = MatchInfo[VariableDef.second];
337 }
338
339 // Like CHECK-NEXT, CHECK-EMPTY's match range is considered to start after
340 // the required preceding newline, which is consumed by the pattern in the
341 // case of CHECK-EMPTY but not CHECK-NEXT.
342 size_t MatchStartSkip = CheckTy == Check::CheckEmpty;
343 MatchLen = FullMatch.size() - MatchStartSkip;
344 return FullMatch.data() - Buffer.data() + MatchStartSkip;
345}
346
347
348/// Computes an arbitrary estimate for the quality of matching this pattern at
349/// the start of \p Buffer; a distance of zero should correspond to a perfect
350/// match.
351unsigned
352FileCheckPattern::ComputeMatchDistance(StringRef Buffer,
353 const StringMap<StringRef> &VariableTable) const {
354 // Just compute the number of matching characters. For regular expressions, we
355 // just compare against the regex itself and hope for the best.
356 //
357 // FIXME: One easy improvement here is have the regex lib generate a single
358 // example regular expression which matches, and use that as the example
359 // string.
360 StringRef ExampleString(FixedStr);
361 if (ExampleString.empty())
362 ExampleString = RegExStr;
363
364 // Only compare up to the first line in the buffer, or the string size.
365 StringRef BufferPrefix = Buffer.substr(0, ExampleString.size());
366 BufferPrefix = BufferPrefix.split('\n').first;
367 return BufferPrefix.edit_distance(ExampleString);
368}
369
370void FileCheckPattern::PrintVariableUses(const SourceMgr &SM, StringRef Buffer,
371 const StringMap<StringRef> &VariableTable,
372 SMRange MatchRange) const {
373 // If this was a regular expression using variables, print the current
374 // variable values.
375 if (!VariableUses.empty()) {
376 for (const auto &VariableUse : VariableUses) {
377 SmallString<256> Msg;
378 raw_svector_ostream OS(Msg);
379 StringRef Var = VariableUse.first;
380 if (Var[0] == '@') {
381 std::string Value;
382 if (EvaluateExpression(Var, Value)) {
383 OS << "with expression \"";
384 OS.write_escaped(Var) << "\" equal to \"";
385 OS.write_escaped(Value) << "\"";
386 } else {
387 OS << "uses incorrect expression \"";
388 OS.write_escaped(Var) << "\"";
389 }
390 } else {
391 StringMap<StringRef>::const_iterator it = VariableTable.find(Var);
392
393 // Check for undefined variable references.
394 if (it == VariableTable.end()) {
395 OS << "uses undefined variable \"";
396 OS.write_escaped(Var) << "\"";
397 } else {
398 OS << "with variable \"";
399 OS.write_escaped(Var) << "\" equal to \"";
400 OS.write_escaped(it->second) << "\"";
401 }
402 }
403
404 if (MatchRange.isValid())
405 SM.PrintMessage(MatchRange.Start, SourceMgr::DK_Note, OS.str(),
406 {MatchRange});
407 else
408 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()),
409 SourceMgr::DK_Note, OS.str());
410 }
411 }
412}
413
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000414static SMRange ProcessMatchResult(FileCheckDiag::MatchType MatchTy,
415 const SourceMgr &SM, SMLoc Loc,
416 Check::FileCheckType CheckTy,
417 StringRef Buffer, size_t Pos, size_t Len,
Joel E. Denny7df86962018-12-18 00:03:03 +0000418 std::vector<FileCheckDiag> *Diags,
419 bool AdjustPrevDiag = false) {
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000420 SMLoc Start = SMLoc::getFromPointer(Buffer.data() + Pos);
421 SMLoc End = SMLoc::getFromPointer(Buffer.data() + Pos + Len);
422 SMRange Range(Start, End);
Joel E. Denny96f0e842018-12-18 00:03:36 +0000423 if (Diags) {
Joel E. Denny7df86962018-12-18 00:03:03 +0000424 if (AdjustPrevDiag)
425 Diags->rbegin()->MatchTy = MatchTy;
426 else
427 Diags->emplace_back(SM, CheckTy, Loc, MatchTy, Range);
428 }
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000429 return Range;
430}
431
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000432void FileCheckPattern::PrintFuzzyMatch(
433 const SourceMgr &SM, StringRef Buffer,
Joel E. Denny2c007c82018-12-18 00:02:04 +0000434 const StringMap<StringRef> &VariableTable,
435 std::vector<FileCheckDiag> *Diags) const {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000436 // Attempt to find the closest/best fuzzy match. Usually an error happens
437 // because some string in the output didn't exactly match. In these cases, we
438 // would like to show the user a best guess at what "should have" matched, to
439 // save them having to actually check the input manually.
440 size_t NumLinesForward = 0;
441 size_t Best = StringRef::npos;
442 double BestQuality = 0;
443
444 // Use an arbitrary 4k limit on how far we will search.
445 for (size_t i = 0, e = std::min(size_t(4096), Buffer.size()); i != e; ++i) {
446 if (Buffer[i] == '\n')
447 ++NumLinesForward;
448
449 // Patterns have leading whitespace stripped, so skip whitespace when
450 // looking for something which looks like a pattern.
451 if (Buffer[i] == ' ' || Buffer[i] == '\t')
452 continue;
453
454 // Compute the "quality" of this match as an arbitrary combination of the
455 // match distance and the number of lines skipped to get to this match.
456 unsigned Distance = ComputeMatchDistance(Buffer.substr(i), VariableTable);
457 double Quality = Distance + (NumLinesForward / 100.);
458
459 if (Quality < BestQuality || Best == StringRef::npos) {
460 Best = i;
461 BestQuality = Quality;
462 }
463 }
464
465 // Print the "possible intended match here" line if we found something
466 // reasonable and not equal to what we showed in the "scanning from here"
467 // line.
468 if (Best && Best != StringRef::npos && BestQuality < 50) {
Joel E. Denny2c007c82018-12-18 00:02:04 +0000469 SMRange MatchRange =
470 ProcessMatchResult(FileCheckDiag::MatchFuzzy, SM, getLoc(),
471 getCheckTy(), Buffer, Best, 0, Diags);
472 SM.PrintMessage(MatchRange.Start, SourceMgr::DK_Note,
473 "possible intended match here");
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000474
475 // FIXME: If we wanted to be really friendly we would show why the match
476 // failed, as it can be hard to spot simple one character differences.
477 }
478}
479
480/// Finds the closing sequence of a regex variable usage or definition.
481///
482/// \p Str has to point in the beginning of the definition (right after the
483/// opening sequence). Returns the offset of the closing sequence within Str,
484/// or npos if it was not found.
485size_t FileCheckPattern::FindRegexVarEnd(StringRef Str, SourceMgr &SM) {
486 // Offset keeps track of the current offset within the input Str
487 size_t Offset = 0;
488 // [...] Nesting depth
489 size_t BracketDepth = 0;
490
491 while (!Str.empty()) {
492 if (Str.startswith("]]") && BracketDepth == 0)
493 return Offset;
494 if (Str[0] == '\\') {
495 // Backslash escapes the next char within regexes, so skip them both.
496 Str = Str.substr(2);
497 Offset += 2;
498 } else {
499 switch (Str[0]) {
500 default:
501 break;
502 case '[':
503 BracketDepth++;
504 break;
505 case ']':
506 if (BracketDepth == 0) {
507 SM.PrintMessage(SMLoc::getFromPointer(Str.data()),
508 SourceMgr::DK_Error,
509 "missing closing \"]\" for regex variable");
510 exit(1);
511 }
512 BracketDepth--;
513 break;
514 }
515 Str = Str.substr(1);
516 Offset++;
517 }
518 }
519
520 return StringRef::npos;
521}
522
523/// Canonicalize whitespaces in the file. Line endings are replaced with
524/// UNIX-style '\n'.
525StringRef
526llvm::FileCheck::CanonicalizeFile(MemoryBuffer &MB,
527 SmallVectorImpl<char> &OutputBuffer) {
528 OutputBuffer.reserve(MB.getBufferSize());
529
530 for (const char *Ptr = MB.getBufferStart(), *End = MB.getBufferEnd();
531 Ptr != End; ++Ptr) {
532 // Eliminate trailing dosish \r.
533 if (Ptr <= End - 2 && Ptr[0] == '\r' && Ptr[1] == '\n') {
534 continue;
535 }
536
537 // If current char is not a horizontal whitespace or if horizontal
538 // whitespace canonicalization is disabled, dump it to output as is.
539 if (Req.NoCanonicalizeWhiteSpace || (*Ptr != ' ' && *Ptr != '\t')) {
540 OutputBuffer.push_back(*Ptr);
541 continue;
542 }
543
544 // Otherwise, add one space and advance over neighboring space.
545 OutputBuffer.push_back(' ');
546 while (Ptr + 1 != End && (Ptr[1] == ' ' || Ptr[1] == '\t'))
547 ++Ptr;
548 }
549
550 // Add a null byte and then return all but that byte.
551 OutputBuffer.push_back('\0');
552 return StringRef(OutputBuffer.data(), OutputBuffer.size() - 1);
553}
554
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000555FileCheckDiag::FileCheckDiag(const SourceMgr &SM,
556 const Check::FileCheckType &CheckTy,
557 SMLoc CheckLoc, MatchType MatchTy,
558 SMRange InputRange)
559 : CheckTy(CheckTy), MatchTy(MatchTy) {
560 auto Start = SM.getLineAndColumn(InputRange.Start);
561 auto End = SM.getLineAndColumn(InputRange.End);
562 InputStartLine = Start.first;
563 InputStartCol = Start.second;
564 InputEndLine = End.first;
565 InputEndCol = End.second;
566 Start = SM.getLineAndColumn(CheckLoc);
567 CheckLine = Start.first;
568 CheckCol = Start.second;
569}
570
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000571static bool IsPartOfWord(char c) {
572 return (isalnum(c) || c == '-' || c == '_');
573}
574
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000575Check::FileCheckType &Check::FileCheckType::setCount(int C) {
Fedor Sergeev8477a3e2018-11-13 01:09:53 +0000576 assert(Count > 0 && "zero and negative counts are not supported");
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000577 assert((C == 1 || Kind == CheckPlain) &&
578 "count supported only for plain CHECK directives");
579 Count = C;
580 return *this;
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000581}
582
583// Get a description of the type.
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000584std::string Check::FileCheckType::getDescription(StringRef Prefix) const {
585 switch (Kind) {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000586 case Check::CheckNone:
587 return "invalid";
588 case Check::CheckPlain:
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000589 if (Count > 1)
590 return Prefix.str() + "-COUNT";
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000591 return Prefix;
592 case Check::CheckNext:
593 return Prefix.str() + "-NEXT";
594 case Check::CheckSame:
595 return Prefix.str() + "-SAME";
596 case Check::CheckNot:
597 return Prefix.str() + "-NOT";
598 case Check::CheckDAG:
599 return Prefix.str() + "-DAG";
600 case Check::CheckLabel:
601 return Prefix.str() + "-LABEL";
602 case Check::CheckEmpty:
603 return Prefix.str() + "-EMPTY";
604 case Check::CheckEOF:
605 return "implicit EOF";
606 case Check::CheckBadNot:
607 return "bad NOT";
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000608 case Check::CheckBadCount:
609 return "bad COUNT";
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000610 }
611 llvm_unreachable("unknown FileCheckType");
612}
613
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000614static std::pair<Check::FileCheckType, StringRef>
615FindCheckType(StringRef Buffer, StringRef Prefix) {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000616 if (Buffer.size() <= Prefix.size())
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000617 return {Check::CheckNone, StringRef()};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000618
619 char NextChar = Buffer[Prefix.size()];
620
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000621 StringRef Rest = Buffer.drop_front(Prefix.size() + 1);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000622 // Verify that the : is present after the prefix.
623 if (NextChar == ':')
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000624 return {Check::CheckPlain, Rest};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000625
626 if (NextChar != '-')
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000627 return {Check::CheckNone, StringRef()};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000628
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000629 if (Rest.consume_front("COUNT-")) {
630 int64_t Count;
631 if (Rest.consumeInteger(10, Count))
632 // Error happened in parsing integer.
633 return {Check::CheckBadCount, Rest};
634 if (Count <= 0 || Count > INT32_MAX)
635 return {Check::CheckBadCount, Rest};
636 if (!Rest.consume_front(":"))
637 return {Check::CheckBadCount, Rest};
638 return {Check::FileCheckType(Check::CheckPlain).setCount(Count), Rest};
639 }
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000640
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000641 if (Rest.consume_front("NEXT:"))
642 return {Check::CheckNext, Rest};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000643
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000644 if (Rest.consume_front("SAME:"))
645 return {Check::CheckSame, Rest};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000646
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000647 if (Rest.consume_front("NOT:"))
648 return {Check::CheckNot, Rest};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000649
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000650 if (Rest.consume_front("DAG:"))
651 return {Check::CheckDAG, Rest};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000652
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000653 if (Rest.consume_front("LABEL:"))
654 return {Check::CheckLabel, Rest};
655
656 if (Rest.consume_front("EMPTY:"))
657 return {Check::CheckEmpty, Rest};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000658
659 // You can't combine -NOT with another suffix.
660 if (Rest.startswith("DAG-NOT:") || Rest.startswith("NOT-DAG:") ||
661 Rest.startswith("NEXT-NOT:") || Rest.startswith("NOT-NEXT:") ||
662 Rest.startswith("SAME-NOT:") || Rest.startswith("NOT-SAME:") ||
663 Rest.startswith("EMPTY-NOT:") || Rest.startswith("NOT-EMPTY:"))
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000664 return {Check::CheckBadNot, Rest};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000665
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000666 return {Check::CheckNone, Rest};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000667}
668
669// From the given position, find the next character after the word.
670static size_t SkipWord(StringRef Str, size_t Loc) {
671 while (Loc < Str.size() && IsPartOfWord(Str[Loc]))
672 ++Loc;
673 return Loc;
674}
675
676/// Search the buffer for the first prefix in the prefix regular expression.
677///
678/// This searches the buffer using the provided regular expression, however it
679/// enforces constraints beyond that:
680/// 1) The found prefix must not be a suffix of something that looks like
681/// a valid prefix.
682/// 2) The found prefix must be followed by a valid check type suffix using \c
683/// FindCheckType above.
684///
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000685/// Returns a pair of StringRefs into the Buffer, which combines:
686/// - the first match of the regular expression to satisfy these two is
687/// returned,
688/// otherwise an empty StringRef is returned to indicate failure.
689/// - buffer rewound to the location right after parsed suffix, for parsing
690/// to continue from
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000691///
692/// If this routine returns a valid prefix, it will also shrink \p Buffer to
693/// start at the beginning of the returned prefix, increment \p LineNumber for
694/// each new line consumed from \p Buffer, and set \p CheckTy to the type of
695/// check found by examining the suffix.
696///
697/// If no valid prefix is found, the state of Buffer, LineNumber, and CheckTy
698/// is unspecified.
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000699static std::pair<StringRef, StringRef>
700FindFirstMatchingPrefix(Regex &PrefixRE, StringRef &Buffer,
701 unsigned &LineNumber, Check::FileCheckType &CheckTy) {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000702 SmallVector<StringRef, 2> Matches;
703
704 while (!Buffer.empty()) {
705 // Find the first (longest) match using the RE.
706 if (!PrefixRE.match(Buffer, &Matches))
707 // No match at all, bail.
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000708 return {StringRef(), StringRef()};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000709
710 StringRef Prefix = Matches[0];
711 Matches.clear();
712
713 assert(Prefix.data() >= Buffer.data() &&
714 Prefix.data() < Buffer.data() + Buffer.size() &&
715 "Prefix doesn't start inside of buffer!");
716 size_t Loc = Prefix.data() - Buffer.data();
717 StringRef Skipped = Buffer.substr(0, Loc);
718 Buffer = Buffer.drop_front(Loc);
719 LineNumber += Skipped.count('\n');
720
721 // Check that the matched prefix isn't a suffix of some other check-like
722 // word.
723 // FIXME: This is a very ad-hoc check. it would be better handled in some
724 // other way. Among other things it seems hard to distinguish between
725 // intentional and unintentional uses of this feature.
726 if (Skipped.empty() || !IsPartOfWord(Skipped.back())) {
727 // Now extract the type.
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000728 StringRef AfterSuffix;
729 std::tie(CheckTy, AfterSuffix) = FindCheckType(Buffer, Prefix);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000730
731 // If we've found a valid check type for this prefix, we're done.
732 if (CheckTy != Check::CheckNone)
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000733 return {Prefix, AfterSuffix};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000734 }
735
736 // If we didn't successfully find a prefix, we need to skip this invalid
737 // prefix and continue scanning. We directly skip the prefix that was
738 // matched and any additional parts of that check-like word.
739 Buffer = Buffer.drop_front(SkipWord(Buffer, Prefix.size()));
740 }
741
742 // We ran out of buffer while skipping partial matches so give up.
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000743 return {StringRef(), StringRef()};
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000744}
745
746/// Read the check file, which specifies the sequence of expected strings.
747///
748/// The strings are added to the CheckStrings vector. Returns true in case of
749/// an error, false otherwise.
750bool llvm::FileCheck::ReadCheckFile(SourceMgr &SM, StringRef Buffer,
751 Regex &PrefixRE,
752 std::vector<FileCheckString> &CheckStrings) {
753 std::vector<FileCheckPattern> ImplicitNegativeChecks;
754 for (const auto &PatternString : Req.ImplicitCheckNot) {
755 // Create a buffer with fake command line content in order to display the
756 // command line option responsible for the specific implicit CHECK-NOT.
757 std::string Prefix = "-implicit-check-not='";
758 std::string Suffix = "'";
759 std::unique_ptr<MemoryBuffer> CmdLine = MemoryBuffer::getMemBufferCopy(
760 Prefix + PatternString + Suffix, "command line");
761
762 StringRef PatternInBuffer =
763 CmdLine->getBuffer().substr(Prefix.size(), PatternString.size());
764 SM.AddNewSourceBuffer(std::move(CmdLine), SMLoc());
765
766 ImplicitNegativeChecks.push_back(FileCheckPattern(Check::CheckNot));
767 ImplicitNegativeChecks.back().ParsePattern(PatternInBuffer,
768 "IMPLICIT-CHECK", SM, 0, Req);
769 }
770
771 std::vector<FileCheckPattern> DagNotMatches = ImplicitNegativeChecks;
772
773 // LineNumber keeps track of the line on which CheckPrefix instances are
774 // found.
775 unsigned LineNumber = 1;
776
777 while (1) {
778 Check::FileCheckType CheckTy;
779
780 // See if a prefix occurs in the memory buffer.
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000781 StringRef UsedPrefix;
782 StringRef AfterSuffix;
783 std::tie(UsedPrefix, AfterSuffix) =
784 FindFirstMatchingPrefix(PrefixRE, Buffer, LineNumber, CheckTy);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000785 if (UsedPrefix.empty())
786 break;
787 assert(UsedPrefix.data() == Buffer.data() &&
788 "Failed to move Buffer's start forward, or pointed prefix outside "
789 "of the buffer!");
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000790 assert(AfterSuffix.data() >= Buffer.data() &&
791 AfterSuffix.data() < Buffer.data() + Buffer.size() &&
792 "Parsing after suffix doesn't start inside of buffer!");
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000793
794 // Location to use for error messages.
795 const char *UsedPrefixStart = UsedPrefix.data();
796
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000797 // Skip the buffer to the end of parsed suffix (or just prefix, if no good
798 // suffix was processed).
799 Buffer = AfterSuffix.empty() ? Buffer.drop_front(UsedPrefix.size())
800 : AfterSuffix;
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000801
802 // Complain about useful-looking but unsupported suffixes.
803 if (CheckTy == Check::CheckBadNot) {
804 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Error,
805 "unsupported -NOT combo on prefix '" + UsedPrefix + "'");
806 return true;
807 }
808
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000809 // Complain about invalid count specification.
810 if (CheckTy == Check::CheckBadCount) {
811 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Error,
812 "invalid count in -COUNT specification on prefix '" +
813 UsedPrefix + "'");
814 return true;
815 }
816
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000817 // Okay, we found the prefix, yay. Remember the rest of the line, but ignore
818 // leading whitespace.
819 if (!(Req.NoCanonicalizeWhiteSpace && Req.MatchFullLines))
820 Buffer = Buffer.substr(Buffer.find_first_not_of(" \t"));
821
822 // Scan ahead to the end of line.
823 size_t EOL = Buffer.find_first_of("\n\r");
824
825 // Remember the location of the start of the pattern, for diagnostics.
826 SMLoc PatternLoc = SMLoc::getFromPointer(Buffer.data());
827
828 // Parse the pattern.
829 FileCheckPattern P(CheckTy);
830 if (P.ParsePattern(Buffer.substr(0, EOL), UsedPrefix, SM, LineNumber, Req))
831 return true;
832
833 // Verify that CHECK-LABEL lines do not define or use variables
834 if ((CheckTy == Check::CheckLabel) && P.hasVariable()) {
835 SM.PrintMessage(
836 SMLoc::getFromPointer(UsedPrefixStart), SourceMgr::DK_Error,
837 "found '" + UsedPrefix + "-LABEL:'"
838 " with variable definition or use");
839 return true;
840 }
841
842 Buffer = Buffer.substr(EOL);
843
844 // Verify that CHECK-NEXT/SAME/EMPTY lines have at least one CHECK line before them.
845 if ((CheckTy == Check::CheckNext || CheckTy == Check::CheckSame ||
846 CheckTy == Check::CheckEmpty) &&
847 CheckStrings.empty()) {
848 StringRef Type = CheckTy == Check::CheckNext
849 ? "NEXT"
850 : CheckTy == Check::CheckEmpty ? "EMPTY" : "SAME";
851 SM.PrintMessage(SMLoc::getFromPointer(UsedPrefixStart),
852 SourceMgr::DK_Error,
853 "found '" + UsedPrefix + "-" + Type +
854 "' without previous '" + UsedPrefix + ": line");
855 return true;
856 }
857
858 // Handle CHECK-DAG/-NOT.
859 if (CheckTy == Check::CheckDAG || CheckTy == Check::CheckNot) {
860 DagNotMatches.push_back(P);
861 continue;
862 }
863
864 // Okay, add the string we captured to the output vector and move on.
865 CheckStrings.emplace_back(P, UsedPrefix, PatternLoc);
866 std::swap(DagNotMatches, CheckStrings.back().DagNotStrings);
867 DagNotMatches = ImplicitNegativeChecks;
868 }
869
870 // Add an EOF pattern for any trailing CHECK-DAG/-NOTs, and use the first
871 // prefix as a filler for the error message.
872 if (!DagNotMatches.empty()) {
873 CheckStrings.emplace_back(FileCheckPattern(Check::CheckEOF), *Req.CheckPrefixes.begin(),
874 SMLoc::getFromPointer(Buffer.data()));
875 std::swap(DagNotMatches, CheckStrings.back().DagNotStrings);
876 }
877
878 if (CheckStrings.empty()) {
879 errs() << "error: no check strings found with prefix"
880 << (Req.CheckPrefixes.size() > 1 ? "es " : " ");
881 auto I = Req.CheckPrefixes.begin();
882 auto E = Req.CheckPrefixes.end();
883 if (I != E) {
884 errs() << "\'" << *I << ":'";
885 ++I;
886 }
887 for (; I != E; ++I)
888 errs() << ", \'" << *I << ":'";
889
890 errs() << '\n';
891 return true;
892 }
893
894 return false;
895}
896
897static void PrintMatch(bool ExpectedMatch, const SourceMgr &SM,
898 StringRef Prefix, SMLoc Loc, const FileCheckPattern &Pat,
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000899 int MatchedCount, StringRef Buffer,
900 StringMap<StringRef> &VariableTable, size_t MatchPos,
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +0000901 size_t MatchLen, const FileCheckRequest &Req,
902 std::vector<FileCheckDiag> *Diags) {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000903 if (ExpectedMatch) {
904 if (!Req.Verbose)
905 return;
906 if (!Req.VerboseVerbose && Pat.getCheckTy() == Check::CheckEOF)
907 return;
908 }
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +0000909 SMRange MatchRange = ProcessMatchResult(
Joel E. Dennye2afb612018-12-18 00:03:51 +0000910 ExpectedMatch ? FileCheckDiag::MatchFoundAndExpected
911 : FileCheckDiag::MatchFoundButExcluded,
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +0000912 SM, Loc, Pat.getCheckTy(), Buffer, MatchPos, MatchLen, Diags);
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000913 std::string Message = formatv("{0}: {1} string found in input",
914 Pat.getCheckTy().getDescription(Prefix),
915 (ExpectedMatch ? "expected" : "excluded"))
916 .str();
917 if (Pat.getCount() > 1)
918 Message += formatv(" ({0} out of {1})", MatchedCount, Pat.getCount()).str();
919
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000920 SM.PrintMessage(
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000921 Loc, ExpectedMatch ? SourceMgr::DK_Remark : SourceMgr::DK_Error, Message);
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +0000922 SM.PrintMessage(MatchRange.Start, SourceMgr::DK_Note, "found here",
923 {MatchRange});
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000924 Pat.PrintVariableUses(SM, Buffer, VariableTable, MatchRange);
925}
926
927static void PrintMatch(bool ExpectedMatch, const SourceMgr &SM,
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000928 const FileCheckString &CheckStr, int MatchedCount,
929 StringRef Buffer, StringMap<StringRef> &VariableTable,
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +0000930 size_t MatchPos, size_t MatchLen, FileCheckRequest &Req,
931 std::vector<FileCheckDiag> *Diags) {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000932 PrintMatch(ExpectedMatch, SM, CheckStr.Prefix, CheckStr.Loc, CheckStr.Pat,
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +0000933 MatchedCount, Buffer, VariableTable, MatchPos, MatchLen, Req,
934 Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000935}
936
937static void PrintNoMatch(bool ExpectedMatch, const SourceMgr &SM,
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000938 StringRef Prefix, SMLoc Loc,
939 const FileCheckPattern &Pat, int MatchedCount,
940 StringRef Buffer, StringMap<StringRef> &VariableTable,
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000941 bool VerboseVerbose,
942 std::vector<FileCheckDiag> *Diags) {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000943 if (!ExpectedMatch && !VerboseVerbose)
944 return;
945
946 // Otherwise, we have an error, emit an error message.
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000947 std::string Message = formatv("{0}: {1} string not found in input",
948 Pat.getCheckTy().getDescription(Prefix),
949 (ExpectedMatch ? "expected" : "excluded"))
950 .str();
951 if (Pat.getCount() > 1)
952 Message += formatv(" ({0} out of {1})", MatchedCount, Pat.getCount()).str();
953
954 SM.PrintMessage(
955 Loc, ExpectedMatch ? SourceMgr::DK_Error : SourceMgr::DK_Remark, Message);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000956
957 // Print the "scanning from here" line. If the current position is at the
958 // end of a line, advance to the start of the next line.
959 Buffer = Buffer.substr(Buffer.find_first_not_of(" \t\n\r"));
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000960 SMRange SearchRange = ProcessMatchResult(
961 ExpectedMatch ? FileCheckDiag::MatchNoneButExpected
Joel E. Denny96f0e842018-12-18 00:03:36 +0000962 : FileCheckDiag::MatchNoneAndExcluded,
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000963 SM, Loc, Pat.getCheckTy(), Buffer, 0, Buffer.size(), Diags);
964 SM.PrintMessage(SearchRange.Start, SourceMgr::DK_Note, "scanning from here");
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000965
966 // Allow the pattern to print additional information if desired.
967 Pat.PrintVariableUses(SM, Buffer, VariableTable);
Joel E. Denny96f0e842018-12-18 00:03:36 +0000968
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000969 if (ExpectedMatch)
Joel E. Denny2c007c82018-12-18 00:02:04 +0000970 Pat.PrintFuzzyMatch(SM, Buffer, VariableTable, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000971}
972
973static void PrintNoMatch(bool ExpectedMatch, const SourceMgr &SM,
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +0000974 const FileCheckString &CheckStr, int MatchedCount,
975 StringRef Buffer, StringMap<StringRef> &VariableTable,
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000976 bool VerboseVerbose,
977 std::vector<FileCheckDiag> *Diags) {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000978 PrintNoMatch(ExpectedMatch, SM, CheckStr.Prefix, CheckStr.Loc, CheckStr.Pat,
Joel E. Denny3c5d2672018-12-18 00:01:39 +0000979 MatchedCount, Buffer, VariableTable, VerboseVerbose, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +0000980}
981
982/// Count the number of newlines in the specified range.
983static unsigned CountNumNewlinesBetween(StringRef Range,
984 const char *&FirstNewLine) {
985 unsigned NumNewLines = 0;
986 while (1) {
987 // Scan for newline.
988 Range = Range.substr(Range.find_first_of("\n\r"));
989 if (Range.empty())
990 return NumNewLines;
991
992 ++NumNewLines;
993
994 // Handle \n\r and \r\n as a single newline.
995 if (Range.size() > 1 && (Range[1] == '\n' || Range[1] == '\r') &&
996 (Range[0] != Range[1]))
997 Range = Range.substr(1);
998 Range = Range.substr(1);
999
1000 if (NumNewLines == 1)
1001 FirstNewLine = Range.begin();
1002 }
1003}
1004
1005/// Match check string and its "not strings" and/or "dag strings".
1006size_t FileCheckString::Check(const SourceMgr &SM, StringRef Buffer,
Joel E. Denny3c5d2672018-12-18 00:01:39 +00001007 bool IsLabelScanMode, size_t &MatchLen,
1008 StringMap<StringRef> &VariableTable,
1009 FileCheckRequest &Req,
1010 std::vector<FileCheckDiag> *Diags) const {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001011 size_t LastPos = 0;
1012 std::vector<const FileCheckPattern *> NotStrings;
1013
1014 // 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).
Joel E. Denny3c5d2672018-12-18 00:01:39 +00001020 LastPos = CheckDag(SM, Buffer, NotStrings, VariableTable, Req, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001021 if (LastPos == StringRef::npos)
1022 return StringRef::npos;
1023 }
1024
1025 // Match itself from the last position after matching CHECK-DAG.
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001026 size_t LastMatchEnd = LastPos;
1027 size_t FirstMatchPos = 0;
1028 // Go match the pattern Count times. Majority of patterns only match with
1029 // count 1 though.
1030 assert(Pat.getCount() != 0 && "pattern count can not be zero");
1031 for (int i = 1; i <= Pat.getCount(); i++) {
1032 StringRef MatchBuffer = Buffer.substr(LastMatchEnd);
1033 size_t CurrentMatchLen;
1034 // get a match at current start point
1035 size_t MatchPos = Pat.Match(MatchBuffer, CurrentMatchLen, VariableTable);
1036 if (i == 1)
1037 FirstMatchPos = LastPos + MatchPos;
1038
1039 // report
1040 if (MatchPos == StringRef::npos) {
1041 PrintNoMatch(true, SM, *this, i, MatchBuffer, VariableTable,
Joel E. Denny3c5d2672018-12-18 00:01:39 +00001042 Req.VerboseVerbose, Diags);
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001043 return StringRef::npos;
1044 }
1045 PrintMatch(true, SM, *this, i, MatchBuffer, VariableTable, MatchPos,
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +00001046 CurrentMatchLen, Req, Diags);
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001047
1048 // move start point after the match
1049 LastMatchEnd += MatchPos + CurrentMatchLen;
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001050 }
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001051 // Full match len counts from first match pos.
1052 MatchLen = LastMatchEnd - FirstMatchPos;
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001053
1054 // Similar to the above, in "label-scan mode" we can't yet handle CHECK-NEXT
1055 // or CHECK-NOT
1056 if (!IsLabelScanMode) {
Joel E. Dennycadfcef2018-12-18 00:02:22 +00001057 size_t MatchPos = FirstMatchPos - LastPos;
1058 StringRef MatchBuffer = Buffer.substr(LastPos);
1059 StringRef SkippedRegion = Buffer.substr(LastPos, MatchPos);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001060
1061 // If this check is a "CHECK-NEXT", verify that the previous match was on
1062 // the previous line (i.e. that there is one newline between them).
Joel E. Dennycadfcef2018-12-18 00:02:22 +00001063 if (CheckNext(SM, SkippedRegion)) {
Joel E. Dennye2afb612018-12-18 00:03:51 +00001064 ProcessMatchResult(FileCheckDiag::MatchFoundButWrongLine, SM, Loc,
Joel E. Dennycadfcef2018-12-18 00:02:22 +00001065 Pat.getCheckTy(), MatchBuffer, MatchPos, MatchLen,
Joel E. Denny7df86962018-12-18 00:03:03 +00001066 Diags, Req.Verbose);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001067 return StringRef::npos;
Joel E. Dennycadfcef2018-12-18 00:02:22 +00001068 }
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001069
1070 // If this check is a "CHECK-SAME", verify that the previous match was on
1071 // the same line (i.e. that there is no newline between them).
Joel E. Dennycadfcef2018-12-18 00:02:22 +00001072 if (CheckSame(SM, SkippedRegion)) {
Joel E. Dennye2afb612018-12-18 00:03:51 +00001073 ProcessMatchResult(FileCheckDiag::MatchFoundButWrongLine, SM, Loc,
Joel E. Dennycadfcef2018-12-18 00:02:22 +00001074 Pat.getCheckTy(), MatchBuffer, MatchPos, MatchLen,
Joel E. Denny7df86962018-12-18 00:03:03 +00001075 Diags, Req.Verbose);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001076 return StringRef::npos;
Joel E. Dennycadfcef2018-12-18 00:02:22 +00001077 }
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001078
1079 // If this match had "not strings", verify that they don't exist in the
1080 // skipped region.
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +00001081 if (CheckNot(SM, SkippedRegion, NotStrings, VariableTable, Req, Diags))
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001082 return StringRef::npos;
1083 }
1084
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001085 return FirstMatchPos;
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001086}
1087
1088/// Verify there is a single line in the given buffer.
1089bool FileCheckString::CheckNext(const SourceMgr &SM, StringRef Buffer) const {
1090 if (Pat.getCheckTy() != Check::CheckNext &&
1091 Pat.getCheckTy() != Check::CheckEmpty)
1092 return false;
1093
1094 Twine CheckName =
1095 Prefix +
1096 Twine(Pat.getCheckTy() == Check::CheckEmpty ? "-EMPTY" : "-NEXT");
1097
1098 // Count the number of newlines between the previous match and this one.
1099 assert(Buffer.data() !=
1100 SM.getMemoryBuffer(SM.FindBufferContainingLoc(
1101 SMLoc::getFromPointer(Buffer.data())))
1102 ->getBufferStart() &&
1103 "CHECK-NEXT and CHECK-EMPTY can't be the first check in a file");
1104
1105 const char *FirstNewLine = nullptr;
1106 unsigned NumNewLines = CountNumNewlinesBetween(Buffer, FirstNewLine);
1107
1108 if (NumNewLines == 0) {
1109 SM.PrintMessage(Loc, SourceMgr::DK_Error,
1110 CheckName + ": is on the same line as previous match");
1111 SM.PrintMessage(SMLoc::getFromPointer(Buffer.end()), SourceMgr::DK_Note,
1112 "'next' match was here");
1113 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Note,
1114 "previous match ended here");
1115 return true;
1116 }
1117
1118 if (NumNewLines != 1) {
1119 SM.PrintMessage(Loc, SourceMgr::DK_Error,
1120 CheckName +
1121 ": is not on the line after the previous match");
1122 SM.PrintMessage(SMLoc::getFromPointer(Buffer.end()), SourceMgr::DK_Note,
1123 "'next' match was here");
1124 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Note,
1125 "previous match ended here");
1126 SM.PrintMessage(SMLoc::getFromPointer(FirstNewLine), SourceMgr::DK_Note,
1127 "non-matching line after previous match is here");
1128 return true;
1129 }
1130
1131 return false;
1132}
1133
1134/// Verify there is no newline in the given buffer.
1135bool FileCheckString::CheckSame(const SourceMgr &SM, StringRef Buffer) const {
1136 if (Pat.getCheckTy() != Check::CheckSame)
1137 return false;
1138
1139 // Count the number of newlines between the previous match and this one.
1140 assert(Buffer.data() !=
1141 SM.getMemoryBuffer(SM.FindBufferContainingLoc(
1142 SMLoc::getFromPointer(Buffer.data())))
1143 ->getBufferStart() &&
1144 "CHECK-SAME can't be the first check in a file");
1145
1146 const char *FirstNewLine = nullptr;
1147 unsigned NumNewLines = CountNumNewlinesBetween(Buffer, FirstNewLine);
1148
1149 if (NumNewLines != 0) {
1150 SM.PrintMessage(Loc, SourceMgr::DK_Error,
1151 Prefix +
1152 "-SAME: is not on the same line as the previous match");
1153 SM.PrintMessage(SMLoc::getFromPointer(Buffer.end()), SourceMgr::DK_Note,
1154 "'next' match was here");
1155 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), SourceMgr::DK_Note,
1156 "previous match ended here");
1157 return true;
1158 }
1159
1160 return false;
1161}
1162
1163/// Verify there's no "not strings" in the given buffer.
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +00001164bool FileCheckString::CheckNot(
1165 const SourceMgr &SM, StringRef Buffer,
1166 const std::vector<const FileCheckPattern *> &NotStrings,
1167 StringMap<StringRef> &VariableTable, const FileCheckRequest &Req,
1168 std::vector<FileCheckDiag> *Diags) const {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001169 for (const FileCheckPattern *Pat : NotStrings) {
1170 assert((Pat->getCheckTy() == Check::CheckNot) && "Expect CHECK-NOT!");
1171
1172 size_t MatchLen = 0;
1173 size_t Pos = Pat->Match(Buffer, MatchLen, VariableTable);
1174
1175 if (Pos == StringRef::npos) {
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001176 PrintNoMatch(false, SM, Prefix, Pat->getLoc(), *Pat, 1, Buffer,
Joel E. Denny96f0e842018-12-18 00:03:36 +00001177 VariableTable, Req.VerboseVerbose, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001178 continue;
1179 }
1180
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001181 PrintMatch(false, SM, Prefix, Pat->getLoc(), *Pat, 1, Buffer, VariableTable,
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +00001182 Pos, MatchLen, Req, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001183
1184 return true;
1185 }
1186
1187 return false;
1188}
1189
1190/// Match "dag strings" and their mixed "not strings".
Joel E. Denny3c5d2672018-12-18 00:01:39 +00001191size_t
1192FileCheckString::CheckDag(const SourceMgr &SM, StringRef Buffer,
1193 std::vector<const FileCheckPattern *> &NotStrings,
1194 StringMap<StringRef> &VariableTable,
1195 const FileCheckRequest &Req,
1196 std::vector<FileCheckDiag> *Diags) const {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001197 if (DagNotStrings.empty())
1198 return 0;
1199
1200 // The start of the search range.
1201 size_t StartPos = 0;
1202
1203 struct MatchRange {
1204 size_t Pos;
1205 size_t End;
1206 };
1207 // A sorted list of ranges for non-overlapping CHECK-DAG matches. Match
1208 // ranges are erased from this list once they are no longer in the search
1209 // range.
1210 std::list<MatchRange> MatchRanges;
1211
1212 // We need PatItr and PatEnd later for detecting the end of a CHECK-DAG
1213 // group, so we don't use a range-based for loop here.
1214 for (auto PatItr = DagNotStrings.begin(), PatEnd = DagNotStrings.end();
1215 PatItr != PatEnd; ++PatItr) {
1216 const FileCheckPattern &Pat = *PatItr;
1217 assert((Pat.getCheckTy() == Check::CheckDAG ||
1218 Pat.getCheckTy() == Check::CheckNot) &&
1219 "Invalid CHECK-DAG or CHECK-NOT!");
1220
1221 if (Pat.getCheckTy() == Check::CheckNot) {
1222 NotStrings.push_back(&Pat);
1223 continue;
1224 }
1225
1226 assert((Pat.getCheckTy() == Check::CheckDAG) && "Expect CHECK-DAG!");
1227
1228 // CHECK-DAG always matches from the start.
1229 size_t MatchLen = 0, MatchPos = StartPos;
1230
1231 // Search for a match that doesn't overlap a previous match in this
1232 // CHECK-DAG group.
1233 for (auto MI = MatchRanges.begin(), ME = MatchRanges.end(); true; ++MI) {
1234 StringRef MatchBuffer = Buffer.substr(MatchPos);
1235 size_t MatchPosBuf = Pat.Match(MatchBuffer, MatchLen, VariableTable);
1236 // With a group of CHECK-DAGs, a single mismatching means the match on
1237 // that group of CHECK-DAGs fails immediately.
1238 if (MatchPosBuf == StringRef::npos) {
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001239 PrintNoMatch(true, SM, Prefix, Pat.getLoc(), Pat, 1, MatchBuffer,
Joel E. Denny3c5d2672018-12-18 00:01:39 +00001240 VariableTable, Req.VerboseVerbose, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001241 return StringRef::npos;
1242 }
1243 // Re-calc it as the offset relative to the start of the original string.
1244 MatchPos += MatchPosBuf;
1245 if (Req.VerboseVerbose)
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001246 PrintMatch(true, SM, Prefix, Pat.getLoc(), Pat, 1, Buffer,
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +00001247 VariableTable, MatchPos, MatchLen, Req, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001248 MatchRange M{MatchPos, MatchPos + MatchLen};
1249 if (Req.AllowDeprecatedDagOverlap) {
1250 // We don't need to track all matches in this mode, so we just maintain
1251 // one match range that encompasses the current CHECK-DAG group's
1252 // matches.
1253 if (MatchRanges.empty())
1254 MatchRanges.insert(MatchRanges.end(), M);
1255 else {
1256 auto Block = MatchRanges.begin();
1257 Block->Pos = std::min(Block->Pos, M.Pos);
1258 Block->End = std::max(Block->End, M.End);
1259 }
1260 break;
1261 }
1262 // Iterate previous matches until overlapping match or insertion point.
1263 bool Overlap = false;
1264 for (; MI != ME; ++MI) {
1265 if (M.Pos < MI->End) {
1266 // !Overlap => New match has no overlap and is before this old match.
1267 // Overlap => New match overlaps this old match.
1268 Overlap = MI->Pos < M.End;
1269 break;
1270 }
1271 }
1272 if (!Overlap) {
1273 // Insert non-overlapping match into list.
1274 MatchRanges.insert(MI, M);
1275 break;
1276 }
1277 if (Req.VerboseVerbose) {
1278 SMLoc OldStart = SMLoc::getFromPointer(Buffer.data() + MI->Pos);
1279 SMLoc OldEnd = SMLoc::getFromPointer(Buffer.data() + MI->End);
1280 SMRange OldRange(OldStart, OldEnd);
1281 SM.PrintMessage(OldStart, SourceMgr::DK_Note,
1282 "match discarded, overlaps earlier DAG match here",
1283 {OldRange});
Joel E. Denny7df86962018-12-18 00:03:03 +00001284 if (Diags)
Joel E. Dennye2afb612018-12-18 00:03:51 +00001285 Diags->rbegin()->MatchTy = FileCheckDiag::MatchFoundButDiscarded;
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001286 }
1287 MatchPos = MI->End;
1288 }
1289 if (!Req.VerboseVerbose)
Fedor Sergeev6c9e19b2018-11-13 00:46:13 +00001290 PrintMatch(true, SM, Prefix, Pat.getLoc(), Pat, 1, Buffer, VariableTable,
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +00001291 MatchPos, MatchLen, Req, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001292
1293 // Handle the end of a CHECK-DAG group.
1294 if (std::next(PatItr) == PatEnd ||
1295 std::next(PatItr)->getCheckTy() == Check::CheckNot) {
1296 if (!NotStrings.empty()) {
1297 // If there are CHECK-NOTs between two CHECK-DAGs or from CHECK to
1298 // CHECK-DAG, verify that there are no 'not' strings occurred in that
1299 // region.
1300 StringRef SkippedRegion =
1301 Buffer.slice(StartPos, MatchRanges.begin()->Pos);
Joel E. Denny0e7e3fa2018-12-18 00:02:47 +00001302 if (CheckNot(SM, SkippedRegion, NotStrings, VariableTable, Req, Diags))
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001303 return StringRef::npos;
1304 // Clear "not strings".
1305 NotStrings.clear();
1306 }
1307 // All subsequent CHECK-DAGs and CHECK-NOTs should be matched from the
1308 // end of this CHECK-DAG group's match range.
1309 StartPos = MatchRanges.rbegin()->End;
1310 // Don't waste time checking for (impossible) overlaps before that.
1311 MatchRanges.clear();
1312 }
1313 }
1314
1315 return StartPos;
1316}
1317
1318// A check prefix must contain only alphanumeric, hyphens and underscores.
1319static bool ValidateCheckPrefix(StringRef CheckPrefix) {
1320 Regex Validator("^[a-zA-Z0-9_-]*$");
1321 return Validator.match(CheckPrefix);
1322}
1323
1324bool llvm::FileCheck::ValidateCheckPrefixes() {
1325 StringSet<> PrefixSet;
1326
1327 for (StringRef Prefix : Req.CheckPrefixes) {
1328 // Reject empty prefixes.
1329 if (Prefix == "")
1330 return false;
1331
1332 if (!PrefixSet.insert(Prefix).second)
1333 return false;
1334
1335 if (!ValidateCheckPrefix(Prefix))
1336 return false;
1337 }
1338
1339 return true;
1340}
1341
1342// Combines the check prefixes into a single regex so that we can efficiently
1343// scan for any of the set.
1344//
1345// The semantics are that the longest-match wins which matches our regex
1346// library.
1347Regex llvm::FileCheck::buildCheckPrefixRegex() {
1348 // I don't think there's a way to specify an initial value for cl::list,
1349 // so if nothing was specified, add the default
1350 if (Req.CheckPrefixes.empty())
1351 Req.CheckPrefixes.push_back("CHECK");
1352
1353 // We already validated the contents of CheckPrefixes so just concatenate
1354 // them as alternatives.
1355 SmallString<32> PrefixRegexStr;
1356 for (StringRef Prefix : Req.CheckPrefixes) {
1357 if (Prefix != Req.CheckPrefixes.front())
1358 PrefixRegexStr.push_back('|');
1359
1360 PrefixRegexStr.append(Prefix);
1361 }
1362
1363 return Regex(PrefixRegexStr);
1364}
1365
1366// Remove local variables from \p VariableTable. Global variables
1367// (start with '$') are preserved.
1368static void ClearLocalVars(StringMap<StringRef> &VariableTable) {
1369 SmallVector<StringRef, 16> LocalVars;
1370 for (const auto &Var : VariableTable)
1371 if (Var.first()[0] != '$')
1372 LocalVars.push_back(Var.first());
1373
1374 for (const auto &Var : LocalVars)
1375 VariableTable.erase(Var);
1376}
1377
1378/// Check the input to FileCheck provided in the \p Buffer against the \p
1379/// CheckStrings read from the check file.
1380///
1381/// Returns false if the input fails to satisfy the checks.
1382bool llvm::FileCheck::CheckInput(SourceMgr &SM, StringRef Buffer,
Joel E. Denny3c5d2672018-12-18 00:01:39 +00001383 ArrayRef<FileCheckString> CheckStrings,
1384 std::vector<FileCheckDiag> *Diags) {
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001385 bool ChecksFailed = false;
1386
1387 /// VariableTable - This holds all the current filecheck variables.
1388 StringMap<StringRef> VariableTable;
1389
1390 for (const auto& Def : Req.GlobalDefines)
1391 VariableTable.insert(StringRef(Def).split('='));
1392
1393 unsigned i = 0, j = 0, e = CheckStrings.size();
1394 while (true) {
1395 StringRef CheckRegion;
1396 if (j == e) {
1397 CheckRegion = Buffer;
1398 } else {
1399 const FileCheckString &CheckLabelStr = CheckStrings[j];
1400 if (CheckLabelStr.Pat.getCheckTy() != Check::CheckLabel) {
1401 ++j;
1402 continue;
1403 }
1404
1405 // Scan to next CHECK-LABEL match, ignoring CHECK-NOT and CHECK-DAG
1406 size_t MatchLabelLen = 0;
Joel E. Denny3c5d2672018-12-18 00:01:39 +00001407 size_t MatchLabelPos = CheckLabelStr.Check(
1408 SM, Buffer, true, MatchLabelLen, VariableTable, Req, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001409 if (MatchLabelPos == StringRef::npos)
1410 // Immediately bail of CHECK-LABEL fails, nothing else we can do.
1411 return false;
1412
1413 CheckRegion = Buffer.substr(0, MatchLabelPos + MatchLabelLen);
1414 Buffer = Buffer.substr(MatchLabelPos + MatchLabelLen);
1415 ++j;
1416 }
1417
1418 if (Req.EnableVarScope)
1419 ClearLocalVars(VariableTable);
1420
1421 for (; i != j; ++i) {
1422 const FileCheckString &CheckStr = CheckStrings[i];
1423
1424 // Check each string within the scanned region, including a second check
1425 // of any final CHECK-LABEL (to verify CHECK-NOT and CHECK-DAG)
1426 size_t MatchLen = 0;
Joel E. Denny3c5d2672018-12-18 00:01:39 +00001427 size_t MatchPos = CheckStr.Check(SM, CheckRegion, false, MatchLen,
1428 VariableTable, Req, Diags);
Aditya Nandakumarffa9d2e2018-08-07 21:58:49 +00001429
1430 if (MatchPos == StringRef::npos) {
1431 ChecksFailed = true;
1432 i = j;
1433 break;
1434 }
1435
1436 CheckRegion = CheckRegion.substr(MatchPos + MatchLen);
1437 }
1438
1439 if (j == e)
1440 break;
1441 }
1442
1443 // Success if no checks failed.
1444 return !ChecksFailed;
1445}