diff options
author | Elena Demikhovsky <elena.demikhovsky@intel.com> | 2015-04-30 08:38:48 +0000 |
---|---|---|
committer | Elena Demikhovsky <elena.demikhovsky@intel.com> | 2015-04-30 08:38:48 +0000 |
commit | e1eda8a9e6064f8bf76ef618b6a1e33d61822a3b (patch) | |
tree | aed18e1930ef563a2984fe2a0b7bc5d9e3498ee6 /llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | |
parent | b09be505b8ae2f7981746b91299ce03e59a30330 (diff) | |
download | bcm5719-llvm-e1eda8a9e6064f8bf76ef618b6a1e33d61822a3b.tar.gz bcm5719-llvm-e1eda8a9e6064f8bf76ef618b6a1e33d61822a3b.zip |
Masked gather and scatter - added DAGCombine visitors
and AVX-512 instruction selection patterns.
All other patches, including tests will follow.
http://reviews.llvm.org/D7665
llvm-svn: 236211
Diffstat (limited to 'llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp')
-rw-r--r-- | llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp index b7288338ecb..84151025612 100644 --- a/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp +++ b/llvm/lib/CodeGen/SelectionDAG/SelectionDAGDumper.cpp @@ -273,6 +273,8 @@ std::string SDNode::getOperationName(const SelectionDAG *G) const { case ISD::STORE: return "store"; case ISD::MLOAD: return "masked_load"; case ISD::MSTORE: return "masked_store"; + case ISD::MGATHER: return "masked_gather"; + case ISD::MSCATTER: return "masked_scatter"; case ISD::VAARG: return "vaarg"; case ISD::VACOPY: return "vacopy"; case ISD::VAEND: return "vaend"; |