diff options
author | Dan Gohman <gohman@apple.com> | 2008-07-28 22:18:25 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-07-28 22:18:25 +0000 |
commit | b1e8cad61e64dd7f56b0c62b53f9c1fc86d599f7 (patch) | |
tree | faaed90dd3b7d23f7a990f7846bb2d79263ec383 /include/llvm/CodeGen/SelectionDAGNodes.h | |
parent | fed90b6d097d50881afb45e4d79f430db66dd741 (diff) |
Add x86 isel patterns to match what would be a ZERO_EXTEND_INREG operation,
which is represented in codegen as an 'and' operation. This matches them
with movz instructions, instead of leaving them to be matched by and
instructions with an immediate field.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@54147 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGNodes.h')
-rw-r--r-- | include/llvm/CodeGen/SelectionDAGNodes.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGNodes.h b/include/llvm/CodeGen/SelectionDAGNodes.h index dbb12947f2..73edcb8d49 100644 --- a/include/llvm/CodeGen/SelectionDAGNodes.h +++ b/include/llvm/CodeGen/SelectionDAGNodes.h @@ -377,6 +377,8 @@ namespace ISD { // extending the low 8 bits of a 32-bit register to fill the top 24 bits // with the 7th bit). The size of the smaller type is indicated by the 1th // operand, a ValueType node. + // Note that there is intentionally no corresponding ZERO_EXTEND_INREG; an + // AND with an appropriate constant is used instead. SIGN_EXTEND_INREG, /// FP_TO_[US]INT - Convert a floating point value to a signed or unsigned |