2002-10-29 22:37:54 +00:00
|
|
|
//===-- X86TargetMachine.cpp - Define TargetMachine for the X86 -----------===//
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
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.
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
2003-10-20 19:43:21 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 23:38:14 +00:00
|
|
|
//
|
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"
|
2004-06-20 07:49:54 +00:00
|
|
|
#include "llvm/CodeGen/IntrinsicLowering.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"
|
2004-07-11 04:17:10 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-07-11 02:48:49 +00:00
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2003-04-23 16:24:55 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
|
|
|
#include "llvm/ADT/Statistic.h"
|
2006-01-22 23:41:00 +00:00
|
|
|
#include <iostream>
|
2003-12-20 01:22:19 +00:00
|
|
|
using namespace llvm;
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2004-08-24 08:18:44 +00:00
|
|
|
X86VectorEnum llvm::X86Vector = NoSSE;
|
2005-07-06 18:59:04 +00:00
|
|
|
bool llvm::X86ScalarSSE = false;
|
2005-12-17 01:22:13 +00:00
|
|
|
bool llvm::X86DAGIsel = false;
|
2004-08-24 08:18:44 +00:00
|
|
|
|
2005-01-03 16:34:19 +00: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-16 16:15:51 +00:00
|
|
|
namespace {
|
2004-02-09 01:47:10 +00:00
|
|
|
cl::opt<bool> DisableOutput("disable-x86-llc-output", cl::Hidden,
|
|
|
|
cl::desc("Disable the X86 asm printer, for use "
|
|
|
|
"when profiling the code generator."));
|
2005-07-06 18:59:04 +00:00
|
|
|
cl::opt<bool, true> EnableSSEFP("enable-sse-scalar-fp",
|
|
|
|
cl::desc("Perform FP math in SSE regs instead of the FP stack"),
|
|
|
|
cl::location(X86ScalarSSE),
|
|
|
|
cl::init(false));
|
2004-07-11 02:48:49 +00:00
|
|
|
|
2005-12-17 01:22:13 +00:00
|
|
|
cl::opt<bool, true> EnableX86DAGDAG("enable-x86-dag-isel", cl::Hidden,
|
|
|
|
cl::desc("Enable DAG-to-DAG isel for X86"),
|
|
|
|
cl::location(X86DAGIsel),
|
2006-01-20 01:14:05 +00:00
|
|
|
cl::init(false));
|
2005-11-16 01:54:32 +00:00
|
|
|
|
2004-08-24 08:18:44 +00:00
|
|
|
// FIXME: This should eventually be handled with target triples and
|
|
|
|
// subtarget support!
|
|
|
|
cl::opt<X86VectorEnum, true>
|
|
|
|
SSEArg(
|
|
|
|
cl::desc("Enable SSE support in the X86 target:"),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(SSE, "sse", " Enable SSE support"),
|
|
|
|
clEnumValN(SSE2, "sse2", " Enable SSE and SSE2 support"),
|
|
|
|
clEnumValN(SSE3, "sse3", " Enable SSE, SSE2, and SSE3 support"),
|
|
|
|
clEnumValEnd),
|
|
|
|
cl::location(X86Vector), cl::init(NoSSE));
|
|
|
|
|
2004-07-11 02:48:49 +00:00
|
|
|
// Register the target.
|
2004-07-11 03:27:42 +00:00
|
|
|
RegisterTarget<X86TargetMachine> X("x86", " IA-32 (Pentium and above)");
|
2002-12-16 16:15:51 +00:00
|
|
|
}
|
|
|
|
|
2004-07-11 02:48:49 +00:00
|
|
|
unsigned X86TargetMachine::getJITMatchQuality() {
|
2004-10-18 15:54:17 +00:00
|
|
|
#if defined(i386) || defined(__i386__) || defined(__x86__) || defined(_M_IX86)
|
2004-07-11 02:48:49 +00:00
|
|
|
return 10;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned X86TargetMachine::getModuleMatchQuality(const Module &M) {
|
2004-12-12 17:40:28 +00: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 02:48:49 +00:00
|
|
|
if (M.getEndianness() == Module::LittleEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer32)
|
2004-12-12 17:40:28 +00:00
|
|
|
return 10; // Weak match
|
2004-07-11 02:48:49 +00:00
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
|
|
|
return getJITMatchQuality()/2;
|
|
|
|
}
|
2002-10-29 22:37:54 +00:00
|
|
|
|
|
|
|
/// X86TargetMachine ctor - Create an ILP32 architecture model
|
|
|
|
///
|
2005-09-01 21:38:21 +00:00
|
|
|
X86TargetMachine::X86TargetMachine(const Module &M,
|
|
|
|
IntrinsicLowering *IL,
|
|
|
|
const std::string &FS)
|
2003-12-28 21:23:38 +00:00
|
|
|
: TargetMachine("X86", IL, true, 4, 4, 4, 4, 4),
|
2005-09-01 21:38:21 +00:00
|
|
|
Subtarget(M, FS),
|
2005-07-12 01:41:54 +00:00
|
|
|
FrameInfo(TargetFrameInfo::StackGrowsDown,
|
|
|
|
Subtarget.getStackAlignment(), -4),
|
2003-12-28 21:23:38 +00:00
|
|
|
JITInfo(*this) {
|
2005-07-06 18:59:04 +00:00
|
|
|
// Scalar SSE FP requires at least SSE2
|
|
|
|
X86ScalarSSE &= X86Vector >= SSE2;
|
2005-12-20 22:59:51 +00:00
|
|
|
|
|
|
|
// Ignore -enable-sse-scalar-fp if -enable-x86-dag-isel.
|
|
|
|
X86ScalarSSE |= (X86DAGIsel && X86Vector >= SSE2);
|
2002-10-29 22:37:54 +00:00
|
|
|
}
|
|
|
|
|
2003-08-05 16:34:44 +00:00
|
|
|
|
2005-06-25 02:48:37 +00:00
|
|
|
// addPassesToEmitFile - We currently use all of the same passes as the JIT
|
2003-08-05 16:34:44 +00:00
|
|
|
// does to emit statically compiled machine code.
|
2005-06-25 02:48:37 +00:00
|
|
|
bool X86TargetMachine::addPassesToEmitFile(PassManager &PM, std::ostream &Out,
|
2005-11-08 02:11:51 +00:00
|
|
|
CodeGenFileType FileType,
|
|
|
|
bool Fast) {
|
2005-07-27 06:12:32 +00:00
|
|
|
if (FileType != TargetMachine::AssemblyFile &&
|
2005-06-27 06:30:12 +00:00
|
|
|
FileType != TargetMachine::ObjectFile) return true;
|
2005-06-25 02:48:37 +00:00
|
|
|
|
2004-05-23 21:23:35 +00:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
|
|
|
|
2003-10-05 19:15:47 +00:00
|
|
|
// FIXME: Implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
2004-02-25 19:30:19 +00:00
|
|
|
// FIXME: Implement the switch instruction in the instruction selector!
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
2004-07-02 05:46:41 +00:00
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2005-08-18 23:53:15 +00:00
|
|
|
// Install an instruction selector.
|
2005-12-17 01:22:13 +00:00
|
|
|
if (X86DAGIsel)
|
2005-11-16 01:54:32 +00:00
|
|
|
PM.add(createX86ISelDag(*this));
|
|
|
|
else
|
|
|
|
PM.add(createX86ISelPattern(*this));
|
2003-08-13 18:15:52 +00:00
|
|
|
|
|
|
|
// Print the instruction selected machine code...
|
2004-03-04 19:16:23 +00:00
|
|
|
if (PrintMachineCode)
|
2004-02-04 21:41:01 +00:00
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
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
|
|
|
|
2004-03-04 19:16:23 +00:00
|
|
|
if (PrintMachineCode)
|
2004-02-04 21:41:01 +00:00
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2003-08-13 18:15:52 +00:00
|
|
|
|
|
|
|
PM.add(createX86FloatingPointStackifierPass());
|
|
|
|
|
2004-03-04 19:16:23 +00:00
|
|
|
if (PrintMachineCode)
|
2004-02-04 21:41:01 +00:00
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2003-08-13 18:15:52 +00:00
|
|
|
|
|
|
|
// Insert prolog/epilog code. Eliminate abstract frame index references...
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
|
|
|
|
|
|
|
PM.add(createX86PeepholeOptimizerPass());
|
|
|
|
|
2004-03-04 19:16:23 +00:00
|
|
|
if (PrintMachineCode) // Print the register-allocated code
|
2003-08-13 18:15:52 +00:00
|
|
|
PM.add(createX86CodePrinterPass(std::cerr, *this));
|
|
|
|
|
2004-02-09 01:47:10 +00:00
|
|
|
if (!DisableOutput)
|
2005-06-27 06:30:12 +00:00
|
|
|
switch (FileType) {
|
|
|
|
default:
|
|
|
|
assert(0 && "Unexpected filetype here!");
|
|
|
|
case TargetMachine::AssemblyFile:
|
|
|
|
PM.add(createX86CodePrinterPass(Out, *this));
|
|
|
|
break;
|
|
|
|
case TargetMachine::ObjectFile:
|
|
|
|
// FIXME: We only support emission of ELF files for now, this should check
|
|
|
|
// the target triple and decide on the format to write (e.g. COFF on
|
|
|
|
// win32).
|
2005-07-11 05:17:48 +00:00
|
|
|
addX86ELFObjectWriterPass(PM, Out, *this);
|
2005-06-27 06:30:12 +00:00
|
|
|
break;
|
|
|
|
}
|
2003-12-20 10:20:19 +00:00
|
|
|
|
2004-02-15 00:03:15 +00:00
|
|
|
// Delete machine code for this function
|
|
|
|
PM.add(createMachineCodeDeleter());
|
|
|
|
|
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-12-20 01:22:19 +00:00
|
|
|
void X86JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
2004-05-23 21:23:35 +00:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
2003-04-23 16:24:55 +00:00
|
|
|
|
2003-10-05 19:15:47 +00:00
|
|
|
// FIXME: Implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
2004-02-25 19:30:19 +00:00
|
|
|
// FIXME: Implement the switch instruction in the instruction selector!
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
2004-07-02 05:46:41 +00:00
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2005-08-18 23:53:15 +00:00
|
|
|
// Install an instruction selector.
|
2005-12-17 01:22:13 +00:00
|
|
|
if (X86DAGIsel)
|
2005-11-16 01:54:32 +00:00
|
|
|
PM.add(createX86ISelDag(TM));
|
|
|
|
else
|
|
|
|
PM.add(createX86ISelPattern(TM));
|
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...
|
2004-03-04 19:16:23 +00:00
|
|
|
if (PrintMachineCode)
|
2004-02-04 21:41:01 +00:00
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2002-10-30 00:47:49 +00:00
|
|
|
|
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
|
|
|
|
2004-03-04 19:16:23 +00:00
|
|
|
if (PrintMachineCode)
|
2004-02-04 21:41:01 +00:00
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2003-01-13 00:51:23 +00:00
|
|
|
|
|
|
|
PM.add(createX86FloatingPointStackifierPass());
|
|
|
|
|
2004-03-04 19:16:23 +00:00
|
|
|
if (PrintMachineCode)
|
2004-02-04 21:41:01 +00:00
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2002-12-28 20:33:32 +00:00
|
|
|
|
|
|
|
// 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());
|
|
|
|
|
2004-03-04 19:16:23 +00:00
|
|
|
if (PrintMachineCode) // Print the register-allocated code
|
2003-12-20 01:22:19 +00:00
|
|
|
PM.add(createX86CodePrinterPass(std::cerr, TM));
|
2003-10-17 18:27:46 +00:00
|
|
|
}
|
2003-11-11 22:41:34 +00:00
|
|
|
|
2005-07-11 05:17:48 +00:00
|
|
|
bool X86TargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
|
|
|
|
MachineCodeEmitter &MCE) {
|
|
|
|
PM.add(createX86CodeEmitterPass(MCE));
|
|
|
|
// Delete machine code for this function
|
|
|
|
PM.add(createMachineCodeDeleter());
|
|
|
|
return false;
|
|
|
|
}
|