Factor shared code
[oota-llvm.git] / lib / Target / X86 / X86TargetMachine.cpp
1 //===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
2 // 
3 // This file defines the X86 specific subclass of TargetMachine.
4 //
5 //===----------------------------------------------------------------------===//
6
7 #include "X86TargetMachine.h"
8 #include "X86.h"
9 #include "llvm/PassManager.h"
10 #include "llvm/Target/TargetMachineImpls.h"
11 #include "llvm/CodeGen/MachineFunction.h"
12 #include "llvm/CodeGen/Passes.h"
13 #include "llvm/Transforms/Scalar.h"
14 #include "Support/CommandLine.h"
15 #include "Support/Statistic.h"
16 #include <iostream>
17
18 namespace {
19   cl::opt<bool> NoLocalRA("disable-local-ra",
20                           cl::desc("Use Simple RA instead of Local RegAlloc"));
21   cl::opt<bool> PrintCode("print-machineinstrs",
22                           cl::desc("Print generated machine code"));
23 }
24
25 // allocateX86TargetMachine - Allocate and return a subclass of TargetMachine
26 // that implements the X86 backend.
27 //
28 TargetMachine *allocateX86TargetMachine(unsigned Configuration) {
29   return new X86TargetMachine(Configuration);
30 }
31
32
33 /// X86TargetMachine ctor - Create an ILP32 architecture model
34 ///
35 X86TargetMachine::X86TargetMachine(unsigned Config)
36   : TargetMachine("X86", 
37                   (Config & TM::EndianMask) == TM::LittleEndian,
38                   (Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4,
39                   (Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4,
40                   (Config & TM::PtrSizeMask) == TM::PtrSize64 ? 8 : 4),
41   FrameInfo(TargetFrameInfo::StackGrowsDown, 8/*16 for SSE*/, 4) {
42 }
43
44
45 // addPassesToEmitAssembly - We currently use all of the same passes as the JIT
46 // does to emit statically compiled machine code.
47 bool X86TargetMachine::addPassesToEmitAssembly(PassManager &PM,
48                                                std::ostream &Out) {
49   addPassesToJITCompile(PM);
50   PM.add(createX86CodePrinterPass(Out, *this));
51   return false; // success!
52 }
53
54 /// addPassesToJITCompile - Add passes to the specified pass manager to
55 /// implement a fast dynamic compiler for this target.  Return true if this is
56 /// not supported for this target.
57 ///
58 bool X86TargetMachine::addPassesToJITCompile(PassManager &PM) {
59   // FIXME: Implement the switch instruction in the instruction selector!
60   PM.add(createLowerSwitchPass());
61
62   PM.add(createX86SimpleInstructionSelector(*this));
63
64   // TODO: optional optimizations go here
65
66   // FIXME: Add SSA based peephole optimizer here.
67
68   // Print the instruction selected machine code...
69   if (PrintCode)
70     PM.add(createMachineFunctionPrinterPass());
71
72   // Perform register allocation to convert to a concrete x86 representation
73   if (NoLocalRA)
74     PM.add(createSimpleRegisterAllocator());
75   else
76     PM.add(createLocalRegisterAllocator());
77
78   if (PrintCode)
79     PM.add(createMachineFunctionPrinterPass());
80
81   PM.add(createX86FloatingPointStackifierPass());
82
83   if (PrintCode)
84     PM.add(createMachineFunctionPrinterPass());
85
86   // Insert prolog/epilog code.  Eliminate abstract frame index references...
87   PM.add(createPrologEpilogCodeInserter());
88
89   PM.add(createX86PeepholeOptimizerPass());
90
91   if (PrintCode)  // Print the register-allocated code
92     PM.add(createX86CodePrinterPass(std::cerr, *this));
93   return false; // success!
94 }
95