blob: 954d4f4ced6c1cba911f7c5bca7e541d5643d79b [file] [log] [blame]
Chris Lattnerb4f68ed2002-10-29 22:37:54 +00001//===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
2//
John Criswellb576c942003-10-20 19:43:21 +00003// The LLVM Compiler Infrastructure
4//
5// This file was developed by the LLVM research group and is distributed under
6// the University of Illinois Open Source License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000010// This file defines the X86 specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
14#include "X86TargetMachine.h"
Chris Lattner5bcd95c2002-12-24 00:04:01 +000015#include "X86.h"
Chris Lattnerbb144a82003-08-24 19:49:48 +000016#include "llvm/Module.h"
Chris Lattner155e68f2003-04-23 16:24:55 +000017#include "llvm/PassManager.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000018#include "llvm/Target/TargetMachineImpls.h"
Chris Lattner3dffa792002-10-30 00:47:49 +000019#include "llvm/CodeGen/MachineFunction.h"
Chris Lattnerd91d86f2003-01-13 00:51:23 +000020#include "llvm/CodeGen/Passes.h"
Chris Lattner155e68f2003-04-23 16:24:55 +000021#include "llvm/Transforms/Scalar.h"
Chris Lattner439a27a2002-12-16 16:15:51 +000022#include "Support/CommandLine.h"
23#include "Support/Statistic.h"
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000024
Chris Lattner439a27a2002-12-16 16:15:51 +000025namespace {
Chris Lattner5bcd95c2002-12-24 00:04:01 +000026 cl::opt<bool> PrintCode("print-machineinstrs",
27 cl::desc("Print generated machine code"));
Chris Lattnerac0c8682003-08-11 14:59:22 +000028 cl::opt<bool> NoPatternISel("disable-pattern-isel", cl::init(true),
29 cl::desc("Use the 'simple' X86 instruction selector"));
Chris Lattner439a27a2002-12-16 16:15:51 +000030}
31
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000032// allocateX86TargetMachine - Allocate and return a subclass of TargetMachine
33// that implements the X86 backend.
34//
Chris Lattnerbb144a82003-08-24 19:49:48 +000035TargetMachine *allocateX86TargetMachine(const Module &M) {
36 return new X86TargetMachine(M);
Chris Lattner5bcd95c2002-12-24 00:04:01 +000037}
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000038
39
40/// X86TargetMachine ctor - Create an ILP32 architecture model
41///
Chris Lattnerbb144a82003-08-24 19:49:48 +000042X86TargetMachine::X86TargetMachine(const Module &M)
Chris Lattner6c09db22003-10-20 04:11:23 +000043 : TargetMachine("X86", true, 4, 4, 4, 4, 4),
Chris Lattnerbb144a82003-08-24 19:49:48 +000044 FrameInfo(TargetFrameInfo::StackGrowsDown, 8/*16 for SSE*/, 4) {
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000045}
46
Chris Lattnerc9bbfbc2003-08-05 16:34:44 +000047
48// addPassesToEmitAssembly - We currently use all of the same passes as the JIT
49// does to emit statically compiled machine code.
Brian Gaekede3aa4f2003-06-18 21:43:21 +000050bool X86TargetMachine::addPassesToEmitAssembly(PassManager &PM,
51 std::ostream &Out) {
Brian Gaekeb4286542003-08-13 18:15:52 +000052 // FIXME: Implement the switch instruction in the instruction selector!
53 PM.add(createLowerSwitchPass());
54
Chris Lattnerc58c1692003-10-05 19:15:47 +000055 // FIXME: Implement the invoke/unwind instructions!
56 PM.add(createLowerInvokePass());
57
58 // FIXME: The code generator does not properly handle functions with
59 // unreachable basic blocks.
60 PM.add(createCFGSimplificationPass());
61
Brian Gaekeb4286542003-08-13 18:15:52 +000062 if (NoPatternISel)
63 PM.add(createX86SimpleInstructionSelector(*this));
64 else
65 PM.add(createX86PatternInstructionSelector(*this));
66
67 // TODO: optional optimizations go here
68
69 // FIXME: Add SSA based peephole optimizer here.
70
71 // Print the instruction selected machine code...
72 if (PrintCode)
73 PM.add(createMachineFunctionPrinterPass());
74
75 // Perform register allocation to convert to a concrete x86 representation
Alkis Evlogimenos7237ece2003-10-02 16:57:49 +000076 PM.add(createRegisterAllocator());
Brian Gaekeb4286542003-08-13 18:15:52 +000077
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
Brian Gaekede420ae2003-07-23 20:25:08 +000094 PM.add(createX86CodePrinterPass(Out, *this));
Brian Gaekede3aa4f2003-06-18 21:43:21 +000095 return false; // success!
96}
97
Chris Lattnerb4f68ed2002-10-29 22:37:54 +000098/// addPassesToJITCompile - Add passes to the specified pass manager to
99/// implement a fast dynamic compiler for this target. Return true if this is
100/// not supported for this target.
101///
Brian Gaekeb4286542003-08-13 18:15:52 +0000102bool X86TargetMachine::addPassesToJITCompile(FunctionPassManager &PM) {
Chris Lattner155e68f2003-04-23 16:24:55 +0000103 // FIXME: Implement the switch instruction in the instruction selector!
104 PM.add(createLowerSwitchPass());
105
Chris Lattnerc58c1692003-10-05 19:15:47 +0000106 // FIXME: Implement the invoke/unwind instructions!
107 PM.add(createLowerInvokePass());
108
109 // FIXME: The code generator does not properly handle functions with
110 // unreachable basic blocks.
111 PM.add(createCFGSimplificationPass());
112
Chris Lattnerac0c8682003-08-11 14:59:22 +0000113 if (NoPatternISel)
114 PM.add(createX86SimpleInstructionSelector(*this));
115 else
116 PM.add(createX86PatternInstructionSelector(*this));
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000117
118 // TODO: optional optimizations go here
119
Chris Lattnerd91d86f2003-01-13 00:51:23 +0000120 // FIXME: Add SSA based peephole optimizer here.
121
Chris Lattner3dffa792002-10-30 00:47:49 +0000122 // Print the instruction selected machine code...
Chris Lattner5bcd95c2002-12-24 00:04:01 +0000123 if (PrintCode)
124 PM.add(createMachineFunctionPrinterPass());
Chris Lattner3dffa792002-10-30 00:47:49 +0000125
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000126 // Perform register allocation to convert to a concrete x86 representation
Alkis Evlogimenos7237ece2003-10-02 16:57:49 +0000127 PM.add(createRegisterAllocator());
Chris Lattnerd282cfe2002-12-28 20:33:32 +0000128
129 if (PrintCode)
130 PM.add(createMachineFunctionPrinterPass());
131
Chris Lattnerd91d86f2003-01-13 00:51:23 +0000132 PM.add(createX86FloatingPointStackifierPass());
133
134 if (PrintCode)
135 PM.add(createMachineFunctionPrinterPass());
136
Chris Lattnerd282cfe2002-12-28 20:33:32 +0000137 // Insert prolog/epilog code. Eliminate abstract frame index references...
138 PM.add(createPrologEpilogCodeInserter());
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000139
Chris Lattnerd91d86f2003-01-13 00:51:23 +0000140 PM.add(createX86PeepholeOptimizerPass());
141
Chris Lattner430cda72002-12-25 05:06:21 +0000142 if (PrintCode) // Print the register-allocated code
Brian Gaekede420ae2003-07-23 20:25:08 +0000143 PM.add(createX86CodePrinterPass(std::cerr, *this));
Chris Lattnerb4f68ed2002-10-29 22:37:54 +0000144 return false; // success!
145}
146
Brian Gaeke682ce722003-10-20 15:15:17 +0000147void X86TargetMachine::replaceMachineCodeForFunction (void *Old, void *New) {
Brian Gaekee5f68592003-10-17 21:47:25 +0000148 // FIXME: This code could perhaps live in a more appropriate place.
Brian Gaeke9b8c2912003-10-17 18:27:46 +0000149 char *OldByte = (char *) Old;
Brian Gaekee5f68592003-10-17 21:47:25 +0000150 *OldByte++ = 0xE9; // Emit JMP opcode.
151 int32_t *OldWord = (int32_t *) OldByte;
Chris Lattner2bee0572003-11-06 21:30:05 +0000152 int32_t NewAddr = (intptr_t) New;
153 int32_t OldAddr = (intptr_t) OldWord;
Brian Gaekee5f68592003-10-17 21:47:25 +0000154 *OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
Brian Gaeke9b8c2912003-10-17 18:27:46 +0000155}