mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-04-04 10:30:01 +00:00
test/CodeGen/R600: Add some basic tests v6
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@160273 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
a93c8a89c1
commit
2015236dfc
15
test/CodeGen/R600/fadd.ll
Normal file
15
test/CodeGen/R600/fadd.ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.R600.load.input(i32 1)
|
||||
%r2 = fadd float %r0, %r1
|
||||
call void @llvm.AMDGPU.store.output(float %r2, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
BIN
test/CodeGen/R600/fadd.ll.check
Normal file
BIN
test/CodeGen/R600/fadd.ll.check
Normal file
Binary file not shown.
15
test/CodeGen/R600/fmul.ll
Normal file
15
test/CodeGen/R600/fmul.ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.R600.load.input(i32 1)
|
||||
%r2 = fmul float %r0, %r1
|
||||
call void @llvm.AMDGPU.store.output(float %r2, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
BIN
test/CodeGen/R600/fmul.ll.check
Normal file
BIN
test/CodeGen/R600/fmul.ll.check
Normal file
Binary file not shown.
15
test/CodeGen/R600/fsub.ll
Normal file
15
test/CodeGen/R600/fsub.ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.R600.load.input(i32 1)
|
||||
%r2 = fsub float %r0, %r1
|
||||
call void @llvm.AMDGPU.store.output(float %r2, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
BIN
test/CodeGen/R600/fsub.ll.check
Normal file
BIN
test/CodeGen/R600/fsub.ll.check
Normal file
Binary file not shown.
13
test/CodeGen/R600/lit.local.cfg
Normal file
13
test/CodeGen/R600/lit.local.cfg
Normal file
@ -0,0 +1,13 @@
|
||||
config.suffixes = ['.ll', '.c', '.cpp']
|
||||
|
||||
def getRoot(config):
|
||||
if not config.parent:
|
||||
return config
|
||||
return getRoot(config.parent)
|
||||
|
||||
root = getRoot(config)
|
||||
|
||||
targets = set(root.targets_to_build.split())
|
||||
if not 'AMDGPU' in targets:
|
||||
config.unsupported = True
|
||||
|
15
test/CodeGen/R600/llvm.AMDGPU.cos.ll
Normal file
15
test/CodeGen/R600/llvm.AMDGPU.cos.ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.AMDGPU.cos( float %r0)
|
||||
call void @llvm.AMDGPU.store.output(float %r1, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDGPU.cos(float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDGPU.cos.ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDGPU.cos.ll.check
Normal file
Binary file not shown.
15
test/CodeGen/R600/llvm.AMDGPU.floor.ll
Normal file
15
test/CodeGen/R600/llvm.AMDGPU.floor.ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.AMDGPU.floor( float %r0)
|
||||
call void @llvm.AMDGPU.store.output(float %r1, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDGPU.floor(float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDGPU.floor.ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDGPU.floor.ll.check
Normal file
Binary file not shown.
16
test/CodeGen/R600/llvm.AMDGPU.mul.ll
Normal file
16
test/CodeGen/R600/llvm.AMDGPU.mul.ll
Normal file
@ -0,0 +1,16 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.R600.load.input(i32 1)
|
||||
%r2 = call float @llvm.AMDGPU.mul( float %r0, float %r1)
|
||||
call void @llvm.AMDGPU.store.output(float %r2, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDGPU.mul(float ,float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDGPU.mul.ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDGPU.mul.ll.check
Normal file
Binary file not shown.
16
test/CodeGen/R600/llvm.AMDGPU.pow.ll
Normal file
16
test/CodeGen/R600/llvm.AMDGPU.pow.ll
Normal file
@ -0,0 +1,16 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.R600.load.input(i32 1)
|
||||
%r2 = call float @llvm.AMDGPU.pow( float %r0, float %r1)
|
||||
call void @llvm.AMDGPU.store.output(float %r2, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDGPU.pow(float ,float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDGPU.pow.ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDGPU.pow.ll.check
Normal file
Binary file not shown.
15
test/CodeGen/R600/llvm.AMDGPU.rcp.ll
Normal file
15
test/CodeGen/R600/llvm.AMDGPU.rcp.ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.AMDGPU.rcp( float %r0)
|
||||
call void @llvm.AMDGPU.store.output(float %r1, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDGPU.rcp(float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDGPU.rcp.ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDGPU.rcp.ll.check
Normal file
Binary file not shown.
15
test/CodeGen/R600/llvm.AMDGPU.sin.ll
Normal file
15
test/CodeGen/R600/llvm.AMDGPU.sin.ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.AMDGPU.sin( float %r0)
|
||||
call void @llvm.AMDGPU.store.output(float %r1, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDGPU.sin(float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDGPU.sin.ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDGPU.sin.ll.check
Normal file
Binary file not shown.
15
test/CodeGen/R600/llvm.AMDGPU.trunc.ll
Normal file
15
test/CodeGen/R600/llvm.AMDGPU.trunc.ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.AMDGPU.trunc( float %r0)
|
||||
call void @llvm.AMDGPU.store.output(float %r1, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDGPU.trunc(float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDGPU.trunc.ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDGPU.trunc.ll.check
Normal file
Binary file not shown.
15
test/CodeGen/R600/llvm.AMDIL.fabs..ll
Normal file
15
test/CodeGen/R600/llvm.AMDIL.fabs..ll
Normal file
@ -0,0 +1,15 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.AMDIL.fabs.( float %r0)
|
||||
call void @llvm.AMDGPU.store.output(float %r1, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDIL.fabs.(float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDIL.fabs..ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDIL.fabs..ll.check
Normal file
Binary file not shown.
16
test/CodeGen/R600/llvm.AMDIL.max..ll
Normal file
16
test/CodeGen/R600/llvm.AMDIL.max..ll
Normal file
@ -0,0 +1,16 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.R600.load.input(i32 1)
|
||||
%r2 = call float @llvm.AMDIL.max.( float %r0, float %r1)
|
||||
call void @llvm.AMDGPU.store.output(float %r2, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDIL.max.(float ,float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDIL.max..ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDIL.max..ll.check
Normal file
Binary file not shown.
16
test/CodeGen/R600/llvm.AMDIL.min..ll
Normal file
16
test/CodeGen/R600/llvm.AMDIL.min..ll
Normal file
@ -0,0 +1,16 @@
|
||||
;RUN: llc < %s -march=r600 -mcpu=redwood | diff %s.check -
|
||||
|
||||
|
||||
define void @test() {
|
||||
%r0 = call float @llvm.R600.load.input(i32 0)
|
||||
%r1 = call float @llvm.R600.load.input(i32 1)
|
||||
%r2 = call float @llvm.AMDIL.min.( float %r0, float %r1)
|
||||
call void @llvm.AMDGPU.store.output(float %r2, i32 0)
|
||||
ret void
|
||||
}
|
||||
|
||||
declare float @llvm.R600.load.input(i32) readnone
|
||||
|
||||
declare void @llvm.AMDGPU.store.output(float, i32)
|
||||
|
||||
declare float @llvm.AMDIL.min.(float ,float ) readnone
|
BIN
test/CodeGen/R600/llvm.AMDIL.min..ll.check
Normal file
BIN
test/CodeGen/R600/llvm.AMDIL.min..ll.check
Normal file
Binary file not shown.
Loading…
x
Reference in New Issue
Block a user