summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2005-11-15 00:40:23 +0000
committerChris Lattner <sabre@nondot.org>2005-11-15 00:40:23 +0000
commitdbdbf0ce2eef7b6585397121f56d3845e04866d1 (patch)
tree606652b7a33538e0ffa5c4435fe175f3aa33c5d6 /lib/Target/X86/X86.h
parent27ecef510f785bc9345e6ddf058cd4f45e05bc4f (diff)
downloadllvm-dbdbf0ce2eef7b6585397121f56d3845e04866d1.tar.gz
llvm-dbdbf0ce2eef7b6585397121f56d3845e04866d1.tar.bz2
llvm-dbdbf0ce2eef7b6585397121f56d3845e04866d1.tar.xz
Separate X86ISelLowering stuff out from the X86ISelPattern.cpp file. Patch
contributed by Evan Cheng. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24358 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.h')
-rw-r--r--lib/Target/X86/X86.h12
1 files changed, 9 insertions, 3 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h
index f17dd8b495..dc79b80747 100644
--- a/lib/Target/X86/X86.h
+++ b/lib/Target/X86/X86.h
@@ -32,10 +32,16 @@ enum X86VectorEnum {
extern X86VectorEnum X86Vector;
extern bool X86ScalarSSE;
-/// createX86PatternInstructionSelector - This pass converts an LLVM function
-/// into a machine code representation in a more aggressive way.
+/// createX86ISelPattern - This pass converts an LLVM function into a
+/// machine code representation using pattern matching and a machine
+/// description file.
///
-FunctionPass *createX86PatternInstructionSelector(TargetMachine &TM);
+FunctionPass *createX86ISelPattern(TargetMachine &TM);
+
+/// createX86ISelDag - This pass converts a legalized DAG into a
+/// X86-specific DAG, ready for instruction scheduling.
+///
+FunctionPass *createX86ISelDag(TargetMachine &TM);
/// createX86SSAPeepholeOptimizerPass - Create a pass to perform SSA-based X86
/// specific peephole optimizations.