summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-04-02 03:30:33 +0000
committerChris Lattner <sabre@nondot.org>2005-04-02 03:30:33 +0000
commit14c5b53c037a6a175118ed1a7d7e0e74153d56c4 (patch)
treefad30ea19080a57d72f266dbf5562f9741828585 /include
parentf4b457987fca50a1dc86e1a60dad2cff2b060945 (diff)
downloadllvm-14c5b53c037a6a175118ed1a7d7e0e74153d56c4.tar.gz
llvm-14c5b53c037a6a175118ed1a7d7e0e74153d56c4.tar.bz2
llvm-14c5b53c037a6a175118ed1a7d7e0e74153d56c4.tar.xz
add some new nodes.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21000 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include')
-rw-r--r--include/llvm/CodeGen/SelectionDAGNodes.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h
index e9b54fb92c..cd8597baed 100644
--- a/include/llvm/CodeGen/SelectionDAGNodes.h
+++ b/include/llvm/CodeGen/SelectionDAGNodes.h
@@ -111,6 +111,12 @@ namespace ISD {
// [Lo,Hi] = op [LoLHS,HiLHS], [LoRHS,HiRHS]
ADD_PARTS, SUB_PARTS,
+ // SHL_PARTS/SRA_PARTS/SRL_PARTS - These operators are used for expanded
+ // integer shift operations, just like ADD/SUB_PARTS. The operation
+ // ordering is:
+ // [Lo,Hi] = op [LoLHS,HiLHS], [LoRHS,HiRHS]
+ SHL_PARTS, SRA_PARTS, SRL_PARTS,
+
// Conversion operators. These are all single input single output
// operations. For all of these, the result type must be strictly
// wider or narrower (depending on the operation) than the source