File: x86-cmov-converter.mir

package info (click to toggle)
swiftlang 6.0.3-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,519,992 kB
  • sloc: cpp: 9,107,863; ansic: 2,040,022; asm: 1,135,751; python: 296,500; objc: 82,456; f90: 60,502; lisp: 34,951; pascal: 19,946; sh: 18,133; perl: 7,482; ml: 4,937; javascript: 4,117; makefile: 3,840; awk: 3,535; xml: 914; fortran: 619; cs: 573; ruby: 573
file content (192 lines) | stat: -rw-r--r-- 8,539 bytes parent folder | download | duplicates (12)
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
# RUN: llc %s -o - --run-pass=x86-cmov-conversion -mtriple=x86_64-- | FileCheck %s
# REQUIRES: x86-registered-target
#
# Check that when we create new blocks and PHIs to represent CMOVs, that the
# debug-instr-number is replaced on the new instruction, to preserve variable
# locations. Check that this still works when unfolding memory operands, which
# involves more decomposition of instructions.
#
# CHECK-LABEL: name: CmovInHotPath
# CHECK-LABEL: bb.3.for.body:
# CHECK: CMOV32rr {{.*}}, debug-instr-number 1
#
# CHECK-LABEL: name: test_cmov_memoperand_in_group_reuse_for_addr2
# CHECK-LABEL: bb.2.entry:
# CHECK-NEXT:  PHI {{.*}} debug-instr-number 1,
# CHECK-NEXT:  PHI {{.*}} debug-instr-number 2,
--- |
  ; ModuleID = 'x86-cmov-converter.ll'
  source_filename = "x86-cmov-converter.ll"
  target datalayout = "e-m:e-p270:32:32-p271:32:32-p272:64:64-i64:64-f80:128-n8:16:32:64-S128"

  ; Function Attrs: nocallback nofree nosync nounwind speculatable willreturn memory(none)
  declare void @llvm.dbg.value(metadata, metadata, metadata) #0

  define void @CmovInHotPath(i32 %n, i32 %a, i32 %b, ptr nocapture %c, ptr nocapture readnone %d) !dbg !7 {
  entry:
    %cmp14 = icmp sgt i32 %n, 0, !dbg !12
    br i1 %cmp14, label %for.body.preheader, label %for.cond.cleanup

  for.body.preheader:                               ; preds = %entry
    %wide.trip.count = zext i32 %n to i64, !dbg !13
    br label %for.body

  for.cond.cleanup:                                 ; preds = %for.body, %entry
    ret void

  for.body:                                         ; preds = %for.body, %for.body.preheader
    %lsr.iv1 = phi ptr [ %uglygep, %for.body ], [ %c, %for.body.preheader ]
    %lsr.iv = phi i64 [ %lsr.iv.next, %for.body ], [ %wide.trip.count, %for.body.preheader ]
    %0 = load i32, ptr %lsr.iv1, align 4, !dbg !13
    %add = add nsw i32 %0, 1, !dbg !13
    %mul = mul nsw i32 %0, %a, !dbg !13
    %cmp3 = icmp sgt i32 %mul, %b, !dbg !13
    %. = select i1 %cmp3, i32 10, i32 %add, !dbg !13
    call void @llvm.dbg.value(metadata i32 %., metadata !14, metadata !DIExpression()), !dbg !13
    %mul7 = mul nsw i32 %., %add, !dbg !13
    store i32 %mul7, ptr %lsr.iv1, align 4, !dbg !13
    %lsr.iv.next = add nsw i64 %lsr.iv, -1, !dbg !13
    %uglygep = getelementptr i8, ptr %lsr.iv1, i64 4, !dbg !13
    %exitcond = icmp eq i64 %lsr.iv.next, 0, !dbg !13
    br i1 %exitcond, label %for.cond.cleanup, label %for.body, !dbg !13
  }

  define i32 @test_cmov_memoperand_in_group_reuse_for_addr2(i32 %a, i32 %b, ptr %x, ptr %y) !dbg !15 {
  entry:
    %cond = icmp ugt i32 %a, %b, !dbg !16
    %load1 = load ptr, ptr %y, align 8, !dbg !16
    %p = select i1 %cond, ptr %x, ptr %load1, !dbg !16
    call void @llvm.dbg.value(metadata ptr %p, metadata !17, metadata !DIExpression()), !dbg !16
    %load2 = load i32, ptr %p, align 4, !dbg !16
    %z = select i1 %cond, i32 %a, i32 %load2, !dbg !16
    call void @llvm.dbg.value(metadata i32 %z, metadata !18, metadata !DIExpression()), !dbg !16
    ret i32 %z, !dbg !16
  }

  attributes #0 = { nocallback nofree nosync nounwind speculatable willreturn memory(none) }

  !llvm.dbg.cu = !{!0}
  !llvm.module.flags = !{!3, !4, !5}
  !llvm.ident = !{!6}

  !0 = distinct !DICompileUnit(language: DW_LANG_C99, file: !1, isOptimized: false, runtimeVersion: 0, emissionKind: FullDebug, enums: !2, splitDebugInlining: false, nameTableKind: None)
  !1 = !DIFile(filename: "test.c", directory: "/tmp/out.c")
  !2 = !{}
  !3 = !{i32 7, !"Dwarf Version", i32 4}
  !4 = !{i32 2, !"Debug Info Version", i32 3}
  !5 = !{i32 1, !"wchar_size", i32 4}
  !6 = !{!""}
  !7 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 3, type: !8, scopeLine: 3, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2)
  !8 = !DISubroutineType(types: !9)
  !9 = !{!10, !11, !11}
  !10 = !DIBasicType(name: "int", size: 32, encoding: DW_ATE_signed)
  !11 = !DIBasicType(name: "long int", size: 64, encoding: DW_ATE_signed)
  !12 = !DILocation(line: 16, column: 3, scope: !7)
  !13 = !DILocation(line: 15, column: 3, scope: !7)
  !14 = !DILocalVariable(name: "bar", arg: 1, scope: !7, file: !1, line: 3, type: !11)
  !15 = distinct !DISubprogram(name: "foo", scope: !1, file: !1, line: 3, type: !8, scopeLine: 3, flags: DIFlagPrototyped, spFlags: DISPFlagDefinition, unit: !0, retainedNodes: !2)
  !16 = !DILocation(line: 16, column: 3, scope: !15)
  !17 = !DILocalVariable(name: "bar", arg: 1, scope: !15, file: !1, line: 3, type: !11)
  !18 = !DILocalVariable(name: "baz", arg: 2, scope: !15, file: !1, line: 3, type: !11)

...
---
name:            CmovInHotPath
tracksRegLiveness: true
debugInstrRef:   true
registers:
  - { id: 0, class: gr64, preferred-register: '' }
  - { id: 1, class: gr64, preferred-register: '' }
  - { id: 2, class: gr64, preferred-register: '' }
  - { id: 3, class: gr64, preferred-register: '' }
  - { id: 4, class: gr64, preferred-register: '' }
  - { id: 5, class: gr32, preferred-register: '' }
  - { id: 6, class: gr32, preferred-register: '' }
  - { id: 7, class: gr32, preferred-register: '' }
liveins:
  - { reg: '$edi', virtual-reg: '%5' }
  - { reg: '$esi', virtual-reg: '%6' }
  - { reg: '$edx', virtual-reg: '%7' }
  - { reg: '$rcx', virtual-reg: '%8' }
machineFunctionInfo: {}
body:             |
  bb.0.entry:
    successors: %bb.1(0x50000000), %bb.2(0x30000000)
    liveins: $edi, $esi, $edx, $rcx

    %8:gr64 = COPY $rcx
    %7:gr32 = COPY $edx
    %6:gr32 = COPY $esi
    %5:gr32 = COPY $edi
    TEST32rr %5, %5, implicit-def $eflags, debug-location !12
    JCC_1 %bb.2, 14, implicit $eflags
    JMP_1 %bb.1

  bb.1.for.body.preheader:
    successors: %bb.3(0x80000000)

    %10:gr32 = MOV32rr %5, debug-location !13
    %0:gr64 = SUBREG_TO_REG 0, killed %10, %subreg.sub_32bit, debug-location !13
    JMP_1 %bb.3

  bb.2.for.cond.cleanup:
    RET 0

  bb.3.for.body:
    successors: %bb.2(0x04000000), %bb.3(0x7c000000)

    %1:gr64 = PHI %8, %bb.1, %4, %bb.3
    %2:gr64 = PHI %0, %bb.1, %3, %bb.3
    %11:gr32 = MOV32rm %1, 1, $noreg, 0, $noreg, debug-location !13 :: (load (s32) from %ir.lsr.iv1)
    %12:gr32 = nsw INC32r %11, implicit-def dead $eflags, debug-location !13
    %13:gr32 = nsw IMUL32rr %11, %6, implicit-def dead $eflags, debug-location !13
    %14:gr32 = SUB32rr %13, %7, implicit-def $eflags, debug-location !13
    %15:gr32 = MOV32ri 10
    %16:gr32 = CMOV32rr %12, killed %15, 15, implicit $eflags, debug-instr-number 1, debug-location !13
    DBG_INSTR_REF !14, !DIExpression(DW_OP_LLVM_arg, 0), dbg-instr-ref(1, 0), debug-location !13
    %17:gr32 = nsw IMUL32rr %16, %12, implicit-def dead $eflags, debug-location !13
    MOV32mr %1, 1, $noreg, 0, $noreg, killed %17, debug-location !13 :: (store (s32) into %ir.lsr.iv1)
    %4:gr64 = ADD64ri8 %1, 4, implicit-def dead $eflags, debug-location !13
    %3:gr64 = DEC64r %2, implicit-def $eflags, debug-location !13
    JCC_1 %bb.2, 4, implicit $eflags, debug-location !13
    JMP_1 %bb.3, debug-location !13

...
---
name:            test_cmov_memoperand_in_group_reuse_for_addr2
alignment:       16
tracksRegLiveness: true
debugInstrRef:   true
registers:
  - { id: 0, class: gr32, preferred-register: '' }
  - { id: 1, class: gr32, preferred-register: '' }
  - { id: 2, class: gr64, preferred-register: '' }
  - { id: 3, class: gr64, preferred-register: '' }
  - { id: 4, class: gr32, preferred-register: '' }
  - { id: 5, class: gr64, preferred-register: '' }
  - { id: 6, class: gr32, preferred-register: '' }
liveins:
  - { reg: '$edi', virtual-reg: '%0' }
  - { reg: '$esi', virtual-reg: '%1' }
  - { reg: '$rdx', virtual-reg: '%2' }
  - { reg: '$rcx', virtual-reg: '%3' }
debugValueSubstitutions: []
constants:       []
machineFunctionInfo: {}
body:             |
  bb.0.entry:
    liveins: $edi, $esi, $rdx, $rcx

    %3:gr64 = COPY $rcx
    %2:gr64 = COPY $rdx
    %1:gr32 = COPY $esi
    %0:gr32 = COPY $edi
    %4:gr32 = SUB32rr %0, %1, implicit-def $eflags, debug-location !16
    %5:gr64 = CMOV64rm %2, %3, 1, $noreg, 0, $noreg, 6, implicit $eflags, debug-instr-number 1, debug-location !16 :: (load (s64) from %ir.y)
    DBG_INSTR_REF !17, !DIExpression(DW_OP_LLVM_arg, 0), dbg-instr-ref(1, 0), debug-location !16
    %6:gr32 = CMOV32rm %0, killed %5, 1, $noreg, 0, $noreg, 6, implicit $eflags, debug-instr-number 2, debug-location !16 :: (load (s32) from %ir.p)
    DBG_INSTR_REF !18, !DIExpression(DW_OP_LLVM_arg, 0), dbg-instr-ref(2, 0), debug-location !16
    $eax = COPY %6, debug-location !16
    RET 0, $eax, debug-location !16

...