diff options
author | Chris Lattner <sabre@nondot.org> | 2004-03-30 18:41:59 +0000 |
---|---|---|
committer | Chris Lattner <sabre@nondot.org> | 2004-03-30 18:41:59 +0000 |
commit | 5abd61f6d94bc9eab30778e05e69781a0d07781a (patch) | |
tree | 385ff87b2f5f27c10f7c0bab3715d6dc93db162e /lib | |
parent | 18bdbc3dda73081193fa1070021558ea0c79691d (diff) |
Add the select lowering pass to get initial support for select instructions
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@12541 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Target/SparcV9/SparcV9TargetMachine.cpp | 4 | ||||
-rw-r--r-- | lib/Target/X86/X86TargetMachine.cpp | 6 |
2 files changed, 10 insertions, 0 deletions
diff --git a/lib/Target/SparcV9/SparcV9TargetMachine.cpp b/lib/Target/SparcV9/SparcV9TargetMachine.cpp index e8172c17ab..c060f75a79 100644 --- a/lib/Target/SparcV9/SparcV9TargetMachine.cpp +++ b/lib/Target/SparcV9/SparcV9TargetMachine.cpp @@ -136,6 +136,8 @@ SparcV9TargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out // FIXME: implement the switch instruction in the instruction selector. PM.add(createLowerSwitchPass()); + PM.add(createLowerSelectPass()); + // FIXME: implement the invoke/unwind instructions! PM.add(createLowerInvokePass()); @@ -211,6 +213,8 @@ void SparcV9JITInfo::addPassesToJITCompile(FunctionPassManager &PM) { // FIXME: implement the switch instruction in the instruction selector. PM.add(createLowerSwitchPass()); + PM.add(createLowerSelectPass()); + // FIXME: implement the invoke/unwind instructions! PM.add(createLowerInvokePass()); diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp index 31c5e578ea..56e9eab263 100644 --- a/lib/Target/X86/X86TargetMachine.cpp +++ b/lib/Target/X86/X86TargetMachine.cpp @@ -67,6 +67,9 @@ bool X86TargetMachine::addPassesToEmitAssembly(PassManager &PM, // FIXME: Implement the switch instruction in the instruction selector! PM.add(createLowerSwitchPass()); + // FIXME: Add support for the select instruction natively. + PM.add(createLowerSelectPass()); + if (NoPatternISel) PM.add(createX86SimpleInstructionSelector(*this)); else @@ -124,6 +127,9 @@ void X86JITInfo::addPassesToJITCompile(FunctionPassManager &PM) { // FIXME: Implement the switch instruction in the instruction selector! PM.add(createLowerSwitchPass()); + // FIXME: Add support for the select instruction natively. + PM.add(createLowerSelectPass()); + if (NoPatternISel) PM.add(createX86SimpleInstructionSelector(TM)); else |