blob: 986c7838a078b4030151fbad40565e8b6bf9926e [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"
22#include "llvm/Support/SourceMgr.h"
23#include "llvm/Support/raw_ostream.h"
24#include "llvm/System/Signals.h"
25using namespace llvm;
26
27static cl::opt<std::string>
28CheckFilename(cl::Positional, cl::desc("<check-file>"), cl::Required);
29
30static cl::opt<std::string>
31InputFilename("input-file", cl::desc("File to check (defaults to stdin)"),
32 cl::init("-"), cl::value_desc("filename"));
33
34static cl::opt<std::string>
35CheckPrefix("check-prefix", cl::init("CHECK"),
36 cl::desc("Prefix to use from check file (defaults to 'CHECK')"));
37
Chris Lattner88a7e9e2009-07-11 18:58:15 +000038static cl::opt<bool>
39NoCanonicalizeWhiteSpace("strict-whitespace",
40 cl::desc("Do not treat all horizontal whitespace as equivalent"));
41
Chris Lattner207e1bc2009-08-15 17:41:04 +000042/// CheckString - This is a check that we found in the input file.
43struct CheckString {
44 /// Str - The string to match.
45 std::string Str;
46
47 /// Loc - The location in the match file that the check string was specified.
48 SMLoc Loc;
49
50 CheckString(const std::string &S, SMLoc L) : Str(S), Loc(L) {}
51};
52
Chris Lattner81cb8ca2009-07-08 18:44:05 +000053
Chris Lattner7bee3272009-08-15 17:53:12 +000054/// FindFixedStringInBuffer - This works like strstr, except for two things:
55/// 1) it handles 'nul' characters in memory buffers. 2) it returns the end of
56/// the memory buffer on match failure instead of null.
57static const char *FindFixedStringInBuffer(StringRef Str, const char *CurPtr,
58 const MemoryBuffer &MB) {
59 assert(!Str.empty() && "Can't find an empty string");
60 const char *BufEnd = MB.getBufferEnd();
Chris Lattner81cb8ca2009-07-08 18:44:05 +000061
Chris Lattner7bee3272009-08-15 17:53:12 +000062 while (1) {
63 // Scan for the first character in the match string.
64 CurPtr = (char*)memchr(CurPtr, Str[0], BufEnd-CurPtr);
Chris Lattner81cb8ca2009-07-08 18:44:05 +000065
Chris Lattner7bee3272009-08-15 17:53:12 +000066 // If we didn't find the first character of the string, then we failed to
67 // match.
68 if (CurPtr == 0) return BufEnd;
69
70 // If the match string is one character, then we win.
71 if (Str.size() == 1) return CurPtr;
72
73 // Otherwise, verify that the rest of the string matches.
74 if (Str.size() <= unsigned(BufEnd-CurPtr) &&
75 memcmp(CurPtr+1, Str.data()+1, Str.size()-1) == 0)
76 return CurPtr;
77
78 // If not, advance past this character and try again.
79 ++CurPtr;
80 }
Chris Lattner81cb8ca2009-07-08 18:44:05 +000081}
82
83/// ReadCheckFile - Read the check file, which specifies the sequence of
84/// expected strings. The strings are added to the CheckStrings vector.
85static bool ReadCheckFile(SourceMgr &SM,
Chris Lattner207e1bc2009-08-15 17:41:04 +000086 std::vector<CheckString> &CheckStrings) {
Chris Lattner81cb8ca2009-07-08 18:44:05 +000087 // Open the check file, and tell SourceMgr about it.
88 std::string ErrorStr;
89 MemoryBuffer *F =
90 MemoryBuffer::getFileOrSTDIN(CheckFilename.c_str(), &ErrorStr);
91 if (F == 0) {
92 errs() << "Could not open check file '" << CheckFilename << "': "
93 << ErrorStr << '\n';
94 return true;
95 }
96 SM.AddNewSourceBuffer(F, SMLoc());
97
Chris Lattnerd7e25052009-08-15 18:00:42 +000098 // Find all instances of CheckPrefix followed by : in the file.
Chris Lattner81cb8ca2009-07-08 18:44:05 +000099 const char *CurPtr = F->getBufferStart(), *BufferEnd = F->getBufferEnd();
100
101 while (1) {
102 // See if Prefix occurs in the memory buffer.
Chris Lattnerd7e25052009-08-15 18:00:42 +0000103 const char *Ptr = FindFixedStringInBuffer(CheckPrefix, CurPtr, *F);
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000104
105 // If we didn't find a match, we're done.
106 if (Ptr == BufferEnd)
107 break;
108
Chris Lattnerd7e25052009-08-15 18:00:42 +0000109 // Verify that the : is present after the prefix.
110 if (Ptr[CheckPrefix.size()] != ':') {
111 CurPtr = Ptr+1;
112 continue;
113 }
114
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000115 // Okay, we found the prefix, yay. Remember the rest of the line, but
116 // ignore leading and trailing whitespace.
Chris Lattnerd7e25052009-08-15 18:00:42 +0000117 Ptr += CheckPrefix.size()+1;
118
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000119 while (*Ptr == ' ' || *Ptr == '\t')
120 ++Ptr;
121
122 // Scan ahead to the end of line.
123 CurPtr = Ptr;
124 while (CurPtr != BufferEnd && *CurPtr != '\n' && *CurPtr != '\r')
125 ++CurPtr;
126
127 // Ignore trailing whitespace.
128 while (CurPtr[-1] == ' ' || CurPtr[-1] == '\t')
129 --CurPtr;
130
131 // Check that there is something on the line.
132 if (Ptr >= CurPtr) {
133 SM.PrintMessage(SMLoc::getFromPointer(CurPtr),
Chris Lattnerd7e25052009-08-15 18:00:42 +0000134 "found empty check string with prefix '"+CheckPrefix+":'",
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000135 "error");
136 return true;
137 }
138
139 // Okay, add the string we captured to the output vector and move on.
Chris Lattner207e1bc2009-08-15 17:41:04 +0000140 CheckStrings.push_back(CheckString(std::string(Ptr, CurPtr),
141 SMLoc::getFromPointer(Ptr)));
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000142 }
143
144 if (CheckStrings.empty()) {
Chris Lattnerd7e25052009-08-15 18:00:42 +0000145 errs() << "error: no check strings found with prefix '" << CheckPrefix
146 << ":'\n";
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000147 return true;
148 }
149
150 return false;
151}
152
Chris Lattner88a7e9e2009-07-11 18:58:15 +0000153// CanonicalizeCheckStrings - Replace all sequences of horizontal whitespace in
154// the check strings with a single space.
Chris Lattner207e1bc2009-08-15 17:41:04 +0000155static void CanonicalizeCheckStrings(std::vector<CheckString> &CheckStrings) {
Chris Lattner88a7e9e2009-07-11 18:58:15 +0000156 for (unsigned i = 0, e = CheckStrings.size(); i != e; ++i) {
Chris Lattner207e1bc2009-08-15 17:41:04 +0000157 std::string &Str = CheckStrings[i].Str;
Chris Lattner88a7e9e2009-07-11 18:58:15 +0000158
159 for (unsigned C = 0; C != Str.size(); ++C) {
160 // If C is not a horizontal whitespace, skip it.
161 if (Str[C] != ' ' && Str[C] != '\t')
162 continue;
163
164 // Replace the character with space, then remove any other space
165 // characters after it.
166 Str[C] = ' ';
167
168 while (C+1 != Str.size() &&
169 (Str[C+1] == ' ' || Str[C+1] == '\t'))
170 Str.erase(Str.begin()+C+1);
171 }
172 }
173}
174
175/// CanonicalizeInputFile - Remove duplicate horizontal space from the specified
176/// memory buffer, free it, and return a new one.
177static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) {
Daniel Dunbar6f69aa32009-08-02 01:21:22 +0000178 SmallVector<char, 16> NewFile;
Chris Lattner88a7e9e2009-07-11 18:58:15 +0000179 NewFile.reserve(MB->getBufferSize());
180
181 for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
182 Ptr != End; ++Ptr) {
183 // If C is not a horizontal whitespace, skip it.
184 if (*Ptr != ' ' && *Ptr != '\t') {
185 NewFile.push_back(*Ptr);
186 continue;
187 }
188
189 // Otherwise, add one space and advance over neighboring space.
190 NewFile.push_back(' ');
191 while (Ptr+1 != End &&
192 (Ptr[1] == ' ' || Ptr[1] == '\t'))
193 ++Ptr;
194 }
195
196 // Free the old buffer and return a new one.
197 MemoryBuffer *MB2 =
Daniel Dunbar6f69aa32009-08-02 01:21:22 +0000198 MemoryBuffer::getMemBufferCopy(NewFile.data(),
199 NewFile.data() + NewFile.size(),
Chris Lattner88a7e9e2009-07-11 18:58:15 +0000200 MB->getBufferIdentifier());
201
202 delete MB;
203 return MB2;
204}
205
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000206
207int main(int argc, char **argv) {
208 sys::PrintStackTraceOnErrorSignal();
209 PrettyStackTraceProgram X(argc, argv);
210 cl::ParseCommandLineOptions(argc, argv);
211
212 SourceMgr SM;
213
214 // Read the expected strings from the check file.
Chris Lattner207e1bc2009-08-15 17:41:04 +0000215 std::vector<CheckString> CheckStrings;
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000216 if (ReadCheckFile(SM, CheckStrings))
217 return 2;
218
Chris Lattner88a7e9e2009-07-11 18:58:15 +0000219 // Remove duplicate spaces in the check strings if requested.
220 if (!NoCanonicalizeWhiteSpace)
221 CanonicalizeCheckStrings(CheckStrings);
222
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000223 // Open the file to check and add it to SourceMgr.
224 std::string ErrorStr;
225 MemoryBuffer *F =
226 MemoryBuffer::getFileOrSTDIN(InputFilename.c_str(), &ErrorStr);
227 if (F == 0) {
228 errs() << "Could not open input file '" << InputFilename << "': "
229 << ErrorStr << '\n';
230 return true;
231 }
Chris Lattner88a7e9e2009-07-11 18:58:15 +0000232
233 // Remove duplicate spaces in the input file if requested.
234 if (!NoCanonicalizeWhiteSpace)
235 F = CanonicalizeInputFile(F);
236
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000237 SM.AddNewSourceBuffer(F, SMLoc());
238
239 // Check that we have all of the expected strings, in order, in the input
240 // file.
241 const char *CurPtr = F->getBufferStart(), *BufferEnd = F->getBufferEnd();
242
243 for (unsigned StrNo = 0, e = CheckStrings.size(); StrNo != e; ++StrNo) {
Chris Lattner207e1bc2009-08-15 17:41:04 +0000244 const CheckString &CheckStr = CheckStrings[StrNo];
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000245
246 // Find StrNo in the file.
Chris Lattner7bee3272009-08-15 17:53:12 +0000247 const char *Ptr = FindFixedStringInBuffer(CheckStr.Str, CurPtr, *F);
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000248
249 // If we found a match, we're done, move on.
250 if (Ptr != BufferEnd) {
Chris Lattner207e1bc2009-08-15 17:41:04 +0000251 CurPtr = Ptr + CheckStr.Str.size();
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000252 continue;
253 }
254
255 // Otherwise, we have an error, emit an error message.
Chris Lattner207e1bc2009-08-15 17:41:04 +0000256 SM.PrintMessage(CheckStr.Loc, "expected string not found in input",
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000257 "error");
Chris Lattnerd7073db2009-07-11 19:21:09 +0000258
Daniel Dunbare9e27332009-07-11 22:06:10 +0000259 // Print the "scanning from here" line. If the current position is at the
260 // end of a line, advance to the start of the next line.
Chris Lattnerd7073db2009-07-11 19:21:09 +0000261 const char *Scan = CurPtr;
262 while (Scan != BufferEnd &&
263 (*Scan == ' ' || *Scan == '\t'))
264 ++Scan;
265 if (*Scan == '\n' || *Scan == '\r')
266 CurPtr = Scan+1;
267
268
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000269 SM.PrintMessage(SMLoc::getFromPointer(CurPtr), "scanning from here",
270 "note");
Chris Lattneraf9005d2009-07-09 00:19:21 +0000271 return 1;
Chris Lattner81cb8ca2009-07-08 18:44:05 +0000272 }
273
274 return 0;
275}