mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-11-12 15:05:06 +00:00
e760675b0e
can fill the delay slot. Currently, this is off by default. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@176320 91177308-0d34-0410-b5e6-96231b3b80d8
124 lines
2.7 KiB
LLVM
124 lines
2.7 KiB
LLVM
; RUN: llc -march=mipsel -O0 < %s | FileCheck %s -check-prefix=None
|
|
; RUN: llc -march=mipsel < %s | FileCheck %s -check-prefix=Default
|
|
; RUN: llc -march=mipsel -O1 -relocation-model=static < %s | \
|
|
; RUN: FileCheck %s -check-prefix=STATICO1
|
|
; RUN: llc -march=mipsel -disable-mips-df-forward-search=false \
|
|
; RUN: -relocation-model=static < %s | FileCheck %s -check-prefix=FORWARD
|
|
|
|
define void @foo1() nounwind {
|
|
entry:
|
|
; Default: jalr
|
|
; Default-NOT: nop
|
|
; Default: jr
|
|
; Default-NOT: nop
|
|
; Default: .end
|
|
; None: jalr
|
|
; None: nop
|
|
; None: jr
|
|
; None: nop
|
|
; None: .end
|
|
|
|
tail call void @foo2(i32 3) nounwind
|
|
ret void
|
|
}
|
|
|
|
declare void @foo2(i32)
|
|
|
|
; Check that cvt.d.w goes into jalr's delay slot.
|
|
;
|
|
define void @foo3(i32 %a) nounwind {
|
|
entry:
|
|
; Default: foo3:
|
|
; Default: jalr
|
|
; Default: cvt.d.w
|
|
|
|
%conv = sitofp i32 %a to double
|
|
tail call void @foo4(double %conv) nounwind
|
|
ret void
|
|
}
|
|
|
|
declare void @foo4(double)
|
|
|
|
@g2 = external global i32
|
|
@g1 = external global i32
|
|
@g3 = external global i32
|
|
|
|
; Check that branch delay slot can be filled with an instruction with operand
|
|
; $1.
|
|
;
|
|
; Default: foo5:
|
|
; Default-NOT: nop
|
|
|
|
define void @foo5(i32 %a) nounwind {
|
|
entry:
|
|
%0 = load i32* @g2, align 4
|
|
%tobool = icmp eq i32 %a, 0
|
|
br i1 %tobool, label %if.else, label %if.then
|
|
|
|
if.then:
|
|
%1 = load i32* @g1, align 4
|
|
%add = add nsw i32 %1, %0
|
|
store i32 %add, i32* @g1, align 4
|
|
br label %if.end
|
|
|
|
if.else:
|
|
%2 = load i32* @g3, align 4
|
|
%sub = sub nsw i32 %2, %0
|
|
store i32 %sub, i32* @g3, align 4
|
|
br label %if.end
|
|
|
|
if.end:
|
|
ret void
|
|
}
|
|
|
|
; Check that delay slot filler can place mov.s or mov.d in delay slot.
|
|
;
|
|
; Default: foo6:
|
|
; Default-NOT: nop
|
|
|
|
define void @foo6(float %a0, double %a1) nounwind {
|
|
entry:
|
|
tail call void @foo7(double %a1, float %a0) nounwind
|
|
ret void
|
|
}
|
|
|
|
declare void @foo7(double, float)
|
|
|
|
; Check that a store can move past other memory instructions.
|
|
;
|
|
; STATICO1: foo8:
|
|
; STATICO1: jalr ${{[0-9]+}}
|
|
; STATICO1-NEXT: sw ${{[0-9]+}}, %lo(g1)
|
|
|
|
@foo9 = common global void ()* null, align 4
|
|
|
|
define i32 @foo8(i32 %a) nounwind {
|
|
entry:
|
|
store i32 %a, i32* @g1, align 4
|
|
%0 = load void ()** @foo9, align 4
|
|
tail call void %0() nounwind
|
|
%1 = load i32* @g1, align 4
|
|
%add = add nsw i32 %1, %a
|
|
ret i32 %add
|
|
}
|
|
|
|
; Test searchForward. Check that the second jal's slot is filled with another
|
|
; instruction in the same block.
|
|
;
|
|
; FORWARD: foo10:
|
|
; FORWARD: jal foo11
|
|
; FORWARD: jal foo11
|
|
; FORWARD-NOT: nop
|
|
|
|
define void @foo10() nounwind {
|
|
entry:
|
|
tail call void @foo11() nounwind
|
|
tail call void @foo11() nounwind
|
|
store i32 0, i32* @g1, align 4
|
|
tail call void @foo11() nounwind
|
|
store i32 0, i32* @g1, align 4
|
|
ret void
|
|
}
|
|
|
|
declare void @foo11()
|