2005-10-16 13:39:50 +08:00
|
|
|
//===-- PPCTargetMachine.cpp - Define TargetMachine for PowerPC -----------===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +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:30:14 +08:00
|
|
|
//
|
2004-06-22 00:55:25 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2005-08-16 07:47:04 +08:00
|
|
|
// Top-level implementation for the PowerPC target.
|
2004-06-22 00:55:25 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2005-10-15 07:51:18 +08:00
|
|
|
#include "PPC.h"
|
|
|
|
#include "PPCFrameInfo.h"
|
2005-10-15 07:59:06 +08:00
|
|
|
#include "PPCTargetMachine.h"
|
2005-10-15 07:53:41 +08:00
|
|
|
#include "PPCJITInfo.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2005-08-05 04:49:48 +08:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2004-07-11 12:17:58 +08:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-07-11 10:48:49 +08:00
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2004-06-22 00:55:25 +08:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2004-09-02 06:55:40 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2004-07-11 10:48:49 +08:00
|
|
|
#include <iostream>
|
2004-06-22 00:55:25 +08:00
|
|
|
using namespace llvm;
|
|
|
|
|
2004-08-11 15:40:04 +08:00
|
|
|
namespace {
|
|
|
|
// Register the targets
|
2006-06-16 09:37:27 +08:00
|
|
|
RegisterTarget<PPC32TargetMachine>
|
|
|
|
X("ppc32", " PowerPC 32");
|
|
|
|
RegisterTarget<PPC64TargetMachine>
|
|
|
|
Y("ppc64", " PowerPC 64");
|
2004-08-11 15:40:04 +08:00
|
|
|
}
|
|
|
|
|
2006-06-16 09:37:27 +08:00
|
|
|
unsigned PPC32TargetMachine::getJITMatchQuality() {
|
2004-07-13 07:36:12 +08:00
|
|
|
#if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)
|
2006-06-16 09:37:27 +08:00
|
|
|
if (sizeof(void*) == 4)
|
|
|
|
return 10;
|
2004-07-13 07:36:12 +08:00
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
2006-06-16 09:37:27 +08:00
|
|
|
unsigned PPC64TargetMachine::getJITMatchQuality() {
|
|
|
|
#if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)
|
|
|
|
if (sizeof(void*) == 8)
|
|
|
|
return 10 * 0/*FIXME: not PPC64-JIT support yet! */;
|
|
|
|
#endif
|
|
|
|
return 0;
|
|
|
|
}
|
2004-07-13 07:36:12 +08:00
|
|
|
|
2006-06-16 09:37:27 +08:00
|
|
|
unsigned PPC32TargetMachine::getModuleMatchQuality(const Module &M) {
|
2005-10-16 13:39:50 +08:00
|
|
|
// We strongly match "powerpc-*".
|
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 8 && std::string(TT.begin(), TT.begin()+8) == "powerpc-")
|
|
|
|
return 20;
|
|
|
|
|
|
|
|
if (M.getEndianness() == Module::BigEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer32)
|
|
|
|
return 10; // Weak match
|
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
|
|
|
return getJITMatchQuality()/2;
|
|
|
|
}
|
|
|
|
|
2006-06-16 09:37:27 +08:00
|
|
|
unsigned PPC64TargetMachine::getModuleMatchQuality(const Module &M) {
|
|
|
|
// We strongly match "powerpc64-*".
|
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 10 && std::string(TT.begin(), TT.begin()+10) == "powerpc64-")
|
|
|
|
return 20;
|
|
|
|
|
|
|
|
if (M.getEndianness() == Module::BigEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer64)
|
|
|
|
return 10; // Weak match
|
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
|
|
|
return getJITMatchQuality()/2;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PPCTargetMachine::PPCTargetMachine(const Module &M, const std::string &FS,
|
|
|
|
bool is64Bit)
|
|
|
|
: TargetMachine("PowerPC"), Subtarget(M, FS, is64Bit),
|
2006-06-17 02:22:52 +08:00
|
|
|
DataLayout(Subtarget.getTargetDataString()),
|
2006-06-16 09:37:27 +08:00
|
|
|
FrameInfo(*this, false), JITInfo(*this), TLInfo(*this),
|
|
|
|
InstrItins(Subtarget.getInstrItineraryData()) {
|
|
|
|
|
2006-02-23 04:19:42 +08:00
|
|
|
if (getRelocationModel() == Reloc::Default)
|
|
|
|
if (Subtarget.isDarwin())
|
|
|
|
setRelocationModel(Reloc::DynamicNoPIC);
|
|
|
|
else
|
|
|
|
setRelocationModel(Reloc::PIC);
|
2005-10-16 13:39:50 +08:00
|
|
|
}
|
|
|
|
|
2006-06-16 09:37:27 +08:00
|
|
|
PPC32TargetMachine::PPC32TargetMachine(const Module &M, const std::string &FS)
|
|
|
|
: PPCTargetMachine(M, FS, false) {
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
PPC64TargetMachine::PPC64TargetMachine(const Module &M, const std::string &FS)
|
|
|
|
: PPCTargetMachine(M, FS, true) {
|
|
|
|
}
|
|
|
|
|
2005-06-25 10:48:37 +08:00
|
|
|
/// addPassesToEmitFile - Add passes to the specified pass manager to implement
|
|
|
|
/// a static compiler for this target.
|
2004-08-11 15:40:04 +08:00
|
|
|
///
|
2005-10-16 13:39:50 +08:00
|
|
|
bool PPCTargetMachine::addPassesToEmitFile(PassManager &PM,
|
|
|
|
std::ostream &Out,
|
2005-11-08 10:12:47 +08:00
|
|
|
CodeGenFileType FileType,
|
|
|
|
bool Fast) {
|
2005-06-25 10:48:37 +08:00
|
|
|
if (FileType != TargetMachine::AssemblyFile) return true;
|
2006-01-04 21:52:30 +08:00
|
|
|
|
2005-08-16 07:47:04 +08:00
|
|
|
// Run loop strength reduction before anything else.
|
2006-03-17 05:47:42 +08:00
|
|
|
if (!Fast) PM.add(createLoopStrengthReducePass(&TLInfo));
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2004-08-11 15:40:04 +08:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
|
|
|
|
|
|
|
// FIXME: Implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
2005-09-27 08:14:41 +08:00
|
|
|
|
|
|
|
// Clean up after other passes, e.g. merging critical edges.
|
2005-11-08 10:12:47 +08:00
|
|
|
if (!Fast) PM.add(createCFGSimplificationPass());
|
2004-08-11 15:40:04 +08:00
|
|
|
|
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2005-08-18 03:33:30 +08:00
|
|
|
// Install an instruction selector.
|
2006-01-12 09:46:07 +08:00
|
|
|
PM.add(createPPCISelDag(*this));
|
2004-08-11 15:40:04 +08:00
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
2004-08-15 06:16:36 +08:00
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2004-08-15 06:16:36 +08:00
|
|
|
// Must run branch selection immediately preceding the asm printer
|
2004-08-11 15:40:04 +08:00
|
|
|
PM.add(createPPCBranchSelectionPass());
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2005-08-05 04:49:48 +08:00
|
|
|
// Decide which asm printer to use. If the user has not specified one on
|
|
|
|
// the command line, choose whichever one matches the default (current host).
|
2006-06-17 02:50:48 +08:00
|
|
|
if (Subtarget.isAIX())
|
2004-09-04 13:00:00 +08:00
|
|
|
PM.add(createAIXAsmPrinter(Out, *this));
|
2006-06-17 02:50:48 +08:00
|
|
|
else
|
2004-09-04 13:00:00 +08:00
|
|
|
PM.add(createDarwinAsmPrinter(Out, *this));
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2004-08-11 15:40:04 +08:00
|
|
|
PM.add(createMachineCodeDeleter());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2005-10-16 13:39:50 +08:00
|
|
|
void PPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
2006-04-22 06:11:27 +08:00
|
|
|
// The JIT should use the static relocation model.
|
2006-04-22 06:04:15 +08:00
|
|
|
TM.setRelocationModel(Reloc::Static);
|
2005-04-16 06:12:16 +08:00
|
|
|
|
2005-08-16 07:47:04 +08:00
|
|
|
// Run loop strength reduction before anything else.
|
2006-03-17 05:47:42 +08:00
|
|
|
PM.add(createLoopStrengthReducePass(TM.getTargetLowering()));
|
2005-03-02 14:19:22 +08:00
|
|
|
|
2004-08-11 15:40:04 +08:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
|
|
|
|
|
|
|
// FIXME: Implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
2005-09-27 08:14:41 +08:00
|
|
|
// Clean up after other passes, e.g. merging critical edges.
|
|
|
|
PM.add(createCFGSimplificationPass());
|
|
|
|
|
2004-08-11 15:40:04 +08:00
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2005-08-19 07:53:15 +08:00
|
|
|
// Install an instruction selector.
|
2006-01-12 09:46:07 +08:00
|
|
|
PM.add(createPPCISelDag(TM));
|
2005-04-16 06:12:16 +08:00
|
|
|
|
2004-08-11 15:40:04 +08:00
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2004-11-23 13:56:40 +08:00
|
|
|
|
|
|
|
// Must run branch selection immediately preceding the asm printer
|
|
|
|
PM.add(createPPCBranchSelectionPass());
|
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2004-07-13 07:36:12 +08:00
|
|
|
}
|
|
|
|
|