2005-01-24 18:45:41 +00:00
|
|
|
//===-- AlphaTargetMachine.cpp - Define TargetMachine for Alpha -----------===//
|
2005-04-21 23:13:11 +00:00
|
|
|
//
|
2005-01-22 23:41:55 +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:13:11 +00:00
|
|
|
//
|
2005-01-22 23:41:55 +00:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-21 23:13:11 +00:00
|
|
|
//
|
2005-01-22 23:41:55 +00:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "Alpha.h"
|
2005-07-22 20:52:16 +00:00
|
|
|
#include "AlphaJITInfo.h"
|
2005-01-22 23:41:55 +00:00
|
|
|
#include "AlphaTargetMachine.h"
|
2005-02-01 20:35:11 +00:00
|
|
|
#include "llvm/Module.h"
|
2005-01-22 23:41:55 +00:00
|
|
|
#include "llvm/CodeGen/Passes.h"
|
|
|
|
#include "llvm/Target/TargetOptions.h"
|
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2005-09-29 22:54:56 +00:00
|
|
|
#include "llvm/Support/Debug.h"
|
2005-01-22 23:41:55 +00:00
|
|
|
#include <iostream>
|
2005-02-01 20:35:11 +00:00
|
|
|
|
2005-01-22 23:41:55 +00:00
|
|
|
using namespace llvm;
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
// Register the targets
|
|
|
|
RegisterTarget<AlphaTargetMachine> X("alpha", " Alpha (incomplete)");
|
|
|
|
}
|
|
|
|
|
2005-02-01 20:35:11 +00:00
|
|
|
unsigned AlphaTargetMachine::getModuleMatchQuality(const Module &M) {
|
|
|
|
// We strongly match "alpha*".
|
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 5 && TT[0] == 'a' && TT[1] == 'l' && TT[2] == 'p' &&
|
|
|
|
TT[3] == 'h' && TT[4] == 'a')
|
|
|
|
return 20;
|
|
|
|
|
|
|
|
if (M.getEndianness() == Module::LittleEndian &&
|
|
|
|
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
|
|
|
|
|
2005-10-30 16:44:01 +00:00
|
|
|
return getJITMatchQuality()/2;
|
2005-02-01 20:35:11 +00:00
|
|
|
}
|
|
|
|
|
2005-07-22 20:52:16 +00:00
|
|
|
unsigned AlphaTargetMachine::getJITMatchQuality() {
|
2005-07-22 21:00:30 +00:00
|
|
|
#ifdef __alpha
|
2005-07-22 20:52:16 +00:00
|
|
|
return 10;
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
2005-09-01 21:38:21 +00:00
|
|
|
AlphaTargetMachine::AlphaTargetMachine(const Module &M, IntrinsicLowering *IL,
|
|
|
|
const std::string &FS)
|
2005-04-21 23:13:11 +00:00
|
|
|
: TargetMachine("alpha", IL, true),
|
2005-08-03 22:33:21 +00:00
|
|
|
FrameInfo(TargetFrameInfo::StackGrowsDown, 16, 0),
|
2005-09-29 22:54:56 +00:00
|
|
|
JITInfo(*this),
|
|
|
|
Subtarget(M, FS)
|
|
|
|
{
|
|
|
|
DEBUG(std::cerr << "FS is " << FS << "\n");
|
|
|
|
}
|
2005-01-22 23:41:55 +00:00
|
|
|
|
2005-06-25 02:48:37 +00:00
|
|
|
/// addPassesToEmitFile - Add passes to the specified pass manager to implement
|
|
|
|
/// a static compiler for this target.
|
2005-01-22 23:41:55 +00:00
|
|
|
///
|
2005-06-25 02:48:37 +00:00
|
|
|
bool AlphaTargetMachine::addPassesToEmitFile(PassManager &PM,
|
|
|
|
std::ostream &Out,
|
2005-11-08 02:11:51 +00:00
|
|
|
CodeGenFileType FileType,
|
|
|
|
bool Fast) {
|
2005-06-25 02:48:37 +00:00
|
|
|
if (FileType != TargetMachine::AssemblyFile) return true;
|
2005-04-21 23:13:11 +00:00
|
|
|
|
2005-11-12 19:21:08 +00:00
|
|
|
PM.add(createLoopStrengthReducePass());
|
2005-11-18 13:57:03 +00:00
|
|
|
PM.add(createCFGSimplificationPass());
|
2005-03-02 17:21:38 +00:00
|
|
|
|
2005-11-18 13:57:03 +00:00
|
|
|
|
2005-01-22 23:41:55 +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());
|
|
|
|
|
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2006-01-23 21:56:07 +00:00
|
|
|
PM.add(createAlphaISelDag(*this));
|
2005-01-22 23:41:55 +00:00
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2005-04-21 23:13:11 +00:00
|
|
|
|
2005-01-22 23:41:55 +00:00
|
|
|
// Must run branch selection immediately preceding the asm printer
|
|
|
|
//PM.add(createAlphaBranchSelectionPass());
|
2005-04-21 23:13:11 +00:00
|
|
|
|
2005-01-22 23:41:55 +00:00
|
|
|
PM.add(createAlphaCodePrinterPass(Out, *this));
|
2005-04-21 23:13:11 +00:00
|
|
|
|
2005-01-22 23:41:55 +00:00
|
|
|
PM.add(createMachineCodeDeleter());
|
|
|
|
return false;
|
|
|
|
}
|
2005-07-22 20:52:16 +00:00
|
|
|
|
|
|
|
void AlphaJITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
|
|
|
|
2005-11-13 01:45:23 +00:00
|
|
|
PM.add(createLoopStrengthReducePass());
|
|
|
|
PM.add(createCFGSimplificationPass());
|
2005-07-22 20:52:16 +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());
|
|
|
|
|
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2006-01-23 21:56:07 +00:00
|
|
|
PM.add(createAlphaISelDag(TM));
|
2005-07-22 20:52:16 +00:00
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
|
|
|
|
|
|
|
// Must run branch selection immediately preceding the asm printer
|
|
|
|
//PM.add(createAlphaBranchSelectionPass());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AlphaTargetMachine::addPassesToEmitMachineCode(FunctionPassManager &PM,
|
|
|
|
MachineCodeEmitter &MCE) {
|
|
|
|
PM.add(createAlphaCodeEmitterPass(MCE));
|
|
|
|
// Delete machine code for this function
|
|
|
|
PM.add(createMachineCodeDeleter());
|
|
|
|
return false;
|
|
|
|
}
|