File: legalize-ext-csedebug-output.mir

package info (click to toggle)
llvm-toolchain-9 1%3A9.0.1-16
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 882,436 kB
  • sloc: cpp: 4,167,636; ansic: 714,256; asm: 457,610; python: 155,927; objc: 65,094; sh: 42,856; lisp: 26,908; perl: 7,786; pascal: 7,722; makefile: 6,881; ml: 5,581; awk: 3,648; cs: 2,027; xml: 888; javascript: 381; ruby: 156
file content (31 lines) | stat: -rw-r--r-- 1,410 bytes parent folder | download | duplicates (4)
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
# RUN: llc -march=aarch64 -run-pass=legalizer %s -o - -enable-cse-in-legalizer=1 -debug-only=cseinfo 2>&1 | FileCheck %s
# Test the -debug-only=cseinfo option here to make sure we're recording new instructions and printing the hit count
# at the end.
# REQUIRES: asserts
---
name:            test_cse_in_legalizer
body:             |
  bb.0.entry:
    ; CHECK: CSEInfo::Add MI: %{{[0-9]+}}:_(s8) = G_TRUNC
    ; CHECK: CSEInfo::Add MI: %{{[0-9]+}}:_(s32) = G_ZEXT
    ; CHECK: CSEInfo::Add MI: %{{[0-9]+}}:_(s8) = G_TRUNC
    ; CHECK: CSEInfo::Add MI: %{{[0-9]+}}:_(s32) = G_ZEXT
    ; CHECK: CSEInfo::Recording new MI G_CONSTANT
    ; CHECK: CSEInfo::Recording new MI G_CONSTANT
    ; CHECK: CSEInfo::Recording new MI G_TRUNC
    ; CHECK: CSEInfo::Recording new MI G_TRUNC
    ; CHECK: CSEInfo::Recording new MI G_AND
    ; CHECK: CSEInfo::Recording new MI G_AND
    ; CHECK: CSEInfo::Found Instr %{{[0-9]+}}:_(s32) = G_CONSTANT
    ; CHECK: CSEInfo::Found Instr %{{[0-9]+}}:_(s32) = G_TRUNC
    ; CHECK: CSEInfo::Found Instr %{{[0-9]+}}:_(s32) = G_AND
    ; CHECK: CSEInfo::CSE Hit for Opc {{[0-9]+}} : 1
    ; CHECK: CSEInfo::CSE Hit for Opc {{[0-9]+}} : 1
    ; CHECK: CSEInfo::CSE Hit for Opc {{[0-9]+}} : 1
    %0:_(s64) = COPY $x0
    %1:_(s8) = G_TRUNC %0(s64)
    %19:_(s32) = G_ZEXT %1(s8)
    $w0 = COPY %19(s32)
    %2:_(s8) = G_TRUNC %0(s64)
    %20:_(s32) = G_ZEXT %2(s8)
    $w0 = COPY %20(s32)