summaryrefslogtreecommitdiff
path: root/lib/Target/R600/AMDGPUInstrInfo.td
diff options
context:
space:
mode:
authorTom Stellard <thomas.stellard@amd.com>2013-08-16 01:12:06 +0000
committerTom Stellard <thomas.stellard@amd.com>2013-08-16 01:12:06 +0000
commitec484277dd04399d7b2ea37508e39fc4998bc9a7 (patch)
tree4a98a36ec60927ca4e52539ca15fed7754fe6660 /lib/Target/R600/AMDGPUInstrInfo.td
parent4781d314b7b0bd239dc3986b4157726e80a270ba (diff)
downloadllvm-ec484277dd04399d7b2ea37508e39fc4998bc9a7.tar.gz
llvm-ec484277dd04399d7b2ea37508e39fc4998bc9a7.tar.bz2
llvm-ec484277dd04399d7b2ea37508e39fc4998bc9a7.tar.xz
R600: Add support for i16 and i8 global stores
Tested-by: Aaron Watry <awatry@gmail.com> git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188519 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/R600/AMDGPUInstrInfo.td')
-rw-r--r--lib/Target/R600/AMDGPUInstrInfo.td4
1 files changed, 4 insertions, 0 deletions
diff --git a/lib/Target/R600/AMDGPUInstrInfo.td b/lib/Target/R600/AMDGPUInstrInfo.td
index 48d89dd581..c61993a8cd 100644
--- a/lib/Target/R600/AMDGPUInstrInfo.td
+++ b/lib/Target/R600/AMDGPUInstrInfo.td
@@ -72,3 +72,7 @@ def AMDGPUregister_load : SDNode<"AMDGPUISD::REGISTER_LOAD",
def AMDGPUregister_store : SDNode<"AMDGPUISD::REGISTER_STORE",
SDTypeProfile<0, 3, [SDTCisPtrTy<1>, SDTCisInt<2>]>,
[SDNPHasChain, SDNPMayStore]>;
+
+def AMDGPUstore_mskor : SDNode<"AMDGPUISD::STORE_MSKOR",
+ SDTypeProfile<0, 2, []>,
+ [SDNPHasChain, SDNPMayStore, SDNPMemOperand]>;