aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTom Stellard <[email protected]>2012-06-28 20:27:32 +0000
committerTom Stellard <[email protected]>2012-06-29 18:46:18 +0000
commite17c586d08aee5bbaad6ac5efd2d30fe1d179406 (patch)
treedba549caccf23345ca3ce9ec2ae1bee409b1245d /src
parentb66ef1f48c946fdb0762e0092fa13a6f53e53e90 (diff)
radeon/llvm: Enable floating point stores on R600
Diffstat (limited to 'src')
-rw-r--r--src/gallium/drivers/radeon/R600Instructions.td6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/gallium/drivers/radeon/R600Instructions.td b/src/gallium/drivers/radeon/R600Instructions.td
index d42e74cfae2..fa52f32001d 100644
--- a/src/gallium/drivers/radeon/R600Instructions.td
+++ b/src/gallium/drivers/radeon/R600Instructions.td
@@ -922,6 +922,12 @@ def RAT_WRITE_CACHELESS_eg : EG_CF_RAT <0x57, 0x2, 0, (outs),
} // End usesCustomInserter = 1
+// Floating point global_store
+def : Pat <
+ (global_store (f32 R600_TReg32_X:$val), R600_TReg32_X:$ptr),
+ (RAT_WRITE_CACHELESS_eg R600_TReg32_X:$val, R600_TReg32_X:$ptr)
+>;
+
class VTX_READ_eg <bits<8> buffer_id, dag outs, list<dag> pattern>
: InstR600ISA <outs, (ins MEMxi:$ptr), "VTX_READ_eg $dst, $ptr", pattern> {