blob: 061d321b903a207ddee37f0b8781f20a3e684ea5 [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
19#include "llvm/Support/CommandLine.h"
20#include "llvm/Support/MemoryBuffer.h"
21#include "llvm/Support/PrettyStackTrace.h"
Chris Lattner52870082009-09-24 21:47:32 +000022#include "llvm/Support/Regex.h"
Chris Lattner81cb8ca2009-07-08 18:44:05 +000023#include "llvm/Support/SourceMgr.h"
24#include "llvm/Support/raw_ostream.h"
25#include "llvm/System/Signals.h"
26using namespace llvm;
27
28static cl::opt<std::string>
29CheckFilename(cl::Positional, cl::desc("<check-file>"), cl::Required);
30
31static cl::opt<std::string>
32InputFilename("input-file", cl::desc("File to check (defaults to stdin)"),
33 cl::init("-"), cl::value_desc("filename"));
34
35static cl::opt<std::string>
36CheckPrefix("check-prefix", cl::init("CHECK"),
37 cl::desc("Prefix to use from check file (defaults to 'CHECK')"));
38
Chris Lattner88a7e9e2009-07-11 18:58:15 +000039static cl::opt<bool>
40NoCanonicalizeWhiteSpace("strict-whitespace",
41 cl::desc("Do not treat all horizontal whitespace as equivalent"));
42
Chris Lattnera29703e2009-09-24 20:39:13 +000043//===----------------------------------------------------------------------===//
44// Pattern Handling Code.
45//===----------------------------------------------------------------------===//
46
Chris Lattnerbfa2eed2009-09-25 06:32:47 +000047class PatternChunk {
48 StringRef Str;
49 bool isRegEx;
50public:
51 PatternChunk(StringRef S, bool isRE) : Str(S), isRegEx(isRE) {}
52
Chris Lattnerbfa2eed2009-09-25 06:32:47 +000053 size_t Match(StringRef Buffer, size_t &MatchLen) const {
54 if (!isRegEx) {
55 // Fixed string match.
56 MatchLen = Str.size();
57 return Buffer.find(Str);
58 }
59
60 // Regex match.
61 SmallVector<StringRef, 4> MatchInfo;
Chris Lattnerd9485dd2009-09-25 06:47:09 +000062 if (!Regex(Str, Regex::Sub|Regex::Newline).match(Buffer, &MatchInfo))
Chris Lattnerbfa2eed2009-09-25 06:32:47 +000063 return StringRef::npos;
64
65 // Successful regex match.
66 assert(!MatchInfo.empty() && "Didn't get any match");
67 StringRef FullMatch = MatchInfo[0];
68
69 MatchLen = FullMatch.size();
70 return FullMatch.data()-Buffer.data();
71 }
Chris Lattnerbfa2eed2009-09-25 06:32:47 +000072};
73
Chris Lattner9fc66782009-09-24 20:25:55 +000074class Pattern {
Chris Lattner52870082009-09-24 21:47:32 +000075 /// Chunks - The pattern chunks to match. If the bool is false, it is a fixed
76 /// string match, if it is true, it is a regex match.
Chris Lattnerbfa2eed2009-09-25 06:32:47 +000077 SmallVector<PatternChunk, 4> Chunks;
Chris Lattner2702e6a2009-09-25 17:09:12 +000078
79 StringRef FixedStr;
Chris Lattner9fc66782009-09-24 20:25:55 +000080public:
81
Chris Lattnera29703e2009-09-24 20:39:13 +000082 Pattern() { }
83
84 bool ParsePattern(StringRef PatternStr, SourceMgr &SM);
Chris Lattner9fc66782009-09-24 20:25:55 +000085
86 /// Match - Match the pattern string against the input buffer Buffer. This
87 /// returns the position that is matched or npos if there is no match. If
88 /// there is a match, the size of the matched string is returned in MatchLen.
Chris Lattner52870082009-09-24 21:47:32 +000089 size_t Match(StringRef Buffer, size_t &MatchLen) const;
Chris Lattner9fc66782009-09-24 20:25:55 +000090};
91
Chris Lattnera29703e2009-09-24 20:39:13 +000092bool Pattern::ParsePattern(StringRef PatternStr, SourceMgr &SM) {
93 // Ignore trailing whitespace.
94 while (!PatternStr.empty() &&
95 (PatternStr.back() == ' ' || PatternStr.back() == '\t'))
96 PatternStr = PatternStr.substr(0, PatternStr.size()-1);
97
98 // Check that there is something on the line.
99 if (PatternStr.empty()) {
100 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
101 "found empty check string with prefix '"+CheckPrefix+":'",
102 "error");
103 return true;
104 }
Chris Lattner52870082009-09-24 21:47:32 +0000105
Chris Lattner2702e6a2009-09-25 17:09:12 +0000106 // Check to see if this is a fixed string, or if it has regex pieces.
107 if (PatternStr.size() < 2 || PatternStr.find("{{") == StringRef::npos) {
108 FixedStr = PatternStr;
109 return false;
110 }
111
112 // Otherwise, there is at least one regex piece.
113
Chris Lattner52870082009-09-24 21:47:32 +0000114 // Scan the pattern to break it into regex and non-regex pieces.
115 while (!PatternStr.empty()) {
116 // Handle fixed string matches.
117 if (PatternStr.size() < 2 ||
118 PatternStr[0] != '{' || PatternStr[1] != '{') {
119 // Find the end, which is the start of the next regex.
120 size_t FixedMatchEnd = PatternStr.find("{{");
121
Chris Lattnerbfa2eed2009-09-25 06:32:47 +0000122 Chunks.push_back(PatternChunk(PatternStr.substr(0, FixedMatchEnd),false));
Chris Lattner52870082009-09-24 21:47:32 +0000123 PatternStr = PatternStr.substr(FixedMatchEnd);
124 continue;
125 }
126
127 // Otherwise, this is the start of a regex match. Scan for the }}.
128 size_t End = PatternStr.find("}}");
129 if (End == StringRef::npos) {
130 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
131 "found start of regex string with no end '}}'", "error");
132 return true;
133 }
134
135 Regex R(PatternStr.substr(2, End-2));
136 std::string Error;
137 if (!R.isValid(Error)) {
138 SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()+2),
139 "invalid regex: " + Error, "error");
140 return true;
141 }
142
Chris Lattnerbfa2eed2009-09-25 06:32:47 +0000143 Chunks.push_back(PatternChunk(PatternStr.substr(2, End-2), true));
Chris Lattner52870082009-09-24 21:47:32 +0000144 PatternStr = PatternStr.substr(End+2);
145 }
Chris Lattneradea46e2009-09-24 20:45:07 +0000146
Chris Lattnera29703e2009-09-24 20:39:13 +0000147 return false;
148}
149
Chris Lattner52870082009-09-24 21:47:32 +0000150/// Match - Match the pattern string against the input buffer Buffer. This
151/// returns the position that is matched or npos if there is no match. If
152/// there is a match, the size of the matched string is returned in MatchLen.
153size_t Pattern::Match(StringRef Buffer, size_t &MatchLen) const {
Chris Lattner2702e6a2009-09-25 17:09:12 +0000154 // If this is a fixed string pattern, just match it now.
155 if (!FixedStr.empty()) {
156 MatchLen = FixedStr.size();
157 return Buffer.find(FixedStr);
158 }
159
Chris Lattner52870082009-09-24 21:47:32 +0000160 size_t FirstMatch = StringRef::npos;
161 MatchLen = 0;
162
Chris Lattner52870082009-09-24 21:47:32 +0000163 while (!Buffer.empty()) {
164 StringRef MatchAttempt = Buffer;
165
166 unsigned ChunkNo = 0, e = Chunks.size();
167 for (; ChunkNo != e; ++ChunkNo) {
Chris Lattnerbfa2eed2009-09-25 06:32:47 +0000168 size_t ThisMatch, ThisLength = StringRef::npos;
169 ThisMatch = Chunks[ChunkNo].Match(MatchAttempt, ThisLength);
Chris Lattner52870082009-09-24 21:47:32 +0000170
171 // Otherwise, what we do depends on if this is the first match or not. If
172 // this is the first match, it doesn't match to match at the start of
173 // MatchAttempt.
174 if (ChunkNo == 0) {
175 // If the first match fails then this pattern will never match in
176 // Buffer.
177 if (ThisMatch == StringRef::npos)
178 return ThisMatch;
179
180 FirstMatch = ThisMatch;
181 MatchAttempt = MatchAttempt.substr(FirstMatch);
182 ThisMatch = 0;
183 }
184
185 // If this chunk didn't match, then the entire pattern didn't match from
186 // FirstMatch, try later in the buffer.
187 if (ThisMatch == StringRef::npos)
188 break;
189
190 // Ok, if the match didn't match at the beginning of MatchAttempt, then we
191 // have something like "ABC{{DEF}} and something was in-between. Reject
192 // the match.
193 if (ThisMatch != 0)
194 break;
195
196 // Otherwise, match the string and move to the next chunk.
197 MatchLen += ThisLength;
198 MatchAttempt = MatchAttempt.substr(ThisLength);
199 }
200
201 // If the whole thing matched, we win.
202 if (ChunkNo == e)
203 return FirstMatch;
204
205 // Otherwise, try matching again after FirstMatch to see if this pattern
206 // matches later in the buffer.
207 Buffer = Buffer.substr(FirstMatch+1);
208 }
209
210 // If we ran out of stuff to scan, then we didn't match.
211 return StringRef::npos;
212}
213
Chris Lattnera29703e2009-09-24 20:39:13 +0000214
215//===----------------------------------------------------------------------===//
216// Check Strings.
217//===----------------------------------------------------------------------===//
Chris Lattner9fc66782009-09-24 20:25:55 +0000218
219/// CheckString - This is a check that we found in the input file.
220struct CheckString {
221 /// Pat - The pattern to match.
222 Pattern Pat;
Chris Lattner207e1bc2009-08-15 17:41:04 +0000223
224 /// Loc - The location in the match file that the check string was specified.
225 SMLoc Loc;
226
Chris Lattner5dafafd2009-08-15 18:32:21 +0000227 /// IsCheckNext - This is true if this is a CHECK-NEXT: directive (as opposed
228 /// to a CHECK: directive.
229 bool IsCheckNext;
230
Chris Lattnerf15380b2009-09-20 22:35:26 +0000231 /// NotStrings - These are all of the strings that are disallowed from
232 /// occurring between this match string and the previous one (or start of
233 /// file).
Chris Lattnera29703e2009-09-24 20:39:13 +0000234 std::vector<std::pair<SMLoc, Pattern> > NotStrings;
Chris Lattnerf15380b2009-09-20 22:35:26 +0000235
Chris Lattner9fc66782009-09-24 20:25:55 +0000236 CheckString(const Pattern &P, SMLoc L, bool isCheckNext)
237 : Pat(P), Loc(L), IsCheckNext(isCheckNext) {}
Chris Lattner207e1bc2009-08-15 17:41:04 +0000238};
239
Chris Lattneradea46e2009-09-24 20:45:07 +0000240/// CanonicalizeInputFile - Remove duplicate horizontal space from the specified
241/// memory buffer, free it, and return a new one.
242static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) {
243 SmallVector<char, 16> NewFile;
244 NewFile.reserve(MB->getBufferSize());
245
246 for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
247 Ptr != End; ++Ptr) {
248 // If C is not a horizontal whitespace, skip it.
249 if (*Ptr != ' ' && *Ptr != '\t') {
250 NewFile.push_back(*Ptr);
251 continue;
252 }
253
254 // Otherwise, add one space and advance over neighboring space.
255 NewFile.push_back(' ');
256 while (Ptr+1 != End &&
257 (Ptr[1] == ' ' || Ptr[1] == '\t'))
258 ++Ptr;
259 }
260
261 // Free the old buffer and return a new one.
262 MemoryBuffer *MB2 =
263 MemoryBuffer::getMemBufferCopy(NewFile.data(),
264 NewFile.data() + NewFile.size(),
265 MB->getBufferIdentifier());
266
267 delete MB;
268 return MB2;
269}
270
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000271
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000272/// ReadCheckFile - Read the check file, which specifies the sequence of
273/// expected strings. The strings are added to the CheckStrings vector.
274static bool ReadCheckFile(SourceMgr &SM,
Chris Lattner207e1bc2009-08-15 17:41:04 +0000275 std::vector<CheckString> &CheckStrings) {
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000276 // Open the check file, and tell SourceMgr about it.
277 std::string ErrorStr;
278 MemoryBuffer *F =
279 MemoryBuffer::getFileOrSTDIN(CheckFilename.c_str(), &ErrorStr);
280 if (F == 0) {
281 errs() << "Could not open check file '" << CheckFilename << "': "
282 << ErrorStr << '\n';
283 return true;
284 }
Chris Lattneradea46e2009-09-24 20:45:07 +0000285
286 // If we want to canonicalize whitespace, strip excess whitespace from the
287 // buffer containing the CHECK lines.
288 if (!NoCanonicalizeWhiteSpace)
289 F = CanonicalizeInputFile(F);
290
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000291 SM.AddNewSourceBuffer(F, SMLoc());
292
Chris Lattnerd7e25052009-08-15 18:00:42 +0000293 // Find all instances of CheckPrefix followed by : in the file.
Chris Lattner96077032009-09-20 22:11:44 +0000294 StringRef Buffer = F->getBuffer();
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000295
Chris Lattnera29703e2009-09-24 20:39:13 +0000296 std::vector<std::pair<SMLoc, Pattern> > NotMatches;
Chris Lattnerf15380b2009-09-20 22:35:26 +0000297
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000298 while (1) {
299 // See if Prefix occurs in the memory buffer.
Chris Lattner96077032009-09-20 22:11:44 +0000300 Buffer = Buffer.substr(Buffer.find(CheckPrefix));
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000301
302 // If we didn't find a match, we're done.
Chris Lattner96077032009-09-20 22:11:44 +0000303 if (Buffer.empty())
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000304 break;
305
Chris Lattner96077032009-09-20 22:11:44 +0000306 const char *CheckPrefixStart = Buffer.data();
Chris Lattner5dafafd2009-08-15 18:32:21 +0000307
308 // When we find a check prefix, keep track of whether we find CHECK: or
309 // CHECK-NEXT:
Chris Lattnerf15380b2009-09-20 22:35:26 +0000310 bool IsCheckNext = false, IsCheckNot = false;
Chris Lattner5dafafd2009-08-15 18:32:21 +0000311
Chris Lattnerd7e25052009-08-15 18:00:42 +0000312 // Verify that the : is present after the prefix.
Chris Lattner96077032009-09-20 22:11:44 +0000313 if (Buffer[CheckPrefix.size()] == ':') {
314 Buffer = Buffer.substr(CheckPrefix.size()+1);
Chris Lattner96077032009-09-20 22:11:44 +0000315 } else if (Buffer.size() > CheckPrefix.size()+6 &&
316 memcmp(Buffer.data()+CheckPrefix.size(), "-NEXT:", 6) == 0) {
317 Buffer = Buffer.substr(CheckPrefix.size()+7);
Chris Lattner5dafafd2009-08-15 18:32:21 +0000318 IsCheckNext = true;
Chris Lattnerf15380b2009-09-20 22:35:26 +0000319 } else if (Buffer.size() > CheckPrefix.size()+5 &&
320 memcmp(Buffer.data()+CheckPrefix.size(), "-NOT:", 5) == 0) {
321 Buffer = Buffer.substr(CheckPrefix.size()+6);
322 IsCheckNot = true;
Chris Lattner5dafafd2009-08-15 18:32:21 +0000323 } else {
Chris Lattner96077032009-09-20 22:11:44 +0000324 Buffer = Buffer.substr(1);
Chris Lattnerd7e25052009-08-15 18:00:42 +0000325 continue;
326 }
327
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000328 // Okay, we found the prefix, yay. Remember the rest of the line, but
329 // ignore leading and trailing whitespace.
Chris Lattnerf15380b2009-09-20 22:35:26 +0000330 Buffer = Buffer.substr(Buffer.find_first_not_of(" \t"));
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000331
332 // Scan ahead to the end of line.
Chris Lattner96077032009-09-20 22:11:44 +0000333 size_t EOL = Buffer.find_first_of("\n\r");
Chris Lattnera29703e2009-09-24 20:39:13 +0000334
335 // Parse the pattern.
336 Pattern P;
337 if (P.ParsePattern(Buffer.substr(0, EOL), SM))
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000338 return true;
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000339
Chris Lattnera29703e2009-09-24 20:39:13 +0000340 Buffer = Buffer.substr(EOL);
341
Chris Lattnerf15380b2009-09-20 22:35:26 +0000342
Chris Lattner5dafafd2009-08-15 18:32:21 +0000343 // Verify that CHECK-NEXT lines have at least one CHECK line before them.
344 if (IsCheckNext && CheckStrings.empty()) {
345 SM.PrintMessage(SMLoc::getFromPointer(CheckPrefixStart),
346 "found '"+CheckPrefix+"-NEXT:' without previous '"+
347 CheckPrefix+ ": line", "error");
348 return true;
349 }
350
Chris Lattnera29703e2009-09-24 20:39:13 +0000351 // Handle CHECK-NOT.
352 if (IsCheckNot) {
353 NotMatches.push_back(std::make_pair(SMLoc::getFromPointer(Buffer.data()),
354 P));
355 continue;
356 }
357
Chris Lattner9fc66782009-09-24 20:25:55 +0000358
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000359 // Okay, add the string we captured to the output vector and move on.
Chris Lattner9fc66782009-09-24 20:25:55 +0000360 CheckStrings.push_back(CheckString(P,
Chris Lattner96077032009-09-20 22:11:44 +0000361 SMLoc::getFromPointer(Buffer.data()),
Chris Lattner5dafafd2009-08-15 18:32:21 +0000362 IsCheckNext));
Chris Lattnerf15380b2009-09-20 22:35:26 +0000363 std::swap(NotMatches, CheckStrings.back().NotStrings);
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000364 }
365
366 if (CheckStrings.empty()) {
Chris Lattnerd7e25052009-08-15 18:00:42 +0000367 errs() << "error: no check strings found with prefix '" << CheckPrefix
368 << ":'\n";
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000369 return true;
370 }
371
Chris Lattnerf15380b2009-09-20 22:35:26 +0000372 if (!NotMatches.empty()) {
373 errs() << "error: '" << CheckPrefix
374 << "-NOT:' not supported after last check line.\n";
375 return true;
376 }
377
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000378 return false;
379}
380
Chris Lattner5dafafd2009-08-15 18:32:21 +0000381static void PrintCheckFailed(const SourceMgr &SM, const CheckString &CheckStr,
Chris Lattner96077032009-09-20 22:11:44 +0000382 StringRef Buffer) {
Chris Lattner5dafafd2009-08-15 18:32:21 +0000383 // Otherwise, we have an error, emit an error message.
384 SM.PrintMessage(CheckStr.Loc, "expected string not found in input",
385 "error");
386
387 // Print the "scanning from here" line. If the current position is at the
388 // end of a line, advance to the start of the next line.
Chris Lattner96077032009-09-20 22:11:44 +0000389 Buffer = Buffer.substr(Buffer.find_first_not_of(" \t\n\r"));
Chris Lattner5dafafd2009-08-15 18:32:21 +0000390
Chris Lattner96077032009-09-20 22:11:44 +0000391 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()), "scanning from here",
Chris Lattner5dafafd2009-08-15 18:32:21 +0000392 "note");
393}
394
Chris Lattner3711b7a2009-09-20 22:42:44 +0000395/// CountNumNewlinesBetween - Count the number of newlines in the specified
396/// range.
397static unsigned CountNumNewlinesBetween(StringRef Range) {
Chris Lattner5dafafd2009-08-15 18:32:21 +0000398 unsigned NumNewLines = 0;
Chris Lattner3711b7a2009-09-20 22:42:44 +0000399 while (1) {
Chris Lattner5dafafd2009-08-15 18:32:21 +0000400 // Scan for newline.
Chris Lattner3711b7a2009-09-20 22:42:44 +0000401 Range = Range.substr(Range.find_first_of("\n\r"));
402 if (Range.empty()) return NumNewLines;
Chris Lattner5dafafd2009-08-15 18:32:21 +0000403
404 ++NumNewLines;
405
406 // Handle \n\r and \r\n as a single newline.
Chris Lattner3711b7a2009-09-20 22:42:44 +0000407 if (Range.size() > 1 &&
408 (Range[1] == '\n' || Range[1] == '\r') &&
409 (Range[0] != Range[1]))
410 Range = Range.substr(1);
411 Range = Range.substr(1);
Chris Lattner5dafafd2009-08-15 18:32:21 +0000412 }
Chris Lattner5dafafd2009-08-15 18:32:21 +0000413}
414
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000415int main(int argc, char **argv) {
416 sys::PrintStackTraceOnErrorSignal();
417 PrettyStackTraceProgram X(argc, argv);
418 cl::ParseCommandLineOptions(argc, argv);
419
420 SourceMgr SM;
421
422 // Read the expected strings from the check file.
Chris Lattner207e1bc2009-08-15 17:41:04 +0000423 std::vector<CheckString> CheckStrings;
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000424 if (ReadCheckFile(SM, CheckStrings))
425 return 2;
426
427 // Open the file to check and add it to SourceMgr.
428 std::string ErrorStr;
429 MemoryBuffer *F =
430 MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), &ErrorStr);
431 if (F == 0) {
432 errs() << "Could not open input file '" << InputFilename << "': "
433 << ErrorStr << '\n';
434 return true;
435 }
Chris Lattner88a7e9e2009-07-11 18:58:15 +0000436
437 // Remove duplicate spaces in the input file if requested.
438 if (!NoCanonicalizeWhiteSpace)
439 F = CanonicalizeInputFile(F);
440
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000441 SM.AddNewSourceBuffer(F, SMLoc());
442
443 // Check that we have all of the expected strings, in order, in the input
444 // file.
Chris Lattner96077032009-09-20 22:11:44 +0000445 StringRef Buffer = F->getBuffer();
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000446
Chris Lattnerf15380b2009-09-20 22:35:26 +0000447 const char *LastMatch = Buffer.data();
448
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000449 for (unsigned StrNo = 0, e = CheckStrings.size(); StrNo != e; ++StrNo) {
Chris Lattner207e1bc2009-08-15 17:41:04 +0000450 const CheckString &CheckStr = CheckStrings[StrNo];
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000451
Chris Lattner96077032009-09-20 22:11:44 +0000452 StringRef SearchFrom = Buffer;
453
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000454 // Find StrNo in the file.
Chris Lattner9fc66782009-09-24 20:25:55 +0000455 size_t MatchLen = 0;
456 Buffer = Buffer.substr(CheckStr.Pat.Match(Buffer, MatchLen));
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000457
Chris Lattner5dafafd2009-08-15 18:32:21 +0000458 // If we didn't find a match, reject the input.
Chris Lattner96077032009-09-20 22:11:44 +0000459 if (Buffer.empty()) {
460 PrintCheckFailed(SM, CheckStr, SearchFrom);
Chris Lattner5dafafd2009-08-15 18:32:21 +0000461 return 1;
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000462 }
Chris Lattner3711b7a2009-09-20 22:42:44 +0000463
464 StringRef SkippedRegion(LastMatch, Buffer.data()-LastMatch);
465
Chris Lattner5dafafd2009-08-15 18:32:21 +0000466 // If this check is a "CHECK-NEXT", verify that the previous match was on
467 // the previous line (i.e. that there is one newline between them).
468 if (CheckStr.IsCheckNext) {
469 // Count the number of newlines between the previous match and this one.
Chris Lattnerf15380b2009-09-20 22:35:26 +0000470 assert(LastMatch != F->getBufferStart() &&
471 "CHECK-NEXT can't be the first check in a file");
Chris Lattner5dafafd2009-08-15 18:32:21 +0000472
Chris Lattner3711b7a2009-09-20 22:42:44 +0000473 unsigned NumNewLines = CountNumNewlinesBetween(SkippedRegion);
Chris Lattner5dafafd2009-08-15 18:32:21 +0000474 if (NumNewLines == 0) {
Chris Lattner0b2353f2009-08-16 02:22:31 +0000475 SM.PrintMessage(CheckStr.Loc,
Chris Lattner5dafafd2009-08-15 18:32:21 +0000476 CheckPrefix+"-NEXT: is on the same line as previous match",
477 "error");
Chris Lattner96077032009-09-20 22:11:44 +0000478 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()),
Chris Lattner0b2353f2009-08-16 02:22:31 +0000479 "'next' match was here", "note");
Chris Lattner5dafafd2009-08-15 18:32:21 +0000480 SM.PrintMessage(SMLoc::getFromPointer(LastMatch),
481 "previous match was here", "note");
482 return 1;
483 }
484
485 if (NumNewLines != 1) {
Chris Lattner0b2353f2009-08-16 02:22:31 +0000486 SM.PrintMessage(CheckStr.Loc,
Chris Lattner5dafafd2009-08-15 18:32:21 +0000487 CheckPrefix+
488 "-NEXT: is not on the line after the previous match",
489 "error");
Chris Lattner96077032009-09-20 22:11:44 +0000490 SM.PrintMessage(SMLoc::getFromPointer(Buffer.data()),
Chris Lattner0b2353f2009-08-16 02:22:31 +0000491 "'next' match was here", "note");
Chris Lattner5dafafd2009-08-15 18:32:21 +0000492 SM.PrintMessage(SMLoc::getFromPointer(LastMatch),
493 "previous match was here", "note");
494 return 1;
495 }
496 }
Chris Lattnerf15380b2009-09-20 22:35:26 +0000497
498 // If this match had "not strings", verify that they don't exist in the
499 // skipped region.
Chris Lattner52870082009-09-24 21:47:32 +0000500 for (unsigned ChunkNo = 0, e = CheckStr.NotStrings.size(); ChunkNo != e; ++ChunkNo) {
Chris Lattnera29703e2009-09-24 20:39:13 +0000501 size_t MatchLen = 0;
Chris Lattner52870082009-09-24 21:47:32 +0000502 size_t Pos = CheckStr.NotStrings[ChunkNo].second.Match(SkippedRegion, MatchLen);
Chris Lattnerf15380b2009-09-20 22:35:26 +0000503 if (Pos == StringRef::npos) continue;
504
505 SM.PrintMessage(SMLoc::getFromPointer(LastMatch+Pos),
506 CheckPrefix+"-NOT: string occurred!", "error");
Chris Lattner52870082009-09-24 21:47:32 +0000507 SM.PrintMessage(CheckStr.NotStrings[ChunkNo].first,
Chris Lattnerf15380b2009-09-20 22:35:26 +0000508 CheckPrefix+"-NOT: pattern specified here", "note");
509 return 1;
510 }
511
Chris Lattner5dafafd2009-08-15 18:32:21 +0000512
Chris Lattner81115762009-09-21 02:30:42 +0000513 // Otherwise, everything is good. Step over the matched text and remember
514 // the position after the match as the end of the last match.
Chris Lattner9fc66782009-09-24 20:25:55 +0000515 Buffer = Buffer.substr(MatchLen);
Chris Lattner81115762009-09-21 02:30:42 +0000516 LastMatch = Buffer.data();
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000517 }
518
519 return 0;
520}