Remove 64 bit simple ISel, it never worked correctly

Add initial (buggy) implementation of 64 bit pattern ISel

llvm-svn: 21096
This commit is contained in:
Nate Begeman 2005-04-05 08:51:15 +00:00
parent 4bde071216
commit 9203e169a7
4 changed files with 1769 additions and 2948 deletions

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

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);

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