aboutsummaryrefslogtreecommitdiff
path: root/utils/FileCheck/FileCheck.cpp
blob: 8e8c1cde9272cdf50cd3ef41ef3f6058105a7e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
//===- FileCheck.cpp - Check that File's Contents match what is expected --===//
//
//                     The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
//
// FileCheck does a line-by line check of a file that validates whether it
// contains the expected content.  This is useful for regression tests etc.
//
// This program exits with an error status of 2 on error, exit status of 0 if
// the file matched the expected contents, and exit status of 1 if it did not
// contain the expected contents.
//
//===----------------------------------------------------------------------===//

#include "llvm/Support/CommandLine.h"
#include "llvm/Support/MemoryBuffer.h"
#include "llvm/Support/PrettyStackTrace.h"
#include "llvm/Support/Regex.h"
#include "llvm/Support/SourceMgr.h"
#include "llvm/Support/raw_ostream.h"
#include "llvm/System/Signals.h"
using namespace llvm;

static cl::opt<std::string>
CheckFilename(cl::Positional, cl::desc("<check-file>"), cl::Required);

static cl::opt<std::string>
InputFilename("input-file", cl::desc("File to check (defaults to stdin)"),
              cl::init("-"), cl::value_desc("filename"));

static cl::opt<std::string>
CheckPrefix("check-prefix", cl::init("CHECK"),
            cl::desc("Prefix to use from check file (defaults to 'CHECK')"));

static cl::opt<bool>
NoCanonicalizeWhiteSpace("strict-whitespace",
              cl::desc("Do not treat all horizontal whitespace as equivalent"));

//===----------------------------------------------------------------------===//
// Pattern Handling Code.
//===----------------------------------------------------------------------===//

class Pattern {
  /// Chunks - The pattern chunks to match.  If the bool is false, it is a fixed
  /// string match, if it is true, it is a regex match.
  SmallVector<std::pair<StringRef, bool>, 4> Chunks;
public:
  
  Pattern() { }
  
  bool ParsePattern(StringRef PatternStr, SourceMgr &SM);
  
  /// Match - Match the pattern string against the input buffer Buffer.  This
  /// returns the position that is matched or npos if there is no match.  If
  /// there is a match, the size of the matched string is returned in MatchLen.
  size_t Match(StringRef Buffer, size_t &MatchLen) const;
};

bool Pattern::ParsePattern(StringRef PatternStr, SourceMgr &SM) {
  // Ignore trailing whitespace.
  while (!PatternStr.empty() &&
         (PatternStr.back() == ' ' || PatternStr.back() == '\t'))
    PatternStr = PatternStr.substr(0, PatternStr.size()-1);
  
  // Check that there is something on the line.
  if (PatternStr.empty()) {
    SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
                    "found empty check string with prefix '"+CheckPrefix+":'",
                    "error");
    return true;
  }
  
  // Scan the pattern to break it into regex and non-regex pieces.
  while (!PatternStr.empty()) {
    // Handle fixed string matches.
    if (PatternStr.size() < 2 ||
        PatternStr[0] != '{' || PatternStr[1] != '{') {
      // Find the end, which is the start of the next regex.
      size_t FixedMatchEnd = PatternStr.find("{{");
      
      Chunks.push_back(std::make_pair(PatternStr.substr(0, FixedMatchEnd),
                                      false));
      PatternStr = PatternStr.substr(FixedMatchEnd);
      continue;
    }
    
    // Otherwise, this is the start of a regex match.  Scan for the }}.
    size_t End = PatternStr.find("}}");
    if (End == StringRef::npos) {
      SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()),
                      "found start of regex string with no end '}}'", "error");
      return true;
    }
    
    Regex R(PatternStr.substr(2, End-2));
    std::string Error;
    if (!R.isValid(Error)) {
      SM.PrintMessage(SMLoc::getFromPointer(PatternStr.data()+2),
                      "invalid regex: " + Error, "error");
      return true;
    }
    
    Chunks.push_back(std::make_pair(PatternStr.substr(2, End-2), true));
    PatternStr = PatternStr.substr(End+2);
  }

  return false;
}

/// Match - Match the pattern string against the input buffer Buffer.  This
/// returns the position that is matched or npos if there is no match.  If
/// there is a match, the size of the matched string is returned in MatchLen.
size_t Pattern::Match(StringRef Buffer, size_t &MatchLen) const {
  size_t FirstMatch = StringRef::npos;
  MatchLen = 0;
  
  SmallVector<StringRef, 4> MatchInfo;
  
  while (!Buffer.empty()) {
    StringRef MatchAttempt = Buffer;
    
    unsigned ChunkNo = 0, e = Chunks.size();
    for (; ChunkNo != e; ++ChunkNo) {
      StringRef PatternStr = Chunks[ChunkNo].first;
      
      size_t ThisMatch = StringRef::npos;
      size_t ThisLength = StringRef::npos;
      if (!Chunks[ChunkNo].second) {
        // Fixed string match.
        ThisMatch = MatchAttempt.find(Chunks[ChunkNo].first);
        ThisLength = Chunks[ChunkNo].first.size();
      } else if (Regex(Chunks[ChunkNo].first, Regex::Sub).match(MatchAttempt, &MatchInfo)) {
        // Successful regex match.
        assert(!MatchInfo.empty() && "Didn't get any match");
        StringRef FullMatch = MatchInfo[0];
        MatchInfo.clear();
        
        ThisMatch = FullMatch.data()-MatchAttempt.data();
        ThisLength = FullMatch.size();
      }
      
      // Otherwise, what we do depends on if this is the first match or not.  If
      // this is the first match, it doesn't match to match at the start of
      // MatchAttempt.
      if (ChunkNo == 0) {
        // If the first match fails then this pattern will never match in
        // Buffer.
        if (ThisMatch == StringRef::npos)
          return ThisMatch;
        
        FirstMatch = ThisMatch;
        MatchAttempt = MatchAttempt.substr(FirstMatch);
        ThisMatch = 0;
      }
      
      // If this chunk didn't match, then the entire pattern didn't match from
      // FirstMatch, try later in the buffer.
      if (ThisMatch == StringRef::npos)
        break;
      
      // Ok, if the match didn't match at the beginning of MatchAttempt, then we
      // have something like "ABC{{DEF}} and something was in-between.  Reject
      // the match.
      if (ThisMatch != 0)
        break;
      
      // Otherwise, match the string and move to the next chunk.
      MatchLen += ThisLength;
      MatchAttempt = MatchAttempt.substr(ThisLength);
    }

    // If the whole thing matched, we win.
    if (ChunkNo == e)
      return FirstMatch;
    
    // Otherwise, try matching again after FirstMatch to see if this pattern
    // matches later in the buffer.
    Buffer = Buffer.substr(FirstMatch+1);
  }
  
  // If we ran out of stuff to scan, then we didn't match.
  return StringRef::npos;
}


//===----------------------------------------------------------------------===//
// Check Strings.
//===----------------------------------------------------------------------===//

/// CheckString - This is a check that we found in the input file.
struct CheckString {
  /// Pat - The pattern to match.
  Pattern Pat;
  
  /// Loc - The location in the match file that the check string was specified.
  SMLoc Loc;
  
  /// IsCheckNext - This is true if this is a CHECK-NEXT: directive (as opposed
  /// to a CHECK: directive.
  bool IsCheckNext;
  
  /// NotStrings - These are all of the strings that are disallowed from
  /// occurring between this match string and the previous one (or start of
  /// file).
  std::vector<std::pair<SMLoc, Pattern> > NotStrings;
  
  CheckString(const Pattern &P, SMLoc L, bool isCheckNext)
    : Pat(P), Loc(L), IsCheckNext(isCheckNext) {}
};

/// CanonicalizeInputFile - Remove duplicate horizontal space from the specified
/// memory buffer, free it, and return a new one.
static MemoryBuffer *CanonicalizeInputFile(MemoryBuffer *MB) {
  SmallVector<char, 16> NewFile;
  NewFile.reserve(MB->getBufferSize());
  
  for (const char *Ptr = MB->getBufferStart(), *End = MB->getBufferEnd();
       Ptr != End; ++Ptr) {
    // If C is not a horizontal whitespace, skip it.
    if (*Ptr != ' ' && *Ptr != '\t') {
      NewFile.push_back(*Ptr);
      continue;
    }
    
    // Otherwise, add one space and ad