File: ifcvt.mir

package info (click to toggle)
llvm-toolchain-13 1%3A13.0.1-11
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 1,418,840 kB
  • sloc: cpp: 5,290,826; ansic: 996,570; asm: 544,593; python: 188,212; objc: 72,027; lisp: 30,291; f90: 25,395; sh: 24,898; javascript: 9,780; pascal: 9,398; perl: 7,484; ml: 5,432; awk: 3,523; makefile: 2,913; xml: 953; cs: 573; fortran: 539
file content (53 lines) | stat: -rw-r--r-- 1,423 bytes parent folder | download | duplicates (20)
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
# RUN: llc -mtriple=ppc32-- -run-pass=if-converter -o - -verify-machineinstrs \
# RUN:   %s | FileCheck %s

---
name:            testBDZLR
body:             |
  bb.0.entry:
    successors: %bb.5(0x40000000), %bb.1(0x40000000)
    liveins: $r3
  
    renamable $r4 = LI 0
    renamable $cr0 = CMPLWI killed renamable $r4, 0
    BCC 68, renamable $cr0, %bb.5
  
  bb.1:
    successors: %bb.2(0x40000000), %bb.5(0x40000000)
    liveins: $cr0, $r3
  
    BCC 68, killed renamable $cr0, %bb.5
  
  bb.2:
    successors: %bb.3(0x80000000)
    liveins: $r3
  
    MTCTRloop killed renamable $r3, implicit-def dead $ctr
    renamable $r3 = LI 0
    renamable $r5 = IMPLICIT_DEF
    renamable $r4 = LI 0
  
  bb.3:
    successors: %bb.4(0x7c000000), %bb.5(0x04000000)
    liveins: $r3, $r4, $r5
  
    renamable $r6 = RLWINM renamable $r4, 3, 0, 28
    renamable $r4 = ADDIC killed renamable $r4, 1, implicit-def $carry
    renamable $r5 = ADD4 killed renamable $r5, killed renamable $r6
    renamable $r6 = ADD4 killed renamable $r6, renamable $r6
    renamable $r3 = ADDZE killed renamable $r3, implicit-def dead $carry, implicit $carry
    BDZ %bb.5, implicit-def $ctr, implicit $ctr
  
  bb.4:
    successors: %bb.3(0x80000000)
    liveins: $r3, $r4
  
    B %bb.3
  
  bb.5:
    BLR implicit $lr, implicit $rm


  ; CHECK-LABEL: name: testBDZLR
  ; CHECK: BDZLR implicit $lr, implicit $rm, implicit $ctr, implicit-def $ctr
...