llvm/test/CodeGen/Mips/call-optimization.ll
Petar Jovanovic d2c18d6b60 [mips] Make Static a default relocation model for MIPS codegen
This change follows up defaults for GCC and Clang, so LLVM does not differ
from them. While number of the test files are touched with this change, they
all keep the old (expected) behaviour with the explicit option:
"-relocation-model=pic"
The tests that have not been touched are insensitive to relocation model.

Differential Revision: http://reviews.llvm.org/D17995


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@265949 91177308-0d34-0410-b5e6-96231b3b80d8
2016-04-11 15:24:23 +00:00

92 lines
2.5 KiB
LLVM

; RUN: llc -march=mipsel -disable-mips-delay-filler -relocation-model=pic < %s | \
; RUN: FileCheck %s -check-prefix=O32
; RUN: llc -march=mipsel -mips-load-target-from-got=false \
; RUN: -disable-mips-delay-filler -relocation-model=pic < %s | FileCheck %s -check-prefix=O32-LOADTGT
@gd1 = common global double 0.000000e+00, align 8
@gd2 = common global double 0.000000e+00, align 8
; O32-LABEL: caller3:
; O32-DAG: lw $25, %call16(callee3)
; O32-DAG: move $gp
; O32: jalr $25
; O32-NOT: move $gp
; O32: lw $25, %call16(callee3)
; O32-NOT: move $gp
; O32: jalr $25
; O32-NOT: move $gp
; O32: lw $25, %call16(callee3)
; O32-NOT: move $gp
; O32: jalr $25
; O32-LOADTGT-LABEL: caller3:
; O32-LOADTGT-DAG: lw $25, %call16(callee3)
; O32-LOADTGT-DAG: move $gp
; O32-LOADTGT: jalr $25
; O32-LOADTGT-NOT: move $gp
; O32-LOADTGT: move $25
; O32-LOADTGT-NOT: move $gp
; O32-LOADTGT: jalr $25
; O32-LOADTGT-NOT: move $gp
; O32-LOADTGT: move $25
; O32-LOADTGT-NOT: move $gp
; O32-LOADTGT: jalr $25
define void @caller3(i32 %n) {
entry:
tail call void @callee3()
tail call void @callee3()
%tobool1 = icmp eq i32 %n, 0
br i1 %tobool1, label %while.end, label %while.body
while.body:
%n.addr.02 = phi i32 [ %dec, %while.body ], [ %n, %entry ]
%dec = add nsw i32 %n.addr.02, -1
tail call void @callee3()
%tobool = icmp eq i32 %dec, 0
br i1 %tobool, label %while.end, label %while.body
while.end:
ret void
}
declare void @callee3()
; O32-LABEL: caller4:
; O32-DAG: lw $25, %call16(ceil)
; O32-DAG: move $gp
; O32: jalr $25
; O32-NOT: move $gp
; O32: lw $25, %call16(ceil)
; O32-NOT: move $gp
; O32: jalr $25
; O32-NOT: move $gp
; O32: lw $25, %call16(ceil)
; O32-NOT: move $gp
; O32: jalr $25
; O32-LOADTGT-LABEL: caller4:
; O32-LOADTGT-DAG: lw $25, %call16(ceil)
; O32-LOADTGT-DAG: move $gp
; O32-LOADTGT: jalr $25
; O32-LOADTGT-NOT: move $gp
; O32-LOADTGT: move $25
; O32-LOADTGT-NOT: move $gp
; O32-LOADTGT: jalr $25
; O32-LOADTGT-NOT: move $gp
; O32-LOADTGT: move $25
; O32-LOADTGT-NOT: move $gp
; O32-LOADTGT: jalr $25
define void @caller4(double %d) {
entry:
%call = tail call double @ceil(double %d)
%call1 = tail call double @ceil(double %call)
store double %call1, double* @gd2, align 8
%call2 = tail call double @ceil(double %call1)
store double %call2, double* @gd1, align 8
ret void
}
declare double @ceil(double)