Clang Project

clang_source_code/test/CodeGen/opt-record-MIR.c
1// REQUIRES: aarch64-registered-target
2// RUN: %clang_cc1 -triple arm64-apple-ios -S -o /dev/null %s -O2 -dwarf-column-info -Rpass-missed=regalloc 2>&1 | FileCheck -check-prefix=REMARK %s
3// RUN: %clang_cc1 -triple arm64-apple-ios -S -o /dev/null %s -O2 -dwarf-column-info 2>&1 | FileCheck -allow-empty -check-prefix=NO_REMARK %s
4// RUN: %clang_cc1 -triple arm64-apple-ios -S -o /dev/null %s -O2 -dwarf-column-info -opt-record-file %t.yaml
5// RUN: cat %t.yaml | FileCheck -check-prefix=YAML %s
6// RUN: %clang_cc1 -triple arm64-apple-ios -S -o /dev/null %s -O2 -dwarf-column-info -opt-record-file %t.yaml -opt-record-passes asm-printer
7// RUN: cat %t.yaml | FileCheck -check-prefix=PASSES %s
8
9void bar(float);
10
11void foo(float *p, int i) {
12  while (i--)  {
13    float f = *p;
14    asm("" ::
15        : "d0", "d1", "d2", "d3", "d4", "d5", "d6", "d7", "d8", "d9", "d10", "d11", "d12", "d13", "d14", "d15", "d16", "d17", "d18", "d19", "d20", "d21", "d22", "d23", "d24", "d25", "d26", "d27", "d28", "d29", "d30", "d31", "x0", "x1", "x2", "x3", "x4", "x5", "x6", "x7", "x8", "x9", "x10", "x11", "x12", "x13", "x14", "x15", "x16", "x17", "x18", "x19", "x20", "x21", "x22", "x23", "x24", "x25", "x26", "x27", "x28", "fp", "lr", "sp", "memory");
16    bar(f);
17  }
18}
19
20// REMARK: opt-record-MIR.c:{{[1-9][0-9]*}}:{{[1-9][0-9]*}}: remark: {{.}} spills {{.}} reloads generated in loop
21// NO_REMARK-NOT: remark:
22
23// YAML: --- !Missed
24// YAML: Pass:            regalloc
25// YAML: Name:            LoopSpillReload
26// YAML: DebugLoc:        { File: {{[^,]+}},
27// YAML:                    Line: {{[1-9][0-9]*}}
28// YAML:                    Column: {{[1-9][0-9]*}} }
29// YAML: Function:        foo
30// YAML: Args:
31// YAML:   - NumSpills:       '{{.}}'
32// YAML:   - String:          ' spills '
33// YAML:   - NumReloads:      '{{.}}'
34// YAML:   - String:          ' reloads '
35// YAML:   - String:          generated
36// YAML: ...
37
38// PASSES: Pass:            asm-printer
39// PASSES-NOT: regalloc
40