summaryrefslogtreecommitdiff
path: root/lib/Target/X86/X86.h
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2003-08-11 14:59:22 +0000
committerChris Lattner <sabre@nondot.org>2003-08-11 14:59:22 +0000
commitac0c8680ad53c08189c23f39c79a2147378692df (patch)
treef853925df2a8e14a96d9e679e5d16c5a8f061576 /lib/Target/X86/X86.h
parentfa7ed53f32917ef632b21753a772548dde8c2eed (diff)
downloadllvm-ac0c8680ad53c08189c23f39c79a2147378692df.tar.gz
llvm-ac0c8680ad53c08189c23f39c79a2147378692df.tar.bz2
llvm-ac0c8680ad53c08189c23f39c79a2147378692df.tar.xz
Add support for a pattern matching instruction selector. This is still in
the early implementation phases, so it is disabled by default git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7719 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/X86/X86.h')
-rw-r--r--lib/Target/X86/X86.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/Target/X86/X86.h b/lib/Target/X86/X86.h
index 61d3123ef6..eec254cff2 100644
--- a/lib/Target/X86/X86.h
+++ b/lib/Target/X86/X86.h
@@ -18,6 +18,12 @@ class Pass;
///
Pass *createX86SimpleInstructionSelector(TargetMachine &TM);
+/// createX86PatternInstructionSelector - This pass converts an LLVM function
+/// into a machine code representation using pattern matching and a machine
+/// description file.
+///
+Pass *createX86PatternInstructionSelector(TargetMachine &TM);
+
/// createX86PeepholeOptimizer - Create a pass to perform X86 specific peephole
/// optimizations.
///