From c9bbfbc04e6e8c946851565c2c686c39297ced76 Mon Sep 17 00:00:00 2001 From: Chris Lattner Date: Tue, 5 Aug 2003 16:34:44 +0000 Subject: [PATCH] Factor shared code git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@7600 91177308-0d34-0410-b5e6-96231b3b80d8 --- lib/Target/X86/X86TargetMachine.cpp | 12 ++++-------- 1 file changed, 4 insertions(+), 8 deletions(-) diff --git a/lib/Target/X86/X86TargetMachine.cpp b/lib/Target/X86/X86TargetMachine.cpp index a3aa458d77e..893e62fd4f7 100644 --- a/lib/Target/X86/X86TargetMachine.cpp +++ b/lib/Target/X86/X86TargetMachine.cpp @@ -41,15 +41,12 @@ X86TargetMachine::X86TargetMachine(unsigned Config) FrameInfo(TargetFrameInfo::StackGrowsDown, 8/*16 for SSE*/, 4) { } -// llc backend for x86 + +// addPassesToEmitAssembly - We currently use all of the same passes as the JIT +// does to emit statically compiled machine code. bool X86TargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out) { - PM.add(createLowerSwitchPass()); - PM.add(createX86SimpleInstructionSelector(*this)); - PM.add(createLocalRegisterAllocator()); - PM.add(createX86FloatingPointStackifierPass()); - PM.add(createPrologEpilogCodeInserter()); - PM.add(createX86PeepholeOptimizerPass()); + addPassesToJITCompile(PM); PM.add(createX86CodePrinterPass(Out, *this)); return false; // success! } @@ -93,7 +90,6 @@ bool X86TargetMachine::addPassesToJITCompile(PassManager &PM) { if (PrintCode) // Print the register-allocated code PM.add(createX86CodePrinterPass(std::cerr, *this)); - return false; // success! }