FileCheck.pod 9.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245
  1. =pod
  2. =head1 NAME
  3. FileCheck - Flexible pattern matching file verifier
  4. =head1 SYNOPSIS
  5. B<FileCheck> I<match-filename> [I<--check-prefix=XXX>] [I<--strict-whitespace>]
  6. =head1 DESCRIPTION
  7. B<FileCheck> reads two files (one from standard input, and one specified on the
  8. command line) and uses one to verify the other. This behavior is particularly
  9. useful for the testsuite, which wants to verify that the output of some tool
  10. (e.g. llc) contains the expected information (for example, a movsd from esp or
  11. whatever is interesting). This is similar to using grep, but it is optimized
  12. for matching multiple different inputs in one file in a specific order.
  13. The I<match-filename> file specifies the file that contains the patterns to
  14. match. The file to verify is always read from standard input.
  15. =head1 OPTIONS
  16. =over
  17. =item B<-help>
  18. Print a summary of command line options.
  19. =item B<--check-prefix> I<prefix>
  20. FileCheck searches the contents of I<match-filename> for patterns to match. By
  21. default, these patterns are prefixed with "CHECK:". If you'd like to use a
  22. different prefix (e.g. because the same input file is checking multiple
  23. different tool or options), the B<--check-prefix> argument allows you to specify
  24. a specific prefix to match.
  25. =item B<--strict-whitespace>
  26. By default, FileCheck canonicalizes input horizontal whitespace (spaces and
  27. tabs) which causes it to ignore these differences (a space will match a tab).
  28. The --strict-whitespace argument disables this behavior.
  29. =item B<-version>
  30. Show the version number of this program.
  31. =back
  32. =head1 EXIT STATUS
  33. If B<FileCheck> verifies that the file matches the expected contents, it exits
  34. with 0. Otherwise, if not, or if an error occurs, it will exit with a non-zero
  35. value.
  36. =head1 TUTORIAL
  37. FileCheck is typically used from LLVM regression tests, being invoked on the RUN
  38. line of the test. A simple example of using FileCheck from a RUN line looks
  39. like this:
  40. ; RUN: llvm-as < %s | llc -march=x86-64 | FileCheck %s
  41. This syntax says to pipe the current file ("%s") into llvm-as, pipe that into
  42. llc, then pipe the output of llc into FileCheck. This means that FileCheck will
  43. be verifying its standard input (the llc output) against the filename argument
  44. specified (the original .ll file specified by "%s"). To see how this works,
  45. lets look at the rest of the .ll file (after the RUN line):
  46. define void @sub1(i32* %p, i32 %v) {
  47. entry:
  48. ; <b>CHECK: sub1:</b>
  49. ; <b>CHECK: subl</b>
  50. %0 = tail call i32 @llvm.atomic.load.sub.i32.p0i32(i32* %p, i32 %v)
  51. ret void
  52. }
  53. define void @inc4(i64* %p) {
  54. entry:
  55. ; <b>CHECK: inc4:</b>
  56. ; <b>CHECK: incq</b>
  57. %0 = tail call i64 @llvm.atomic.load.add.i64.p0i64(i64* %p, i64 1)
  58. ret void
  59. }
  60. Here you can see some "CHECK:" lines specified in comments. Now you can see
  61. how the file is piped into llvm-as, then llc, and the machine code output is
  62. what we are verifying. FileCheck checks the machine code output to verify that
  63. it matches what the "CHECK:" lines specify.
  64. The syntax of the CHECK: lines is very simple: they are fixed strings that
  65. must occur in order. FileCheck defaults to ignoring horizontal whitespace
  66. differences (e.g. a space is allowed to match a tab) but otherwise, the contents
  67. of the CHECK: line is required to match some thing in the test file exactly.
  68. One nice thing about FileCheck (compared to grep) is that it allows merging
  69. test cases together into logical groups. For example, because the test above
  70. is checking for the "sub1:" and "inc4:" labels, it will not match unless there
  71. is a "subl" in between those labels. If it existed somewhere else in the file,
  72. that would not count: "grep subl" matches if subl exists anywhere in the
  73. file.
  74. =head2 The FileCheck -check-prefix option
  75. The FileCheck -check-prefix option allows multiple test configurations to be
  76. driven from one .ll file. This is useful in many circumstances, for example,
  77. testing different architectural variants with llc. Here's a simple example:
  78. ; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin9 -mattr=sse41 \
  79. ; RUN: | <b>FileCheck %s -check-prefix=X32</b>
  80. ; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin9 -mattr=sse41 \
  81. ; RUN: | <b>FileCheck %s -check-prefix=X64</b>
  82. define <4 x i32> @pinsrd_1(i32 %s, <4 x i32> %tmp) nounwind {
  83. %tmp1 = insertelement <4 x i32>; %tmp, i32 %s, i32 1
  84. ret <4 x i32> %tmp1
  85. ; <b>X32:</b> pinsrd_1:
  86. ; <b>X32:</b> pinsrd $1, 4(%esp), %xmm0
  87. ; <b>X64:</b> pinsrd_1:
  88. ; <b>X64:</b> pinsrd $1, %edi, %xmm0
  89. }
  90. In this case, we're testing that we get the expected code generation with
  91. both 32-bit and 64-bit code generation.
  92. =head2 The "CHECK-NEXT:" directive
  93. Sometimes you want to match lines and would like to verify that matches
  94. happen on exactly consequtive lines with no other lines in between them. In
  95. this case, you can use CHECK: and CHECK-NEXT: directives to specify this. If
  96. you specified a custom check prefix, just use "<PREFIX>-NEXT:". For
  97. example, something like this works as you'd expect:
  98. define void @t2(<2 x double>* %r, <2 x double&gt;* %A, double %B) {
  99. %tmp3 = load <2 x double&gt;* %A, align 16
  100. %tmp7 = insertelement <2 x double&gt; undef, double %B, i32 0
  101. %tmp9 = shufflevector <2 x double&gt; %tmp3,
  102. <2 x double&gt; %tmp7,
  103. <2 x i32&gt; < i32 0, i32 2 &gt;
  104. store <2 x double&gt; %tmp9, <2 x double&gt;* %r, align 16
  105. ret void
  106. ; <b>CHECK:</b> t2:
  107. ; <b>CHECK:</b> movl 8(%esp), %eax
  108. ; <b>CHECK-NEXT:</b> movapd (%eax), %xmm0
  109. ; <b>CHECK-NEXT:</b> movhpd 12(%esp), %xmm0
  110. ; <b>CHECK-NEXT:</b> movl 4(%esp), %eax
  111. ; <b>CHECK-NEXT:</b> movapd %xmm0, (%eax)
  112. ; <b>CHECK-NEXT:</b> ret
  113. }
  114. CHECK-NEXT: directives reject the input unless there is exactly one newline
  115. between it an the previous directive. A CHECK-NEXT cannot be the first
  116. directive in a file.
  117. =head2 The "CHECK-NOT:" directive
  118. The CHECK-NOT: directive is used to verify that a string doesn't occur
  119. between two matches (or the first match and the beginning of the file). For
  120. example, to verify that a load is removed by a transformation, a test like this
  121. can be used:
  122. define i8 @coerce_offset0(i32 %V, i32* %P) {
  123. store i32 %V, i32* %P
  124. %P2 = bitcast i32* %P to i8*
  125. %P3 = getelementptr i8* %P2, i32 2
  126. %A = load i8* %P3
  127. ret i8 %A
  128. ; <b>CHECK:</b> @coerce_offset0
  129. ; <b>CHECK-NOT:</b> load
  130. ; <b>CHECK:</b> ret i8
  131. }
  132. =head2 FileCheck Pattern Matching Syntax
  133. The CHECK: and CHECK-NOT: directives both take a pattern to match. For most
  134. uses of FileCheck, fixed string matching is perfectly sufficient. For some
  135. things, a more flexible form of matching is desired. To support this, FileCheck
  136. allows you to specify regular expressions in matching strings, surrounded by
  137. double braces: B<{{yourregex}}>. Because we want to use fixed string
  138. matching for a majority of what we do, FileCheck has been designed to support
  139. mixing and matching fixed string matching with regular expressions. This allows
  140. you to write things like this:
  141. ; CHECK: movhpd <b>{{[0-9]+}}</b>(%esp), <b>{{%xmm[0-7]}}</b>
  142. In this case, any offset from the ESP register will be allowed, and any xmm
  143. register will be allowed.
  144. Because regular expressions are enclosed with double braces, they are
  145. visually distinct, and you don't need to use escape characters within the double
  146. braces like you would in C. In the rare case that you want to match double
  147. braces explicitly from the input, you can use something ugly like
  148. B<{{[{][{]}}> as your pattern.
  149. =head2 FileCheck Variables
  150. It is often useful to match a pattern and then verify that it occurs again
  151. later in the file. For codegen tests, this can be useful to allow any register,
  152. but verify that that register is used consistently later. To do this, FileCheck
  153. allows named variables to be defined and substituted into patterns. Here is a
  154. simple example:
  155. ; CHECK: test5:
  156. ; CHECK: notw <b>[[REGISTER:%[a-z]+]]</b>
  157. ; CHECK: andw {{.*}}<b>[[REGISTER]]</b>
  158. The first check line matches a regex (<tt>%[a-z]+</tt>) and captures it into
  159. the variables "REGISTER". The second line verifies that whatever is in REGISTER
  160. occurs later in the file after an "andw". FileCheck variable references are
  161. always contained in <tt>[[ ]]</tt> pairs, are named, and their names can be
  162. formed with the regex "<tt>[a-zA-Z_][a-zA-Z0-9_]*</tt>". If a colon follows the
  163. name, then it is a definition of the variable, if not, it is a use.
  164. FileCheck variables can be defined multiple times, and uses always get the
  165. latest value. Note that variables are all read at the start of a "CHECK" line
  166. and are all defined at the end. This means that if you have something like
  167. "<tt>CHECK: [[XYZ:.*]]x[[XYZ]]<tt>" that the check line will read the previous
  168. value of the XYZ variable and define a new one after the match is performed. If
  169. you need to do something like this you can probably take advantage of the fact
  170. that FileCheck is not actually line-oriented when it matches, this allows you to
  171. define two separate CHECK lines that match on the same line.
  172. =head1 AUTHORS
  173. Maintained by The LLVM Team (L<http://llvm.org>).
  174. =cut