2004-06-21 16:55:25 +00:00
|
|
|
//===-- PowerPCTargetMachine.cpp - Define TargetMachine for PowerPC -------===//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +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:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 23:30:14 +00:00
|
|
|
//
|
2004-06-21 16:55:25 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "PowerPC.h"
|
2004-08-11 07:40:04 +00:00
|
|
|
#include "PowerPCTargetMachine.h"
|
2004-08-14 22:16:36 +00:00
|
|
|
#include "PowerPCFrameInfo.h"
|
2004-08-11 07:40:04 +00:00
|
|
|
#include "PPC32TargetMachine.h"
|
|
|
|
#include "PPC64TargetMachine.h"
|
|
|
|
#include "PPC32JITInfo.h"
|
|
|
|
#include "PPC64JITInfo.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
2005-08-04 20:49:48 +00:00
|
|
|
#include "llvm/Analysis/Verifier.h"
|
2004-06-21 18:30:31 +00:00
|
|
|
#include "llvm/CodeGen/IntrinsicLowering.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2004-07-11 04:17:58 +00:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-07-11 02:48:49 +00:00
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2004-06-21 16:55:25 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2004-09-01 22:55:40 +00:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2004-07-11 02:48:49 +00:00
|
|
|
#include <iostream>
|
2004-06-21 16:55:25 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
2005-07-21 20:44:43 +00:00
|
|
|
bool llvm::GPOPT = false;
|
2005-08-04 20:49:48 +00:00
|
|
|
PPCTargetEnum llvm::PPCTarget = TargetDefault;
|
2005-07-21 20:44:43 +00:00
|
|
|
|
2004-08-11 23:47:08 +00:00
|
|
|
namespace llvm {
|
2005-08-04 20:49:48 +00:00
|
|
|
cl::opt<PPCTargetEnum, true>
|
|
|
|
PPCTargetArg(
|
|
|
|
cl::desc("Force generation of code for a specific PPC target:"),
|
|
|
|
cl::values(
|
|
|
|
clEnumValN(TargetAIX, "aix", " Enable AIX codegen"),
|
|
|
|
clEnumValN(TargetDarwin,"darwin"," Enable Darwin codegen"),
|
|
|
|
clEnumValEnd),
|
|
|
|
cl::location(PPCTarget), cl::init(TargetDefault));
|
2005-04-21 23:30:14 +00:00
|
|
|
cl::opt<bool> EnablePPCLSR("enable-lsr-for-ppc",
|
|
|
|
cl::desc("Enable LSR for PPC (beta)"),
|
2005-03-02 06:19:22 +00:00
|
|
|
cl::Hidden);
|
2005-07-21 20:44:43 +00:00
|
|
|
cl::opt<bool, true> EnableGPOPT("enable-gpopt", cl::Hidden,
|
|
|
|
cl::location(GPOPT),
|
|
|
|
cl::desc("Enable optimizations for GP cpus"));
|
2004-08-11 23:47:08 +00:00
|
|
|
}
|
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
namespace {
|
2004-08-17 05:06:47 +00:00
|
|
|
const std::string PPC32ID = "PowerPC/32bit";
|
|
|
|
const std::string PPC64ID = "PowerPC/64bit";
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
// Register the targets
|
2005-04-21 23:30:14 +00:00
|
|
|
RegisterTarget<PPC32TargetMachine>
|
2004-10-10 16:26:13 +00:00
|
|
|
X("ppc32", " PowerPC 32-bit");
|
2004-08-20 18:09:18 +00:00
|
|
|
|
|
|
|
#if 0
|
2005-04-21 23:30:14 +00:00
|
|
|
RegisterTarget<PPC64TargetMachine>
|
2004-08-19 21:36:14 +00:00
|
|
|
Y("ppc64", " PowerPC 64-bit (unimplemented)");
|
2004-08-20 18:09:18 +00:00
|
|
|
#endif
|
2004-08-11 07:40:04 +00:00
|
|
|
}
|
|
|
|
|
2004-08-11 00:11:25 +00:00
|
|
|
PowerPCTargetMachine::PowerPCTargetMachine(const std::string &name,
|
|
|
|
IntrinsicLowering *IL,
|
2005-08-04 07:12:09 +00:00
|
|
|
const Module &M,
|
2004-08-11 00:11:25 +00:00
|
|
|
const TargetData &TD,
|
2004-11-23 05:56:40 +00:00
|
|
|
const PowerPCFrameInfo &TFI)
|
2005-08-04 20:49:48 +00:00
|
|
|
: TargetMachine(name, IL, TD), FrameInfo(TFI), Subtarget(M) {
|
|
|
|
if (TargetDefault == PPCTarget) {
|
|
|
|
if (Subtarget.IsAIX()) PPCTarget = TargetAIX;
|
|
|
|
if (Subtarget.IsDarwin()) PPCTarget = TargetDarwin;
|
|
|
|
}
|
|
|
|
}
|
2004-07-11 02:48:49 +00:00
|
|
|
|
2004-11-23 05:56:40 +00:00
|
|
|
unsigned PPC32TargetMachine::getJITMatchQuality() {
|
2004-07-12 23:36:12 +00:00
|
|
|
#if defined(__POWERPC__) || defined (__ppc__) || defined(_POWER)
|
|
|
|
return 10;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-06-25 02:48:37 +00:00
|
|
|
/// addPassesToEmitFile - Add passes to the specified pass manager to implement
|
|
|
|
/// a static compiler for this target.
|
2004-08-11 07:40:04 +00:00
|
|
|
///
|
2005-06-25 02:48:37 +00:00
|
|
|
bool PowerPCTargetMachine::addPassesToEmitFile(PassManager &PM,
|
|
|
|
std::ostream &Out,
|
|
|
|
CodeGenFileType FileType) {
|
|
|
|
if (FileType != TargetMachine::AssemblyFile) return true;
|
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
bool LP64 = (0 != dynamic_cast<PPC64TargetMachine *>(this));
|
2005-03-02 06:19:22 +00:00
|
|
|
|
2005-03-02 21:56:00 +00:00
|
|
|
if (EnablePPCLSR) {
|
2005-03-02 06:19:22 +00:00
|
|
|
PM.add(createLoopStrengthReducePass());
|
2005-08-04 20:49:48 +00:00
|
|
|
PM.add(createVerifierPass());
|
2005-03-02 21:56:00 +00:00
|
|
|
PM.add(createCFGSimplificationPass());
|
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
|
|
|
|
|
|
|
// FIXME: Implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
|
|
|
// FIXME: Implement the switch instruction in the instruction selector!
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
|
|
|
PM.add(createLowerConstantExpressionsPass());
|
|
|
|
|
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2005-04-15 22:12:16 +00:00
|
|
|
// Default to pattern ISel
|
2004-08-11 07:40:04 +00:00
|
|
|
if (LP64)
|
2005-04-05 08:51:15 +00:00
|
|
|
PM.add(createPPC64ISelPattern(*this));
|
2005-04-15 22:12:16 +00:00
|
|
|
else if (PatternISelTriState == 0)
|
2004-08-11 07:40:04 +00:00
|
|
|
PM.add(createPPC32ISelSimple(*this));
|
2005-04-15 22:12:16 +00:00
|
|
|
else
|
|
|
|
PM.add(createPPC32ISelPattern(*this));
|
2004-08-11 07:40:04 +00:00
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
2004-08-14 22:16:36 +00:00
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-08-14 22:16:36 +00:00
|
|
|
// Must run branch selection immediately preceding the asm printer
|
2004-08-11 07:40:04 +00:00
|
|
|
PM.add(createPPCBranchSelectionPass());
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2005-08-04 20:49:48 +00: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 05:00:00 +00:00
|
|
|
PM.add(createAIXAsmPrinter(Out, *this));
|
2005-08-04 20:49:48 +00:00
|
|
|
break;
|
2005-08-05 16:17:22 +00:00
|
|
|
case TargetDefault:
|
2005-08-04 20:49:48 +00:00
|
|
|
case TargetDarwin:
|
2004-09-04 05:00:00 +00:00
|
|
|
PM.add(createDarwinAsmPrinter(Out, *this));
|
2005-08-04 20:49:48 +00:00
|
|
|
break;
|
|
|
|
}
|
2005-04-21 23:30:14 +00:00
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
PM.add(createMachineCodeDeleter());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2004-08-11 00:11:25 +00:00
|
|
|
void PowerPCJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
2005-07-21 20:44:43 +00:00
|
|
|
// The JIT does not support or need PIC.
|
|
|
|
PICEnabled = false;
|
2005-04-15 22:12:16 +00:00
|
|
|
|
2005-07-21 20:44:43 +00:00
|
|
|
bool LP64 = (0 != dynamic_cast<PPC64TargetMachine *>(&TM));
|
2005-07-27 06:12:32 +00:00
|
|
|
|
2005-03-02 21:56:00 +00:00
|
|
|
if (EnablePPCLSR) {
|
2005-03-02 06:19:22 +00:00
|
|
|
PM.add(createLoopStrengthReducePass());
|
2005-03-02 21:56:00 +00:00
|
|
|
PM.add(createCFGSimplificationPass());
|
|
|
|
}
|
2005-03-02 06:19:22 +00:00
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
|
|
|
|
|
|
|
// FIXME: Implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
|
|
|
// FIXME: Implement the switch instruction in the instruction selector!
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
|
|
|
PM.add(createLowerConstantExpressionsPass());
|
|
|
|
|
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2005-04-15 22:12:16 +00:00
|
|
|
// Default to pattern ISel
|
|
|
|
if (LP64)
|
|
|
|
PM.add(createPPC64ISelPattern(TM));
|
|
|
|
else if (PatternISelTriState == 0)
|
|
|
|
PM.add(createPPC32ISelSimple(TM));
|
|
|
|
else
|
|
|
|
PM.add(createPPC32ISelPattern(TM));
|
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2004-11-23 05:56:40 +00:00
|
|
|
|
|
|
|
// Must run branch selection immediately preceding the asm printer
|
|
|
|
PM.add(createPPCBranchSelectionPass());
|
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2004-07-12 23:36:12 +00:00
|
|
|
}
|
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
/// PowerPCTargetMachine ctor - Create an ILP32 architecture model
|
|
|
|
///
|
2004-08-17 05:06:47 +00:00
|
|
|
PPC32TargetMachine::PPC32TargetMachine(const Module &M, IntrinsicLowering *IL)
|
2005-08-04 07:12:09 +00:00
|
|
|
: PowerPCTargetMachine(PPC32ID, IL, M,
|
2005-07-21 20:44:43 +00:00
|
|
|
TargetData(PPC32ID,false,4,4,4,4,4,4,2,1,1),
|
2004-11-23 05:56:40 +00:00
|
|
|
PowerPCFrameInfo(*this, false)), JITInfo(*this) {}
|
2004-08-11 07:40:04 +00:00
|
|
|
|
|
|
|
/// PPC64TargetMachine ctor - Create a LP64 architecture model
|
|
|
|
///
|
|
|
|
PPC64TargetMachine::PPC64TargetMachine(const Module &M, IntrinsicLowering *IL)
|
2005-08-04 07:12:09 +00:00
|
|
|
: PowerPCTargetMachine(PPC64ID, IL, M,
|
2005-07-21 19:17:18 +00:00
|
|
|
TargetData(PPC64ID,false,8,4,4,4,4,4,2,1,1),
|
2004-11-23 05:56:40 +00:00
|
|
|
PowerPCFrameInfo(*this, true)) {}
|
2004-08-11 07:40:04 +00:00
|
|
|
|
|
|
|
unsigned PPC32TargetMachine::getModuleMatchQuality(const Module &M) {
|
2004-12-12 17:40:28 +00:00
|
|
|
// We strongly match "powerpc-*".
|
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 8 && std::string(TT.begin(), TT.begin()+8) == "powerpc-")
|
|
|
|
return 20;
|
|
|
|
|
2004-08-11 07:40:04 +00:00
|
|
|
if (M.getEndianness() == Module::BigEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer32)
|
2004-12-12 17:40:28 +00:00
|
|
|
return 10; // Weak match
|
2004-08-11 07:40:04 +00:00
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
|
|
|
return getJITMatchQuality()/2;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned PPC64TargetMachine::getModuleMatchQuality(const Module &M) {
|
|
|
|
if (M.getEndianness() == Module::BigEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer64)
|
|
|
|
return 10; // Direct match
|
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
|
|
|
return getJITMatchQuality()/2;
|
|
|
|
}
|