4113d0e6dc8948772d2389fc5dc441c35b3cc339
[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                   1, 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 /// addPassesToJITCompile - Add passes to the specified pass manager to
45 /// implement a fast dynamic compiler for this target.  Return true if this is
46 /// not supported for this target.
47 ///
48 bool X86TargetMachine::addPassesToJITCompile(PassManager &PM) {
49   // FIXME: Implement the switch instruction in the instruction selector!
50   PM.add(createLowerSwitchPass());
51
52   PM.add(createSimpleX86InstructionSelector(*this));
53
54   // TODO: optional optimizations go here
55
56   // FIXME: Add SSA based peephole optimizer here.
57
58   // Print the instruction selected machine code...
59   if (PrintCode)
60     PM.add(createMachineFunctionPrinterPass());
61
62   // Perform register allocation to convert to a concrete x86 representation
63   if (NoLocalRA)
64     PM.add(createSimpleRegisterAllocator());
65   else
66     PM.add(createLocalRegisterAllocator());
67
68   if (PrintCode)
69     PM.add(createMachineFunctionPrinterPass());
70
71   PM.add(createX86FloatingPointStackifierPass());
72
73   if (PrintCode)
74     PM.add(createMachineFunctionPrinterPass());
75
76   // Insert prolog/epilog code.  Eliminate abstract frame index references...
77   PM.add(createPrologEpilogCodeInserter());
78
79   PM.add(createX86PeepholeOptimizerPass());
80
81   if (PrintCode)  // Print the register-allocated code
82     PM.add(createX86CodePrinterPass(std::cerr));
83
84   return false; // success!
85 }
86