2002-10-29 22:37:54 +00:00
|
|
|
//===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
|
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file was developed by the LLVM research group and is distributed under
|
|
|
|
// the University of Illinois Open Source License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
2002-10-29 22:37:54 +00:00
|
|
|
// This file defines the X86 specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "X86TargetMachine.h"
|
2002-12-24 00:04:01 +00:00
|
|
|
#include "X86.h"
|
2003-08-24 19:49:48 +00:00
|
|
|
#include "llvm/Module.h"
|
2003-04-23 16:24:55 +00:00
|
|
|
#include "llvm/PassManager.h"
|
2002-10-29 22:37:54 +00:00
|
|
|
#include "llvm/Target/TargetMachineImpls.h"
|
2002-10-30 00:47:49 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2003-01-13 00:51:23 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2003-04-23 16:24:55 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2002-12-16 16:15:51 +00:00
|
|
|
#include "Support/CommandLine.h"
|
|
|
|
#include "Support/Statistic.h"
|
2002-10-29 22:37:54 +00:00
|
|
|
|
2003-11-11 22:41:34 +00:00
|
|
|
namespace llvm {
|
|
|
|
|
2002-12-16 16:15:51 +00:00
|
|
|
namespace {
|
2002-12-24 00:04:01 +00:00
|
|
|
cl::opt<bool> PrintCode("print-machineinstrs",
|
|
|
|
cl::desc("Print generated machine code"));
|
2003-08-11 14:59:22 +00:00
|
|
|
cl::opt<bool> NoPatternISel("disable-pattern-isel", cl::init(true),
|
|
|
|
cl::desc("Use the 'simple' X86 instruction selector"));
|
2003-12-01 05:18:30 +00:00
|
|
|
cl::opt<bool> NoSSAPeephole("disable-ssa-peephole", cl::init(true),
|
|
|
|
cl::desc("Disable the ssa-based peephole optimizer (defaults to disabled)"));
|
2002-12-16 16:15:51 +00:00
|
|
|
}
|
|
|
|
|
2002-10-29 22:37:54 +00:00
|
|
|
// allocateX86TargetMachine - Allocate and return a subclass of TargetMachine
|
|
|
|
// that implements the X86 backend.
|
|
|
|
//
|
2003-08-24 19:49:48 +00:00
|
|
|
TargetMachine *allocateX86TargetMachine(const Module &M) {
|
|
|
|
return new X86TargetMachine(M);
|
2002-12-24 00:04:01 +00:00
|
|
|
}
|
2002-10-29 22:37:54 +00:00
|
|
|
|
|
|
|
|
|
|
|
/// X86TargetMachine ctor - Create an ILP32 architecture model
|
|
|
|
///
|
2003-08-24 19:49:48 +00:00
|
|
|
X86TargetMachine::X86TargetMachine(const Module &M)
|
2003-10-20 04:11:23 +00:00
|
|
|
: TargetMachine("X86", true, 4, 4, 4, 4, 4),
|
2003-08-24 19:49:48 +00:00
|
|
|
FrameInfo(TargetFrameInfo::StackGrowsDown, 8/*16 for SSE*/, 4) {
|
2002-10-29 22:37:54 +00:00
|
|
|
}
|
|
|
|
|
2003-08-05 16:34:44 +00:00
|
|
|
|
|
|
|
// addPassesToEmitAssembly - We currently use all of the same passes as the JIT
|
|
|
|
// does to emit statically compiled machine code.
|
2003-06-18 21:43:21 +00:00
|
|
|
bool X86TargetMachine::addPassesToEmitAssembly(PassManager &PM,
|
|
|
|
std::ostream &Out) {
|
2003-08-13 18:15:52 +00:00
|
|
|
// FIXME: Implement the switch instruction in the instruction selector!
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
2003-10-05 19:15:47 +00:00
|
|
|
// FIXME: Implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
|
|
|
// FIXME: The code generator does not properly handle functions with
|
|
|
|
// unreachable basic blocks.
|
|
|
|
PM.add(createCFGSimplificationPass());
|
|
|
|
|
2003-08-13 18:15:52 +00:00
|
|
|
if (NoPatternISel)
|
|
|
|
PM.add(createX86SimpleInstructionSelector(*this));
|
|
|
|
else
|
|
|
|
PM.add(createX86PatternInstructionSelector(*this));
|
|
|
|
|
2003-12-01 05:18:30 +00:00
|
|
|
// Run optional SSA-based machine code optimizations next...
|
|
|
|
if (!NoSSAPeephole)
|
|
|
|
PM.add(createX86SSAPeepholeOptimizerPass());
|
2003-08-13 18:15:52 +00:00
|
|
|
|
|
|
|
// Print the instruction selected machine code...
|
|
|
|
if (PrintCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass());
|
|
|
|
|
2003-12-13 05:36:22 +00:00
|
|
|
// kill floating point registers at the end of basic blocks. this is
|
|
|
|
// done because the floating point register stackifier cannot handle
|
|
|
|
// floating point regs that are live across basic blocks.
|
|
|
|
PM.add(createX86FloatingPointKillerPass());
|
|
|
|
|
2003-08-13 18:15:52 +00:00
|
|
|
// Perform register allocation to convert to a concrete x86 representation
|
2003-10-02 16:57:49 +00:00
|
|
|
PM.add(createRegisterAllocator());
|
2003-08-13 18:15:52 +00:00
|
|
|
|
|
|
|
if (PrintCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass());
|
|
|
|
|
|
|
|
PM.add(createX86FloatingPointStackifierPass());
|
|
|
|
|
|
|
|
if (PrintCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass());
|
|
|
|
|
|
|
|
// Insert prolog/epilog code. Eliminate abstract frame index references...
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
|
|
|
|
|
|
|
PM.add(createX86PeepholeOptimizerPass());
|
|
|
|
|
|
|
|
if (PrintCode) // Print the register-allocated code
|
|
|
|
PM.add(createX86CodePrinterPass(std::cerr, *this));
|
|
|
|
|
2003-07-23 20:25:08 +00:00
|
|
|
PM.add(createX86CodePrinterPass(Out, *this));
|
2003-06-18 21:43:21 +00:00
|
|
|
return false; // success!
|
|
|
|
}
|
|
|
|
|
2002-10-29 22:37:54 +00:00
|
|
|
/// addPassesToJITCompile - Add passes to the specified pass manager to
|
|
|
|
/// implement a fast dynamic compiler for this target. Return true if this is
|
|
|
|
/// not supported for this target.
|
|
|
|
///
|
2003-08-13 18:15:52 +00:00
|
|
|
bool X86TargetMachine::addPassesToJITCompile(FunctionPassManager &PM) {
|
2003-04-23 16:24:55 +00:00
|
|
|
// FIXME: Implement the switch instruction in the instruction selector!
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
2003-10-05 19:15:47 +00:00
|
|
|
// FIXME: Implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
|
|
|
// FIXME: The code generator does not properly handle functions with
|
|
|
|
// unreachable basic blocks.
|
|
|
|
PM.add(createCFGSimplificationPass());
|
|
|
|
|
2003-08-11 14:59:22 +00:00
|
|
|
if (NoPatternISel)
|
|
|
|
PM.add(createX86SimpleInstructionSelector(*this));
|
|
|
|
else
|
|
|
|
PM.add(createX86PatternInstructionSelector(*this));
|
2002-10-29 22:37:54 +00:00
|
|
|
|
2003-12-01 05:18:30 +00:00
|
|
|
// Run optional SSA-based machine code optimizations next...
|
|
|
|
if (!NoSSAPeephole)
|
|
|
|
PM.add(createX86SSAPeepholeOptimizerPass());
|
2002-10-29 22:37:54 +00:00
|
|
|
|
2003-01-13 00:51:23 +00:00
|
|
|
// FIXME: Add SSA based peephole optimizer here.
|
|
|
|
|
2002-10-30 00:47:49 +00:00
|
|
|
// Print the instruction selected machine code...
|
2002-12-24 00:04:01 +00:00
|
|
|
if (PrintCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass());
|
2002-10-30 00:47:49 +00:00
|
|
|
|
2003-12-13 05:36:22 +00:00
|
|
|
// kill floating point registers at the end of basic blocks. this is
|
|
|
|
// done because the floating point register stackifier cannot handle
|
|
|
|
// floating point regs that are live across basic blocks.
|
|
|
|
PM.add(createX86FloatingPointKillerPass());
|
|
|
|
|
2002-10-29 22:37:54 +00:00
|
|
|
// Perform register allocation to convert to a concrete x86 representation
|
2003-10-02 16:57:49 +00:00
|
|
|
PM.add(createRegisterAllocator());
|
2002-12-28 20:33:32 +00:00
|
|
|
|
2003-01-13 00:51:23 +00:00
|
|
|
if (PrintCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass());
|
|
|
|
|
|
|
|
PM.add(createX86FloatingPointStackifierPass());
|
|
|
|
|
2002-12-28 20:33:32 +00:00
|
|
|
if (PrintCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass());
|
|
|
|
|
|
|
|
// Insert prolog/epilog code. Eliminate abstract frame index references...
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2002-10-29 22:37:54 +00:00
|
|
|
|
2003-01-13 00:51:23 +00:00
|
|
|
PM.add(createX86PeepholeOptimizerPass());
|
|
|
|
|
2002-12-25 05:06:21 +00:00
|
|
|
if (PrintCode) // Print the register-allocated code
|
2003-07-23 20:25:08 +00:00
|
|
|
PM.add(createX86CodePrinterPass(std::cerr, *this));
|
2002-10-29 22:37:54 +00:00
|
|
|
return false; // success!
|
|
|
|
}
|
|
|
|
|
2003-10-20 15:15:17 +00:00
|
|
|
void X86TargetMachine::replaceMachineCodeForFunction (void *Old, void *New) {
|
2003-10-17 21:47:25 +00:00
|
|
|
// FIXME: This code could perhaps live in a more appropriate place.
|
2003-10-17 18:27:46 +00:00
|
|
|
char *OldByte = (char *) Old;
|
2003-10-17 21:47:25 +00:00
|
|
|
*OldByte++ = 0xE9; // Emit JMP opcode.
|
|
|
|
int32_t *OldWord = (int32_t *) OldByte;
|
2003-11-06 21:30:05 +00:00
|
|
|
int32_t NewAddr = (intptr_t) New;
|
|
|
|
int32_t OldAddr = (intptr_t) OldWord;
|
2003-10-17 21:47:25 +00:00
|
|
|
*OldWord = NewAddr - OldAddr - 4; // Emit PC-relative addr of New code.
|
2003-10-17 18:27:46 +00:00
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|
|
|
|
} // End llvm namespace
|