2002-10-30 06:37:54 +08:00
|
|
|
//===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
|
2005-04-22 07:38:14 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08: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.
|
2005-04-22 07:38:14 +08:00
|
|
|
//
|
2003-10-21 03:43:21 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-22 07:38:14 +08:00
|
|
|
//
|
2002-10-30 06:37:54 +08:00
|
|
|
// This file defines the X86 specific subclass of TargetMachine.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2006-09-08 07:39:26 +08:00
|
|
|
#include "X86TargetAsmInfo.h"
|
2002-10-30 06:37:54 +08:00
|
|
|
#include "X86TargetMachine.h"
|
2002-12-24 08:04:01 +08:00
|
|
|
#include "X86.h"
|
2003-08-25 03:49:48 +08:00
|
|
|
#include "llvm/Module.h"
|
2003-04-24 00:24:55 +08:00
|
|
|
#include "llvm/PassManager.h"
|
2002-10-30 08:47:49 +08:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
2003-01-13 08:51:23 +08:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2004-07-11 12:17:10 +08:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-07-11 10:48:49 +08:00
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2003-04-24 00:24:55 +08:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2006-01-23 07:41:00 +08:00
|
|
|
#include <iostream>
|
2003-12-20 09:22:19 +08:00
|
|
|
using namespace llvm;
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2005-01-04 00:34:19 +08:00
|
|
|
/// X86TargetMachineModule - Note that this is used on hosts that cannot link
|
|
|
|
/// in a library unless there are references into the library. In particular,
|
|
|
|
/// it seems that it is not possible to get things to work on Win32 without
|
|
|
|
/// this. Though it is unused, do not remove it.
|
|
|
|
extern "C" int X86TargetMachineModule;
|
|
|
|
int X86TargetMachineModule = 0;
|
|
|
|
|
2002-12-17 00:15:51 +08:00
|
|
|
namespace {
|
2004-07-11 10:48:49 +08:00
|
|
|
// Register the target.
|
2004-07-11 11:27:42 +08:00
|
|
|
RegisterTarget<X86TargetMachine> X("x86", " IA-32 (Pentium and above)");
|
2002-12-17 00:15:51 +08:00
|
|
|
}
|
|
|
|
|
2006-09-08 07:39:26 +08:00
|
|
|
const TargetAsmInfo *X86TargetMachine::createTargetAsmInfo() const {
|
|
|
|
return new X86TargetAsmInfo(*this);
|
|
|
|
}
|
|
|
|
|
2004-07-11 10:48:49 +08:00
|
|
|
unsigned X86TargetMachine::getJITMatchQuality() {
|
2004-10-18 23:54:17 +08:00
|
|
|
#if defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
|
2004-07-11 10:48:49 +08:00
|
|
|
return 10;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned X86TargetMachine::getModuleMatchQuality(const Module &M) {
|
2004-12-13 01:40:28 +08:00
|
|
|
// We strongly match "i[3-9]86-*".
|
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 5 && TT[0] == 'i' && TT[2] == '8' && TT[3] == '6' &&
|
|
|
|
TT[4] == '-' && TT[1] - '3' < 6)
|
|
|
|
return 20;
|
|
|
|
|
2004-07-11 10:48:49 +08:00
|
|
|
if (M.getEndianness() == Module::LittleEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer32)
|
2004-12-13 01:40:28 +08:00
|
|
|
return 10; // Weak match
|
2004-07-11 10:48:49 +08:00
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
|
|
|
return getJITMatchQuality()/2;
|
|
|
|
}
|
2002-10-30 06:37:54 +08:00
|
|
|
|
|
|
|
/// X86TargetMachine ctor - Create an ILP32 architecture model
|
|
|
|
///
|
2006-03-23 13:43:16 +08:00
|
|
|
X86TargetMachine::X86TargetMachine(const Module &M, const std::string &FS)
|
2006-09-04 02:44:02 +08:00
|
|
|
: Subtarget(M, FS), DataLayout("e-p:32:32-d:32-l:32"),
|
2005-07-12 09:41:54 +08:00
|
|
|
FrameInfo(TargetFrameInfo::StackGrowsDown,
|
|
|
|
Subtarget.getStackAlignment(), -4),
|
2006-05-31 05:45:53 +08:00
|
|
|
InstrInfo(*this), JITInfo(*this), TLInfo(*this) {
|
2006-02-23 04:19:42 +08:00
|
|
|
if (getRelocationModel() == Reloc::Default)
|
|
|
|
if (Subtarget.isTargetDarwin())
|
|
|
|
setRelocationModel(Reloc::DynamicNoPIC);
|
|
|
|
else
|
2006-07-27 05:12:04 +08:00
|
|
|
setRelocationModel(Reloc::PIC_);
|
2006-02-04 02:59:39 +08:00
|
|
|
}
|
2002-10-30 06:37:54 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
// Pass Pipeline Configuration
|
|
|
|
//===----------------------------------------------------------------------===//
|
2003-08-06 00:34:44 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
bool X86TargetMachine::addInstSelector(FunctionPassManager &PM, bool Fast) {
|
2005-08-19 07:53:15 +08:00
|
|
|
// Install an instruction selector.
|
2006-08-30 02:28:33 +08:00
|
|
|
PM.add(createX86ISelDag(*this, Fast));
|
2006-09-04 12:14:57 +08:00
|
|
|
return false;
|
2003-06-19 05:43:21 +08:00
|
|
|
}
|
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
bool X86TargetMachine::addPostRegAlloc(FunctionPassManager &PM, bool Fast) {
|
2003-01-13 08:51:23 +08:00
|
|
|
PM.add(createX86FloatingPointStackifierPass());
|
2006-09-04 12:14:57 +08:00
|
|
|
return true; // -print-machineinstr should print after this.
|
|
|
|
}
|
2003-01-13 08:51:23 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
bool X86TargetMachine::addAssemblyEmitter(FunctionPassManager &PM, bool Fast,
|
|
|
|
std::ostream &Out) {
|
|
|
|
PM.add(createX86CodePrinterPass(Out, *this));
|
|
|
|
return false;
|
|
|
|
}
|
2002-10-30 06:37:54 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
bool X86TargetMachine::addObjectWriter(FunctionPassManager &PM, bool Fast,
|
|
|
|
std::ostream &Out) {
|
|
|
|
if (Subtarget.isTargetELF()) {
|
|
|
|
addX86ELFObjectWriterPass(PM, Out, *this);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2003-10-18 02:27:46 +08:00
|
|
|
}
|
2003-11-12 06:41:34 +08:00
|
|
|
|
2006-09-04 12:14:57 +08:00
|
|
|
bool X86TargetMachine::addCodeEmitter(FunctionPassManager &PM, bool Fast,
|
|
|
|
MachineCodeEmitter &MCE) {
|
2006-09-05 02:48:41 +08:00
|
|
|
// FIXME: Move this to TargetJITInfo!
|
|
|
|
setRelocationModel(Reloc::Static);
|
|
|
|
|
2006-07-26 04:40:54 +08:00
|
|
|
PM.add(createX86CodeEmitterPass(*this, MCE));
|
2005-07-11 13:17:48 +08:00
|
|
|
return false;
|
|
|
|
}
|