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 02:30:31 +08:00
|
|
|
#include "llvm/CodeGen/IntrinsicLowering.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 {
|
2005-09-03 03:53:54 +08:00
|
|
|
static cl::opt<bool> DisablePPCDAGDAG("disable-ppc-dag-isel", cl::Hidden,
|
|
|
|
cl::desc("Disable DAG-to-DAG isel for PPC"));
|
2005-08-18 03:33:30 +08:00
|
|
|
|
2004-08-11 15:40:04 +08:00
|
|
|
// Register the targets
|
2005-10-16 13:39:50 +08:00
|
|
|
RegisterTarget<PPCTargetMachine>
|
|
|
|
X("ppc32", " PowerPC");
|
2004-08-11 15:40:04 +08:00
|
|
|
}
|
|
|
|
|
2005-10-16 13:39:50 +08:00
|
|
|
unsigned PPCTargetMachine::getJITMatchQuality() {
|
2004-07-13 07:36:12 +08:00
|
|
|
#if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)
|
|
|
|
return 10;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-10-16 13:39:50 +08:00
|
|
|
unsigned PPCTargetMachine::getModuleMatchQuality(const Module &M) {
|
|
|
|
// 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
PPCTargetMachine::PPCTargetMachine(const Module &M, IntrinsicLowering *IL,
|
|
|
|
const std::string &FS)
|
|
|
|
: TargetMachine("PowerPC", IL, false, 4, 4, 4, 4, 4, 4, 2, 1, 1),
|
2005-11-02 04:06:59 +08:00
|
|
|
Subtarget(M, FS), FrameInfo(*this, false), JITInfo(*this),
|
|
|
|
InstrItins(Subtarget.getInstrItineraryData()) {
|
2005-10-16 13:39:50 +08:00
|
|
|
if (TargetDefault == PPCTarget) {
|
|
|
|
if (Subtarget.isAIX()) PPCTarget = TargetAIX;
|
|
|
|
if (Subtarget.isDarwin()) PPCTarget = TargetDarwin;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
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,
|
|
|
|
CodeGenFileType FileType) {
|
2005-06-25 10:48:37 +08:00
|
|
|
if (FileType != TargetMachine::AssemblyFile) return true;
|
|
|
|
|
2005-08-16 07:47:04 +08:00
|
|
|
// Run loop strength reduction before anything else.
|
|
|
|
PM.add(createLoopStrengthReducePass());
|
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.
|
|
|
|
PM.add(createCFGSimplificationPass());
|
2004-08-11 15:40:04 +08:00
|
|
|
|
|
|
|
// FIXME: Implement the switch instruction in the instruction selector!
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2005-08-18 03:33:30 +08:00
|
|
|
// Install an instruction selector.
|
2005-09-03 03:53:54 +08:00
|
|
|
if (!DisablePPCDAGDAG)
|
2005-10-18 08:28:58 +08:00
|
|
|
PM.add(createPPCISelDag(*this));
|
2005-08-19 07:53:15 +08:00
|
|
|
else
|
2005-10-18 08:28:58 +08:00
|
|
|
PM.add(createPPCISelPattern(*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).
|
|
|
|
switch (PPCTarget) {
|
|
|
|
case TargetAIX:
|
2004-09-04 13:00:00 +08:00
|
|
|
PM.add(createAIXAsmPrinter(Out, *this));
|
2005-08-05 04:49:48 +08:00
|
|
|
break;
|
2005-08-06 00:17:22 +08:00
|
|
|
case TargetDefault:
|
2005-08-05 04:49:48 +08:00
|
|
|
case TargetDarwin:
|
2004-09-04 13:00:00 +08:00
|
|
|
PM.add(createDarwinAsmPrinter(Out, *this));
|
2005-08-05 04:49:48 +08:00
|
|
|
break;
|
|
|
|
}
|
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) {
|
2005-07-22 04:44:43 +08:00
|
|
|
// The JIT does not support or need PIC.
|
|
|
|
PICEnabled = false;
|
2005-04-16 06:12:16 +08:00
|
|
|
|
2005-08-16 07:47:04 +08:00
|
|
|
// Run loop strength reduction before anything else.
|
|
|
|
PM.add(createLoopStrengthReducePass());
|
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
|
|
|
// FIXME: Implement the switch instruction in the instruction selector!
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2005-08-19 07:53:15 +08:00
|
|
|
// Install an instruction selector.
|
2005-09-30 01:31:03 +08:00
|
|
|
if (!DisablePPCDAGDAG)
|
2005-10-18 08:28:58 +08:00
|
|
|
PM.add(createPPCISelDag(TM));
|
2005-09-30 01:31:03 +08:00
|
|
|
else
|
2005-10-18 08:28:58 +08:00
|
|
|
PM.add(createPPCISelPattern(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
|
|
|
}
|
|
|
|
|