[llvm-commits] [llvm] r160300 - /llvm/trunk/test/CodeGen/R600/

Tom Stellard thomas.stellard at amd.com
Mon Jul 16 11:19:44 PDT 2012


Author: tstellar
Date: Mon Jul 16 13:19:43 2012
New Revision: 160300

URL: http://llvm.org/viewvc/llvm-project?rev=160300&view=rev
Log:
Revert "test/CodeGen/R600: Add some basic tests v6"

This reverts commit 11d3457afcda7848448dd7f11b2ede6552ffb9ea.

Removed:
    llvm/trunk/test/CodeGen/R600/fadd.ll
    llvm/trunk/test/CodeGen/R600/fadd.ll.check
    llvm/trunk/test/CodeGen/R600/fmul.ll
    llvm/trunk/test/CodeGen/R600/fmul.ll.check
    llvm/trunk/test/CodeGen/R600/fsub.ll
    llvm/trunk/test/CodeGen/R600/fsub.ll.check
    llvm/trunk/test/CodeGen/R600/lit.local.cfg
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll.check
    llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll
    llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll.check

Removed: llvm/trunk/test/CodeGen/R600/fadd.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/fadd.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/fadd.ll (original)
+++ llvm/trunk/test/CodeGen/R600/fadd.ll (removed)
@@ -1,15 +0,0 @@
-;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)
-

Removed: llvm/trunk/test/CodeGen/R600/fadd.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/fadd.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/fadd.ll.check (original) and llvm/trunk/test/CodeGen/R600/fadd.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/fmul.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/fmul.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/fmul.ll (original)
+++ llvm/trunk/test/CodeGen/R600/fmul.ll (removed)
@@ -1,15 +0,0 @@
-;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)
-

Removed: llvm/trunk/test/CodeGen/R600/fmul.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/fmul.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/fmul.ll.check (original) and llvm/trunk/test/CodeGen/R600/fmul.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/fsub.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/fsub.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/fsub.ll (original)
+++ llvm/trunk/test/CodeGen/R600/fsub.ll (removed)
@@ -1,15 +0,0 @@
-;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)
-

Removed: llvm/trunk/test/CodeGen/R600/fsub.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/fsub.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/fsub.ll.check (original) and llvm/trunk/test/CodeGen/R600/fsub.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/lit.local.cfg
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/lit.local.cfg?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/lit.local.cfg (original)
+++ llvm/trunk/test/CodeGen/R600/lit.local.cfg (removed)
@@ -1,13 +0,0 @@
-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
-

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll (removed)
@@ -1,15 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.cos.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll (removed)
@@ -1,15 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.floor.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll (removed)
@@ -1,16 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.mul.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll (removed)
@@ -1,16 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.pow.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll (removed)
@@ -1,15 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.rcp.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll (removed)
@@ -1,15 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.sin.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll (removed)
@@ -1,15 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDGPU.trunc.ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll (removed)
@@ -1,15 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDIL.fabs..ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll (removed)
@@ -1,16 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDIL.max..ll.check (removed) differ

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll?rev=160299&view=auto
==============================================================================
--- llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll (original)
+++ llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll (removed)
@@ -1,16 +0,0 @@
-;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

Removed: llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll.check
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll.check?rev=160299&view=auto
==============================================================================
Binary files llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll.check (original) and llvm/trunk/test/CodeGen/R600/llvm.AMDIL.min..ll.check (removed) differ





More information about the llvm-commits mailing list