summaryrefslogtreecommitdiff
path: root/include/llvm/CodeGen/SelectionDAGISel.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2010-03-28 05:50:16 +0000
committerChris Lattner <sabre@nondot.org>2010-03-28 05:50:16 +0000
commitaa4e3391c8814c6ce0bbc530ea4d5905414b2763 (patch)
treee48f7f81d795b64e9fb4b87ae3b862c8fa5e3292 /include/llvm/CodeGen/SelectionDAGISel.h
parent856fb395e46a8d485081acbf11928047d852c636 (diff)
downloadllvm-aa4e3391c8814c6ce0bbc530ea4d5905414b2763.tar.gz
llvm-aa4e3391c8814c6ce0bbc530ea4d5905414b2763.tar.bz2
llvm-aa4e3391c8814c6ce0bbc530ea4d5905414b2763.tar.xz
add an optimized form of OPC_EmitMergeInputChains for the 1, 0 and
1, 1 cases which are by-far the most frequent. This shrinks the X86 isel table from 77014 -> 74657 bytes. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@99740 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/CodeGen/SelectionDAGISel.h')
-rw-r--r--include/llvm/CodeGen/SelectionDAGISel.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/include/llvm/CodeGen/SelectionDAGISel.h b/include/llvm/CodeGen/SelectionDAGISel.h
index a1576be90b..def09c76fc 100644
--- a/include/llvm/CodeGen/SelectionDAGISel.h
+++ b/include/llvm/CodeGen/SelectionDAGISel.h
@@ -136,6 +136,8 @@ public:
OPC_EmitRegister,
OPC_EmitConvertToTarget,
OPC_EmitMergeInputChains,
+ OPC_EmitMergeInputChains1_0,
+ OPC_EmitMergeInputChains1_1,
OPC_EmitCopyToReg,
OPC_EmitNodeXForm,
OPC_EmitNode,