Remove 64 bit simple ISel, it never worked correctly

Add initial (buggy) implementation of 64 bit pattern ISel


git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21096 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
Nate Begeman 2005-04-05 08:51:15 +00:00
parent c8c5c8f0fa
commit d3e6b94020
4 changed files with 1769 additions and 2948 deletions

View File

@ -25,7 +25,7 @@ class TargetMachine;
FunctionPass *createPPCBranchSelectionPass();
FunctionPass *createPPC32ISelSimple(TargetMachine &TM);
FunctionPass *createPPC32ISelPattern(TargetMachine &TM);
FunctionPass *createPPC64ISelSimple(TargetMachine &TM);
FunctionPass *createPPC64ISelPattern(TargetMachine &TM);
FunctionPass *createDarwinAsmPrinter(std::ostream &OS, TargetMachine &TM);
FunctionPass *createAIXAsmPrinter(std::ostream &OS, TargetMachine &TM);

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -97,7 +97,7 @@ bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM,
PM.add(createUnreachableBlockEliminationPass());
if (LP64)
PM.add(createPPC64ISelSimple(*this));
PM.add(createPPC64ISelPattern(*this));
else if (EnablePatternISel)
PM.add(createPPC32ISelPattern(*this));
else