2004-02-26 03:28:19 +08:00
|
|
|
//===-- SparcV8TargetMachine.cpp - Define TargetMachine for SparcV8 -------===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-02-26 03:28:19 +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-02-26 03:28:19 +08:00
|
|
|
//===----------------------------------------------------------------------===//
|
2005-04-22 07:30:14 +08:00
|
|
|
//
|
2004-02-26 03:28:19 +08:00
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SparcV8TargetMachine.h"
|
|
|
|
#include "SparcV8.h"
|
2004-12-11 13:19:04 +08:00
|
|
|
#include "llvm/Assembly/PrintModulePass.h"
|
2004-02-26 03:28:19 +08:00
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2004-07-11 12:17:10 +08:00
|
|
|
#include "llvm/Target/TargetOptions.h"
|
2004-07-11 10:48:49 +08:00
|
|
|
#include "llvm/Target/TargetMachineRegistry.h"
|
2004-06-16 04:37:12 +08:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2005-12-17 15:47:01 +08:00
|
|
|
#include "llvm/Support/CommandLine.h"
|
2004-07-05 01:19:21 +08:00
|
|
|
#include <iostream>
|
2004-02-29 03:52:49 +08:00
|
|
|
using namespace llvm;
|
2004-02-26 03:28:19 +08:00
|
|
|
|
2004-07-11 10:48:49 +08:00
|
|
|
namespace {
|
|
|
|
// Register the target.
|
2004-07-11 11:27:42 +08:00
|
|
|
RegisterTarget<SparcV8TargetMachine> X("sparcv8"," SPARC V8 (experimental)");
|
2004-07-11 10:48:49 +08:00
|
|
|
}
|
|
|
|
|
2004-02-26 03:28:19 +08:00
|
|
|
/// SparcV8TargetMachine ctor - Create an ILP32 architecture model
|
|
|
|
///
|
|
|
|
SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
|
2005-09-02 05:38:21 +08:00
|
|
|
IntrinsicLowering *IL,
|
|
|
|
const std::string &FS)
|
2004-12-11 13:19:04 +08:00
|
|
|
: TargetMachine("SparcV8", IL, false, 4, 4),
|
2006-01-26 14:51:21 +08:00
|
|
|
Subtarget(M, FS),
|
2005-12-16 14:06:07 +08:00
|
|
|
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0) {
|
2004-10-09 13:57:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
unsigned SparcV8TargetMachine::getModuleMatchQuality(const Module &M) {
|
2004-12-13 01:40:28 +08:00
|
|
|
std::string TT = M.getTargetTriple();
|
|
|
|
if (TT.size() >= 6 && std::string(TT.begin(), TT.begin()+6) == "sparc-")
|
|
|
|
return 20;
|
|
|
|
|
2004-10-09 13:57:01 +08:00
|
|
|
if (M.getEndianness() == Module::BigEndian &&
|
|
|
|
M.getPointerSize() == Module::Pointer32)
|
|
|
|
#ifdef __sparc__
|
|
|
|
return 20; // BE/32 ==> Prefer sparcv8 on sparc
|
|
|
|
#else
|
|
|
|
return 5; // BE/32 ==> Prefer ppc elsewhere
|
|
|
|
#endif
|
|
|
|
else if (M.getEndianness() != Module::AnyEndianness ||
|
|
|
|
M.getPointerSize() != Module::AnyPointerSize)
|
|
|
|
return 0; // Match for some other target
|
|
|
|
|
2005-12-16 14:06:07 +08:00
|
|
|
return 0;
|
2004-10-09 13:57:01 +08:00
|
|
|
}
|
|
|
|
|
2005-06-25 10:48:37 +08:00
|
|
|
/// addPassesToEmitFile - Add passes to the specified pass manager
|
2004-02-26 03:28:19 +08:00
|
|
|
/// to implement a static compiler for this target.
|
|
|
|
///
|
2005-06-25 10:48:37 +08:00
|
|
|
bool SparcV8TargetMachine::addPassesToEmitFile(PassManager &PM,
|
|
|
|
std::ostream &Out,
|
2005-11-08 10:11:51 +08:00
|
|
|
CodeGenFileType FileType,
|
|
|
|
bool Fast) {
|
2005-06-25 10:48:37 +08:00
|
|
|
if (FileType != TargetMachine::AssemblyFile) return true;
|
|
|
|
|
2004-06-16 04:37:12 +08:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
|
|
|
|
|
|
|
// FIXME: implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
2005-12-20 16:00:11 +08:00
|
|
|
// FIXME: implement the switch instruction in the instruction selector.
|
|
|
|
PM.add(createLowerSwitchPass());
|
2004-12-11 13:19:04 +08:00
|
|
|
|
|
|
|
// Print LLVM code input to instruction selector:
|
|
|
|
if (PrintMachineCode)
|
2004-12-12 06:17:07 +08:00
|
|
|
PM.add(new PrintFunctionPass());
|
2005-04-22 07:30:14 +08:00
|
|
|
|
2006-01-23 15:20:15 +08:00
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
|
|
|
PM.add(createSparcV8ISelDag(*this));
|
2004-02-29 08:27:00 +08:00
|
|
|
|
2004-03-05 03:22:16 +08:00
|
|
|
// Print machine instructions as they were initially generated.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2004-02-29 08:27:00 +08:00
|
|
|
|
2004-02-26 03:28:19 +08:00
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2004-02-29 08:27:00 +08:00
|
|
|
|
2004-03-05 03:22:16 +08:00
|
|
|
// Print machine instructions after register allocation and prolog/epilog
|
|
|
|
// insertion.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2004-02-29 08:27:00 +08:00
|
|
|
|
2004-09-29 11:26:27 +08:00
|
|
|
PM.add(createSparcV8FPMoverPass(*this));
|
2005-12-20 16:00:11 +08:00
|
|
|
|
2004-04-07 07:21:24 +08:00
|
|
|
PM.add(createSparcV8DelaySlotFillerPass(*this));
|
|
|
|
|
|
|
|
// Print machine instructions after filling delay slots.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
2004-03-05 03:22:16 +08:00
|
|
|
// Output assembly language.
|
2004-03-04 14:00:41 +08:00
|
|
|
PM.add(createSparcV8CodePrinterPass(Out, *this));
|
|
|
|
|
2004-03-05 03:22:16 +08:00
|
|
|
// Delete the MachineInstrs we generated, since they're no longer needed.
|
2004-02-26 03:28:19 +08:00
|
|
|
PM.add(createMachineCodeDeleter());
|
2004-02-29 04:21:45 +08:00
|
|
|
return false;
|
2004-02-26 03:28:19 +08:00
|
|
|
}
|
|
|
|
|