mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-01-12 17:32:19 +00:00
move V8 testcases here
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@25986 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
7c90f73a1b
commit
7ce1bbf05d
12
test/CodeGen/SPARC/2006-01-22-BitConvertLegalize.ll
Normal file
12
test/CodeGen/SPARC/2006-01-22-BitConvertLegalize.ll
Normal file
@ -0,0 +1,12 @@
|
||||
; RUN: llvm-as < %s | llc -march=sparc
|
||||
|
||||
void %execute_list() {
|
||||
%tmp.33.i = div float 0.000000e+00, 0.000000e+00 ; <float> [#uses=1]
|
||||
%tmp.37.i = mul float 0.000000e+00, %tmp.33.i ; <float> [#uses=1]
|
||||
%tmp.42.i = add float %tmp.37.i, 0.000000e+00 ; <float> [#uses=1]
|
||||
call void %gl_EvalCoord1f( float %tmp.42.i )
|
||||
ret void
|
||||
}
|
||||
|
||||
declare void %gl_EvalCoord1f( float)
|
||||
|
6
test/CodeGen/SPARC/basictest.ll
Normal file
6
test/CodeGen/SPARC/basictest.ll
Normal file
@ -0,0 +1,6 @@
|
||||
; RUN: llvm-as < %s | llc -march=sparc
|
||||
|
||||
int %test(int %X) {
|
||||
%tmp.1 = add int %X, 1 ; <int> [#uses=1]
|
||||
ret int %tmp.1
|
||||
}
|
11
test/CodeGen/SPARC/ctpop.ll
Normal file
11
test/CodeGen/SPARC/ctpop.ll
Normal file
@ -0,0 +1,11 @@
|
||||
; RUN: llvm-as < %s | llc -march=sparc -mattr=-v9 &&
|
||||
; RUN: llvm-as < %s | llc -march=sparc -mattr=v9 -enable-sparc-v9-insts &&
|
||||
; RUN: llvm-as < %s | llc -march=sparc -mattr=-v9 | not grep popc &&
|
||||
; RUN: llvm-as < %s | llc -march=sparc -mattr=v9 -enable-sparc-v9-insts | grep popc
|
||||
|
||||
declare uint %llvm.ctpop.i32(uint)
|
||||
uint %test(uint %X) {
|
||||
%Y = call uint %llvm.ctpop.i32(uint %X)
|
||||
ret uint %Y
|
||||
}
|
||||
|
3
test/CodeGen/SPARC/dg.exp
Normal file
3
test/CodeGen/SPARC/dg.exp
Normal file
@ -0,0 +1,3 @@
|
||||
load_lib llvm-dg.exp
|
||||
|
||||
llvm-runtest [lsort [glob -nocomplain $srcdir/$subdir/*.{ll,llx,c,cpp,tr}]] $objdir $srcdir $subdir $target_triplet $llvmgcc $llvmgxx $prcontext
|
14
test/CodeGen/SPARC/xnor.ll
Normal file
14
test/CodeGen/SPARC/xnor.ll
Normal file
@ -0,0 +1,14 @@
|
||||
; RUN: llvm-as < %s | llc -march=sparc &&
|
||||
; RUN: llvm-as < %s | llc -march=sparc | grep xnor | wc -l | grep 2
|
||||
|
||||
int %test1(int %X, int %Y) {
|
||||
%A = xor int %X, %Y
|
||||
%B = xor int %A, -1
|
||||
ret int %B
|
||||
}
|
||||
|
||||
int %test2(int %X, int %Y) {
|
||||
%A = xor int %X, -1
|
||||
%B = xor int %A, %Y
|
||||
ret int %B
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user