[Reland][Runtimes] Merge 'compile_commands.json' files from runtimes build (#116303)
[llvm-project.git] / llvm / test / CodeGen / X86 / misched-new.ll
blob06ae8ff43d5af7138f7c07d654879c9eeaa09bcf
1 ; RUN: llc < %s -mtriple=x86_64-- -mcpu=core2 -x86-early-ifcvt -enable-misched \
2 ; RUN:          -misched=shuffle -misched-bottomup -verify-machineinstrs \
3 ; RUN:     | FileCheck %s
4 ; RUN: llc < %s -mtriple=x86_64-- -mcpu=core2 -x86-early-ifcvt -enable-misched \
5 ; RUN:          -misched=shuffle -misched-topdown -verify-machineinstrs \
6 ; RUN:     | FileCheck %s --check-prefix TOPDOWN
7 ; REQUIRES: asserts
9 ; Interesting MachineScheduler cases.
11 ; FIXME: There should be an assert in the coalescer that we're not rematting
12 ; "not-quite-dead" copies, but that breaks a lot of tests <rdar://problem/11148682>.
14 declare void @llvm.memcpy.p0.p0.i64(ptr nocapture, ptr nocapture, i64, i1) nounwind
16 ; From oggenc.
17 ; After coalescing, we have a dead superreg (RAX) definition.
19 ; CHECK: xorl %esi, %esi
20 ; CHECK: movl $32, %ecx
21 ; CHECK: rep;movsl
22 define fastcc void @_preextrapolate_helper() nounwind uwtable ssp {
23 entry:
24   br i1 undef, label %for.cond.preheader, label %if.end
26 for.cond.preheader:                               ; preds = %entry
27   call void @llvm.memcpy.p0.p0.i64(ptr align 4 undef, ptr align 4 null, i64 128, i1 false) nounwind
28   unreachable
30 if.end:                                           ; preds = %entry
31   ret void
34 ; The machine verifier checks that EFLAGS kill flags are updated when
35 ; the scheduler reorders cmovel instructions.
37 ; CHECK: test
38 ; CHECK: cmovel
39 ; CHECK: cmovel
40 ; CHECK: call
41 define void @foo(i32 %b) nounwind uwtable ssp {
42 entry:
43   %tobool = icmp ne i32 %b, 0
44   br i1 %tobool, label %if.then, label %if.end
46 if.then:                                          ; preds = %entry
47   br label %if.end
49 if.end:                                           ; preds = %if.then, %entry
50   %v1 = phi i32 [1, %entry], [2, %if.then]
51   %v2 = phi i32 [3, %entry], [4, %if.then]
52   call void @bar(i32 %v1, i32 %v2)
53   ret void
56 declare void @bar(i32,i32)
58 ; Test that the DAG builder can handle an undef vreg on ExitSU.
59 ; CHECK: hasundef
60 ; CHECK: call
62 %t0 = type { i32, i32, i8 }
63 %t6 = type { ptr, ptr }
64 %t7 = type { ptr }
66 define void @hasundef() unnamed_addr uwtable ssp align 2 {
67   %1 = alloca %t0, align 8
68   br i1 undef, label %3, label %2
70 ; <label>:2                                       ; preds = %0
71   unreachable
73 ; <label>:3                                       ; preds = %0
74   br i1 undef, label %4, label %5
76 ; <label>:4                                       ; preds = %3
77   call void undef(ptr undef, ptr %1)
78   unreachable
80 ; <label>:5                                       ; preds = %3
81   ret void
84 ; Test top-down subregister liveness tracking. Self-verification
85 ; catches any pressure set underflow.
86 ; rdar://12797931.
88 ; TOPDOWN: @testSubregTracking
89 ; TOPDOWN: divb
90 ; TOPDOWN: movzbl %al
91 ; TOPDOWN: ret
92 define void @testSubregTracking() nounwind uwtable ssp align 2 {
93   %tmp = load i8, ptr undef, align 1
94   %tmp6 = sub i8 0, %tmp
95   %tmp7 = load i8, ptr undef, align 1
96   %tmp8 = udiv i8 %tmp6, %tmp7
97   %tmp9 = zext i8 %tmp8 to i64
98   %tmp10 = load i8, ptr undef, align 1
99   %tmp11 = zext i8 %tmp10 to i64
100   %tmp12 = mul i64 %tmp11, %tmp9
101   %tmp13 = urem i8 %tmp6, %tmp7
102   %tmp14 = zext i8 %tmp13 to i32
103   %tmp15 = add nsw i32 %tmp14, 0
104   %tmp16 = add i32 %tmp15, 0
105   store i32 %tmp16, ptr undef, align 4
106   %tmp17 = add i64 0, %tmp12
107   store i64 %tmp17, ptr undef, align 8
108   ret void