forked from OSchip/llvm-project
Add the select lowering pass to get initial support for select instructions
llvm-svn: 12541
This commit is contained in:
parent
059f390257
commit
1a0e9ac2f5
|
@ -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());
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
Loading…
Reference in New Issue