.
. RS \\$1 . nr rst2man-indent\\n[rst2man-indent-level] \\n[an-margin] . nr rst2man-indent-level +1 .rstReportMargin post:
.. . RE indent \\n[an-margin]
old: \\n[rst2man-indent\\n[rst2man-indent-level]]
.nr rst2man-indent-level -1 new: \\n[rst2man-indent\\n[rst2man-indent-level]]
..
-help Print a summary of command line options. NINDENT NDENT 0.0
--check-prefix prefix FileCheck searches the contents of match-filename for patterns to match. By default, these patterns are prefixed with "CHECK:". If you\(aqd like to use a different prefix (e.g. because the same input file is checking multiple different tool or options), the \%--check-prefix argument allows you to specify one or more prefixes to match. Multiple prefixes are useful for tests which might change for different run options, but most lines remain the same. NINDENT NDENT 0.0
--input-file filename File to check (defaults to stdin). NINDENT NDENT 0.0
--strict-whitespace By default, FileCheck canonicalizes input horizontal whitespace (spaces and tabs) which causes it to ignore these differences (a space will match a tab). The \%--strict-whitespace argument disables this behavior. End-of-line sequences are canonicalized to UNIX-style \en in all modes. NINDENT NDENT 0.0
--implicit-check-not check-pattern Adds implicit negative checks for the specified patterns between positive checks. The option allows writing stricter tests without stuffing them with CHECK-NOTs. For example, "--implicit-check-not warning:" can be useful when testing diagnostic messages from tools that don\(aqt have an option similar to clang -verify. With this option FileCheck will verify that input does not contain warnings not covered by any CHECK: patterns. NINDENT NDENT 0.0
-version Show the version number of this program. NINDENT
; RUN: llvm-as < %s | llc -march=x86-64 | FileCheck %sNINDENT NINDENT This syntax says to pipe the current file ("%s") into llvm-as, pipe that into llc, then pipe the output of llc into FileCheck. This means that FileCheck will be verifying its standard input (the llc output) against the filename argument specified (the original .ll file specified by "%s"). To see how this works, let\(aqs look at the rest of the .ll file (after the RUN line): NDENT 0.0 NDENT 3.5
define void @sub1(i32* %p, i32 %v) { entry: ; CHECK: sub1: ; CHECK: subl %0 = tail call i32 @llvm.atomic.load.sub.i32.p0i32(i32* %p, i32 %v) ret void } define void @inc4(i64* %p) { entry: ; CHECK: inc4: ; CHECK: incq %0 = tail call i64 @llvm.atomic.load.add.i64.p0i64(i64* %p, i64 1) ret void }NINDENT NINDENT Here you can see some "CHECK:" lines specified in comments. Now you can see how the file is piped into llvm-as, then llc, and the machine code output is what we are verifying. FileCheck checks the machine code output to verify that it matches what the "CHECK:" lines specify. The syntax of the "CHECK:" lines is very simple: they are fixed strings that must occur in order. FileCheck defaults to ignoring horizontal whitespace differences (e.g. a space is allowed to match a tab) but otherwise, the contents of the "CHECK:" line is required to match some thing in the test file exactly. One nice thing about FileCheck (compared to grep) is that it allows merging test cases together into logical groups. For example, because the test above is checking for the "sub1:" and "inc4:" labels, it will not match unless there is a "subl" in between those labels. If it existed somewhere else in the file, that would not count: "grep subl" matches if "subl" exists anywhere in the file.
; RUN: llvm-as < %s | llc -mtriple=i686-apple-darwin9 -mattr=sse41 \e ; RUN: | FileCheck %s -check-prefix=X32 ; RUN: llvm-as < %s | llc -mtriple=x86_64-apple-darwin9 -mattr=sse41 \e ; RUN: | FileCheck %s -check-prefix=X64 define <4 x i32> @pinsrd_1(i32 %s, <4 x i32> %tmp) nounwind { %tmp1 = insertelement <4 x i32>; %tmp, i32 %s, i32 1 ret <4 x i32> %tmp1 ; X32: pinsrd_1: ; X32: pinsrd $1, 4(%esp), %xmm0 ; X64: pinsrd_1: ; X64: pinsrd $1, %edi, %xmm0 }NINDENT NINDENT In this case, we\(aqre testing that we get the expected code generation with both 32-bit and 64-bit code generation.
define void @t2(<2 x double>* %r, <2 x double>* %A, double %B) { %tmp3 = load <2 x double>* %A, align 16 %tmp7 = insertelement <2 x double> undef, double %B, i32 0 %tmp9 = shufflevector <2 x double> %tmp3, <2 x double> %tmp7, <2 x i32> < i32 0, i32 2 > store <2 x double> %tmp9, <2 x double>* %r, align 16 ret void ; CHECK: t2: ; CHECK: movl 8(%esp), %eax ; CHECK-NEXT: movapd (%eax), %xmm0 ; CHECK-NEXT: movhpd 12(%esp), %xmm0 ; CHECK-NEXT: movl 4(%esp), %eax ; CHECK-NEXT: movapd %xmm0, (%eax) ; CHECK-NEXT: ret }NINDENT NINDENT "CHECK-NEXT:" directives reject the input unless there is exactly one newline between it and the previous directive. A "CHECK-NEXT:" cannot be the first directive in a file.
!0 = !DILocation(line: 5, scope: !1, inlinedAt: !2) ; CHECK: !DILocation(line: 5, ; CHECK-NOT: column: ; CHECK-SAME: scope: ![[SCOPE:[0-9]+]]NINDENT NINDENT "CHECK-SAME:" directives reject the input if there are any newlines between it and the previous directive. A "CHECK-SAME:" cannot be the first directive in a file.
define i8 @coerce_offset0(i32 %V, i32* %P) { store i32 %V, i32* %P %P2 = bitcast i32* %P to i8* %P3 = getelementptr i8* %P2, i32 2 %A = load i8* %P3 ret i8 %A ; CHECK: @coerce_offset0 ; CHECK-NOT: load ; CHECK: ret i8 }NINDENT NINDENT
// RUN: %clang_cc1 %s -emit-llvm -o - | FileCheck %s struct Foo { virtual void method(); }; Foo f; // emit vtable // CHECK-DAG: @_ZTV3Foo = struct Bar { virtual void method(); }; Bar b; // CHECK-DAG: @_ZTV3Bar =NINDENT NINDENT CHECK-NOT: directives could be mixed with CHECK-DAG: directives to exclude strings between the surrounding CHECK-DAG: directives. As a result, the surrounding CHECK-DAG: directives cannot be reordered, i.e. all occurrences matching CHECK-DAG: before CHECK-NOT: must not fall behind occurrences matching CHECK-DAG: after CHECK-NOT:. For example, NDENT 0.0 NDENT 3.5
; CHECK-DAG: BEFORE ; CHECK-NOT: NOT ; CHECK-DAG: AFTERNINDENT NINDENT This case will reject input strings where BEFORE occurs after AFTER. With captured variables, CHECK-DAG: is able to match valid topological orderings of a DAG with edges from the definition of a variable to its use. It\(aqs useful, e.g., when your test cases need to match different output sequences from the instruction scheduler. For example, NDENT 0.0 NDENT 3.5
; CHECK-DAG: add [[REG1:r[0-9]+]], r1, r2 ; CHECK-DAG: add [[REG2:r[0-9]+]], r3, r4 ; CHECK: mul r5, [[REG1]], [[REG2]]NINDENT NINDENT In this case, any order of that two add instructions will be allowed. If you are defining and using variables in the same CHECK-DAG: block, be aware that the definition rule can match after its use. So, for instance, the code below will pass: NDENT 0.0 NDENT 3.5
; CHECK-DAG: vmov.32 [[REG2:d[0-9]+]][0] ; CHECK-DAG: vmov.32 [[REG2]][1] vmov.32 d0[1] vmov.32 d0[0]NINDENT NINDENT While this other code, will not: NDENT 0.0 NDENT 3.5
; CHECK-DAG: vmov.32 [[REG2:d[0-9]+]][0] ; CHECK-DAG: vmov.32 [[REG2]][1] vmov.32 d1[1] vmov.32 d0[0]NINDENT NINDENT While this can be very useful, it\(aqs also dangerous, because in the case of register sequence, you must have a strong order (read before write, copy before use, etc). If the definition your test is looking for doesn\(aqt match (because of a bug in the compiler), it may match further away from the use, and mask real bugs away. In those cases, to enforce the order, use a non-DAG directive between DAG-blocks.
define %struct.C* @C_ctor_base(%struct.C* %this, i32 %x) { entry: ; CHECK-LABEL: C_ctor_base: ; CHECK: mov [[SAVETHIS:r[0-9]+]], r0 ; CHECK: bl A_ctor_base ; CHECK: mov r0, [[SAVETHIS]] %0 = bitcast %struct.C* %this to %struct.A* %call = tail call %struct.A* @A_ctor_base(%struct.A* %0) %1 = bitcast %struct.C* %this to %struct.B* %call2 = tail call %struct.B* @B_ctor_base(%struct.B* %1, i32 %x) ret %struct.C* %this } define %struct.D* @D_ctor_base(%struct.D* %this, i32 %x) { entry: ; CHECK-LABEL: D_ctor_base:NINDENT NINDENT The use of CHECK-LABEL: directives in this case ensures that the three CHECK: directives only accept lines corresponding to the body of the @C_ctor_base function, even if the patterns match lines found later in the file. Furthermore, if one of these three CHECK: directives fail, FileCheck will recover by continuing to the next block, allowing multiple test failures to be detected in a single invocation. There is no requirement that CHECK-LABEL: directives contain strings that correspond to actual syntactic labels in a source or output language: they must simply uniquely match a single line in the file being verified. CHECK-LABEL: directives cannot contain variable definitions or uses.
; CHECK: movhpd {{[0-9]+}}(%esp), {{%xmm[0-7]}}NINDENT NINDENT In this case, any offset from the ESP register will be allowed, and any xmm register will be allowed. Because regular expressions are enclosed with double braces, they are visually distinct, and you don\(aqt need to use escape characters within the double braces like you would in C. In the rare case that you want to match double braces explicitly from the input, you can use something ugly like {{[{][{]}} as your pattern.
; CHECK: test5: ; CHECK: notw [[REGISTER:%[a-z]+]] ; CHECK: andw {{.*}}[[REGISTER]]NINDENT NINDENT The first check line matches a regex %[a-z]+ and captures it into the variable REGISTER. The second line verifies that whatever is in REGISTER occurs later in the file after an "andw". FileCheck variable references are always contained in [[ ]] pairs, and their names can be formed with the regex [a-zA-Z][a-zA-Z0-9]*. If a colon follows the name, then it is a definition of the variable; otherwise, it is a use. FileCheck variables can be defined multiple times, and uses always get the latest value. Variables can also be used later on the same line they were defined on. For example: NDENT 0.0 NDENT 3.5
; CHECK: op [[REG:r[0-9]+]], [[REG]]NINDENT NINDENT Can be useful if you want the operands of op to be the same register, and don\(aqt care exactly which register it is.
// CHECK: test.cpp:[[@LINE+4]]:6: error: expected \(aq;\(aq after top level declarator // CHECK-NEXT: {{^int a}} // CHECK-NEXT: {{^ \e^}} // CHECK-NEXT: {{^ ;}} int aNINDENT NINDENT
.