blob: 0a42f19733c67340b60c76c1daf01552e3376f4b [file] [log] [blame]
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00001//===-- 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"
Chris Lattner5bcd95c2002-12-24 00:04:01 +00008#include "X86.h"
Chris Lattnerbb144a82003-08-24 19:49:48 +00009#include "llvm/Module.h"
Chris Lattner155e68f2003-04-23 16:24:55 +000010#include "llvm/PassManager.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000011#include "llvm/Target/TargetMachineImpls.h"
Chris Lattner3dffa792002-10-30 00:47:49 +000012#include "llvm/CodeGen/MachineFunction.h"
Chris Lattnerd91d86f2003-01-13 00:51:23 +000013#include "llvm/CodeGen/Passes.h"
Chris Lattner155e68f2003-04-23 16:24:55 +000014#include "llvm/Transforms/Scalar.h"
Chris Lattner439a27a2002-12-16 16:15:51 +000015#include "Support/CommandLine.h"
16#include "Support/Statistic.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000017
Chris Lattner439a27a2002-12-16 16:15:51 +000018namespace {
Chris Lattner5bcd95c2002-12-24 00:04:01 +000019 cl::opt<bool> PrintCode("print-machineinstrs",
20 cl::desc("Print generated machine code"));
Chris Lattnerac0c8682003-08-11 14:59:22 +000021 cl::opt<bool> NoPatternISel("disable-pattern-isel", cl::init(true),
22 cl::desc("Use the 'simple' X86 instruction selector"));
Chris Lattner439a27a2002-12-16 16:15:51 +000023}
24
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000025// allocateX86TargetMachine - Allocate and return a subclass of TargetMachine
26// that implements the X86 backend.
27//
Chris Lattnerbb144a82003-08-24 19:49:48 +000028TargetMachine *allocateX86TargetMachine(const Module &M) {
29 return new X86TargetMachine(M);
Chris Lattner5bcd95c2002-12-24 00:04:01 +000030}
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000031
32
33/// X86TargetMachine ctor - Create an ILP32 architecture model
34///
Chris Lattnerbb144a82003-08-24 19:49:48 +000035X86TargetMachine::X86TargetMachine(const Module &M)
Chris Lattner5bcd95c2002-12-24 00:04:01 +000036 : TargetMachine("X86",
Chris Lattnerbb144a82003-08-24 19:49:48 +000037 M.getEndianness() != Module::BigEndian,
38 M.getPointerSize() != Module::Pointer64 ? 4 : 8,
39 M.getPointerSize() != Module::Pointer64 ? 4 : 8,
40 M.getPointerSize() != Module::Pointer64 ? 4 : 8,
41 4, M.getPointerSize() != Module::Pointer64 ? 4 : 8),
42 FrameInfo(TargetFrameInfo::StackGrowsDown, 8/*16 for SSE*/, 4) {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000043}
44
Chris Lattnerc9bbfbc2003-08-05 16:34:44 +000045
46// addPassesToEmitAssembly - We currently use all of the same passes as the JIT
47// does to emit statically compiled machine code.
Brian Gaekede3aa4f2003-06-18 21:43:21 +000048bool X86TargetMachine::addPassesToEmitAssembly(PassManager &PM,
49 std::ostream &Out) {
Brian Gaekeb4286542003-08-13 18:15:52 +000050 // FIXME: Implement the switch instruction in the instruction selector!
51 PM.add(createLowerSwitchPass());
52
Chris Lattnerc58c1692003-10-05 19:15:47 +000053 // FIXME: Implement the invoke/unwind instructions!
54 PM.add(createLowerInvokePass());
55
56 // FIXME: The code generator does not properly handle functions with
57 // unreachable basic blocks.
58 PM.add(createCFGSimplificationPass());
59
Brian Gaekeb4286542003-08-13 18:15:52 +000060 if (NoPatternISel)
61 PM.add(createX86SimpleInstructionSelector(*this));
62 else
63 PM.add(createX86PatternInstructionSelector(*this));
64
65 // TODO: optional optimizations go here
66
67 // FIXME: Add SSA based peephole optimizer here.
68
69 // Print the instruction selected machine code...
70 if (PrintCode)
71 PM.add(createMachineFunctionPrinterPass());
72
73 // Perform register allocation to convert to a concrete x86 representation
Alkis Evlogimenos7237ece2003-10-02 16:57:49 +000074 PM.add(createRegisterAllocator());
Brian Gaekeb4286542003-08-13 18:15:52 +000075
76 if (PrintCode)
77 PM.add(createMachineFunctionPrinterPass());
78
79 PM.add(createX86FloatingPointStackifierPass());
80
81 if (PrintCode)
82 PM.add(createMachineFunctionPrinterPass());
83
84 // Insert prolog/epilog code. Eliminate abstract frame index references...
85 PM.add(createPrologEpilogCodeInserter());
86
87 PM.add(createX86PeepholeOptimizerPass());
88
89 if (PrintCode) // Print the register-allocated code
90 PM.add(createX86CodePrinterPass(std::cerr, *this));
91
Brian Gaekede420ae2003-07-23 20:25:08 +000092 PM.add(createX86CodePrinterPass(Out, *this));
Brian Gaekede3aa4f2003-06-18 21:43:21 +000093 return false; // success!
94}
95
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000096/// addPassesToJITCompile - Add passes to the specified pass manager to
97/// implement a fast dynamic compiler for this target. Return true if this is
98/// not supported for this target.
99///
Brian Gaekeb4286542003-08-13 18:15:52 +0000100bool X86TargetMachine::addPassesToJITCompile(FunctionPassManager &PM) {
Chris Lattner155e68f2003-04-23 16:24:55 +0000101 // FIXME: Implement the switch instruction in the instruction selector!
102 PM.add(createLowerSwitchPass());
103
Chris Lattnerc58c1692003-10-05 19:15:47 +0000104 // FIXME: Implement the invoke/unwind instructions!
105 PM.add(createLowerInvokePass());
106
107 // FIXME: The code generator does not properly handle functions with
108 // unreachable basic blocks.
109 PM.add(createCFGSimplificationPass());
110
Chris Lattnerac0c8682003-08-11 14:59:22 +0000111 if (NoPatternISel)
112 PM.add(createX86SimpleInstructionSelector(*this));
113 else
114 PM.add(createX86PatternInstructionSelector(*this));
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000115
116 // TODO: optional optimizations go here
117
Chris Lattnerd91d86f2003-01-13 00:51:23 +0000118 // FIXME: Add SSA based peephole optimizer here.
119
Chris Lattner3dffa792002-10-30 00:47:49 +0000120 // Print the instruction selected machine code...
Chris Lattner5bcd95c2002-12-24 00:04:01 +0000121 if (PrintCode)
122 PM.add(createMachineFunctionPrinterPass());
Chris Lattner3dffa792002-10-30 00:47:49 +0000123
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000124 // Perform register allocation to convert to a concrete x86 representation
Alkis Evlogimenos7237ece2003-10-02 16:57:49 +0000125 PM.add(createRegisterAllocator());
Chris Lattnerd282cfe2002-12-28 20:33:32 +0000126
127 if (PrintCode)
128 PM.add(createMachineFunctionPrinterPass());
129
Chris Lattnerd91d86f2003-01-13 00:51:23 +0000130 PM.add(createX86FloatingPointStackifierPass());
131
132 if (PrintCode)
133 PM.add(createMachineFunctionPrinterPass());
134
Chris Lattnerd282cfe2002-12-28 20:33:32 +0000135 // Insert prolog/epilog code. Eliminate abstract frame index references...
136 PM.add(createPrologEpilogCodeInserter());
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000137
Chris Lattnerd91d86f2003-01-13 00:51:23 +0000138 PM.add(createX86PeepholeOptimizerPass());
139
Chris Lattner430cda72002-12-25 05:06:21 +0000140 if (PrintCode) // Print the register-allocated code
Brian Gaekede420ae2003-07-23 20:25:08 +0000141 PM.add(createX86CodePrinterPass(std::cerr, *this));
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000142 return false; // success!
143}
144
Brian Gaeke9b8c2912003-10-17 18:27:46 +0000145bool X86TargetMachine::replaceMachineCodeForFunction (void *Old, void *New) {
Brian Gaekee5f68592003-10-17 21:47:25 +0000146 // FIXME: This code could perhaps live in a more appropriate place.
Brian Gaeke9b8c2912003-10-17 18:27:46 +0000147 char *OldByte = (char *) Old;
Brian Gaekee5f68592003-10-17 21:47:25 +0000148 *OldByte++ = 0xE9; // Emit JMP opcode.
149 int32_t *OldWord = (int32_t *) OldByte;
150 int32_t NewAddr = (int32_t) New;
151 int32_t OldAddr = (int32_t) OldWord;
152 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
153 return false; // success!
Brian Gaeke9b8c2912003-10-17 18:27:46 +0000154}