mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-15 20:29:48 +00:00
5a70dd1d82
Similar to gep (r230786) and load (r230794) changes. Similar migration script can be used to update test cases, which successfully migrated all of LLVM and Polly, but about 4 test cases needed manually changes in Clang. (this script will read the contents of stdin and massage it into stdout - wrap it in the 'apply.sh' script shown in previous commits + xargs to apply it over a large set of test cases) import fileinput import sys import re rep = re.compile(r"(getelementptr(?:\s+inbounds)?\s*\()((<\d*\s+x\s+)?([^@]*?)(|\s*addrspace\(\d+\))\s*\*(?(3)>)\s*)(?=$|%|@|null|undef|blockaddress|getelementptr|addrspacecast|bitcast|inttoptr|zeroinitializer|<|\[\[[a-zA-Z]|\{\{)", re.MULTILINE | re.DOTALL) def conv(match): line = match.group(1) line += match.group(4) line += ", " line += match.group(2) return line line = sys.stdin.read() off = 0 for match in re.finditer(rep, line): sys.stdout.write(line[off:match.start()]) sys.stdout.write(conv(match)) off = match.end() sys.stdout.write(line[off:]) git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@232184 91177308-0d34-0410-b5e6-96231b3b80d8
95 lines
2.9 KiB
LLVM
95 lines
2.9 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], [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], [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*, i8** @sel, align 8
|
|
%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*, i8** @sel3, align 8
|
|
%tmp3 = load i8*, i8** @sel4, align 8
|
|
%tmp4 = load i8*, i8** @sel5, align 8
|
|
%tmp5 = load i8*, i8** @sel6, align 8
|
|
%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*, i8** @sel3, align 8
|
|
%tmp3 = load i8*, i8** @sel4, align 8
|
|
%tmp4 = load i8*, i8** @sel5, align 8
|
|
%tmp5 = load i8*, i8** @sel6, align 8
|
|
%tmp6 = load i8*, i8** @sel7, align 8
|
|
%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*, i8** @sel3, align 8
|
|
%tmp3 = load i8*, i8** @sel4, align 8
|
|
%tmp4 = load i8*, i8** @sel5, align 8
|
|
%tmp5 = load i8*, i8** @sel6, align 8
|
|
%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
|
|
}
|