mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2024-11-01 00:12:50 +01:00
a5f0bb3719
llvm-svn: 131709
99 lines
3.1 KiB
LLVM
99 lines
3.1 KiB
LLVM
; RUN: llc < %s -mtriple=x86_64-apple-darwin10 | FileCheck %s -check-prefix=X64
|
|
; RUN: llc < %s -mtriple=x86_64-pc-win32 | FileCheck %s -check-prefix=WIN64
|
|
|
|
@.str = private unnamed_addr constant [5 x i8] c"%ld\0A\00"
|
|
@sel = external global i8*
|
|
@sel3 = external global i8*
|
|
@sel4 = external global i8*
|
|
@sel5 = external global i8*
|
|
@sel6 = external global i8*
|
|
@sel7 = external global i8*
|
|
|
|
; X64: @foo
|
|
; X64: jmp
|
|
; WIN64: @foo
|
|
; WIN64: callq
|
|
define void @foo(i64 %arg) nounwind optsize ssp noredzone {
|
|
entry:
|
|
%call = tail call i32 (i8*, ...)* @printf(i8* getelementptr inbounds ([5 x i8]* @.str, i64 0, i64 0), i64 %arg) nounwind optsize noredzone
|
|
ret void
|
|
}
|
|
|
|
declare i32 @printf(i8*, ...) optsize noredzone
|
|
|
|
; X64: @bar
|
|
; X64: jmp
|
|
; WIN64: @bar
|
|
; WIN64: jmp
|
|
define void @bar(i64 %arg) nounwind optsize ssp noredzone {
|
|
entry:
|
|
tail call void @bar2(i8* getelementptr inbounds ([5 x i8]* @.str, i64 0, i64 0), i64 %arg) nounwind optsize noredzone
|
|
ret void
|
|
}
|
|
|
|
declare void @bar2(i8*, i64) optsize noredzone
|
|
|
|
; X64: @foo2
|
|
; X64: jmp
|
|
; WIN64: @foo2
|
|
; WIN64: callq
|
|
define i8* @foo2(i8* %arg) nounwind optsize ssp noredzone {
|
|
entry:
|
|
%tmp1 = load i8** @sel, align 8, !tbaa !0
|
|
%call = tail call i8* (i8*, i8*, ...)* @x2(i8* %arg, i8* %tmp1) nounwind optsize noredzone
|
|
ret i8* %call
|
|
}
|
|
|
|
declare i8* @x2(i8*, i8*, ...) optsize noredzone
|
|
|
|
; X64: @foo6
|
|
; X64: jmp
|
|
; WIN64: @foo6
|
|
; WIN64: callq
|
|
define i8* @foo6(i8* %arg1, i8* %arg2) nounwind optsize ssp noredzone {
|
|
entry:
|
|
%tmp2 = load i8** @sel3, align 8, !tbaa !0
|
|
%tmp3 = load i8** @sel4, align 8, !tbaa !0
|
|
%tmp4 = load i8** @sel5, align 8, !tbaa !0
|
|
%tmp5 = load i8** @sel6, align 8, !tbaa !0
|
|
%call = tail call i8* (i8*, i8*, i8*, ...)* @x3(i8* %arg1, i8* %arg2, i8* %tmp2, i8* %tmp3, i8* %tmp4, i8* %tmp5) nounwind optsize noredzone
|
|
ret i8* %call
|
|
}
|
|
|
|
declare i8* @x3(i8*, i8*, i8*, ...) optsize noredzone
|
|
|
|
; X64: @foo7
|
|
; X64: callq
|
|
; WIN64: @foo7
|
|
; WIN64: callq
|
|
define i8* @foo7(i8* %arg1, i8* %arg2) nounwind optsize ssp noredzone {
|
|
entry:
|
|
%tmp2 = load i8** @sel3, align 8, !tbaa !0
|
|
%tmp3 = load i8** @sel4, align 8, !tbaa !0
|
|
%tmp4 = load i8** @sel5, align 8, !tbaa !0
|
|
%tmp5 = load i8** @sel6, align 8, !tbaa !0
|
|
%tmp6 = load i8** @sel7, align 8, !tbaa !0
|
|
%call = tail call i8* (i8*, i8*, i8*, i8*, i8*, i8*, i8*, ...)* @x7(i8* %arg1, i8* %arg2, i8* %tmp2, i8* %tmp3, i8* %tmp4, i8* %tmp5, i8* %tmp6) nounwind optsize noredzone
|
|
ret i8* %call
|
|
}
|
|
|
|
declare i8* @x7(i8*, i8*, i8*, i8*, i8*, i8*, i8*, ...) optsize noredzone
|
|
|
|
; X64: @foo8
|
|
; X64: callq
|
|
; WIN64: @foo8
|
|
; WIN64: callq
|
|
define i8* @foo8(i8* %arg1, i8* %arg2) nounwind optsize ssp noredzone {
|
|
entry:
|
|
%tmp2 = load i8** @sel3, align 8, !tbaa !0
|
|
%tmp3 = load i8** @sel4, align 8, !tbaa !0
|
|
%tmp4 = load i8** @sel5, align 8, !tbaa !0
|
|
%tmp5 = load i8** @sel6, align 8, !tbaa !0
|
|
%call = tail call i8* (i8*, i8*, i8*, ...)* @x3(i8* %arg1, i8* %arg2, i8* %tmp2, i8* %tmp3, i8* %tmp4, i8* %tmp5, i32 48879, i32 48879) nounwind optsize noredzone
|
|
ret i8* %call
|
|
}
|
|
|
|
!0 = metadata !{metadata !"any pointer", metadata !1}
|
|
!1 = metadata !{metadata !"omnipotent char", metadata !2}
|
|
!2 = metadata !{metadata !"Simple C/C++ TBAA", null}
|