2004-02-25 19:28:19 +00:00
|
|
|
//===-- SparcV8TargetMachine.cpp - Define TargetMachine for SparcV8 -------===//
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
#include "SparcV8TargetMachine.h"
|
|
|
|
#include "SparcV8.h"
|
|
|
|
#include "llvm/Module.h"
|
|
|
|
#include "llvm/PassManager.h"
|
|
|
|
#include "llvm/CodeGen/MachineFunction.h"
|
|
|
|
#include "llvm/CodeGen/Passes.h"
|
2004-06-21 21:54:40 +00:00
|
|
|
#include "llvm/Target/TargetMachineImpls.h"
|
2004-06-15 20:37:12 +00:00
|
|
|
#include "llvm/Transforms/Scalar.h"
|
2004-07-04 17:19:21 +00:00
|
|
|
#include <iostream>
|
2004-02-28 19:52:49 +00:00
|
|
|
using namespace llvm;
|
2004-02-25 19:28:19 +00:00
|
|
|
|
|
|
|
// allocateSparcV8TargetMachine - Allocate and return a subclass of
|
|
|
|
// TargetMachine that implements the SparcV8 backend.
|
|
|
|
//
|
2004-02-28 19:52:49 +00:00
|
|
|
TargetMachine *llvm::allocateSparcV8TargetMachine(const Module &M,
|
|
|
|
IntrinsicLowering *IL) {
|
2004-02-25 19:28:19 +00:00
|
|
|
return new SparcV8TargetMachine(M, IL);
|
|
|
|
}
|
|
|
|
|
|
|
|
/// SparcV8TargetMachine ctor - Create an ILP32 architecture model
|
|
|
|
///
|
|
|
|
SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
|
|
|
|
IntrinsicLowering *IL)
|
|
|
|
: TargetMachine("SparcV8", IL, true, 4, 4, 4, 4, 4),
|
2004-04-13 18:28:37 +00:00
|
|
|
FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
|
2004-02-25 19:28:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// addPassesToEmitAssembly - Add passes to the specified pass manager
|
|
|
|
/// to implement a static compiler for this target.
|
|
|
|
///
|
|
|
|
bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM,
|
|
|
|
std::ostream &Out) {
|
2004-06-15 20:37:12 +00:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
|
|
|
|
|
|
|
// Replace malloc and free instructions with library calls.
|
|
|
|
PM.add(createLowerAllocationsPass());
|
2004-06-18 08:46:15 +00:00
|
|
|
|
|
|
|
// FIXME: implement the select instruction in the instruction selector.
|
|
|
|
PM.add(createLowerSelectPass());
|
2004-06-15 20:37:12 +00:00
|
|
|
|
|
|
|
// FIXME: implement the switch instruction in the instruction selector.
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
|
|
|
// FIXME: implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
|
|
|
|
2004-07-02 05:49:11 +00:00
|
|
|
PM.add(createLowerConstantExpressionsPass());
|
|
|
|
|
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2004-02-29 00:27:00 +00:00
|
|
|
PM.add(createSparcV8SimpleInstructionSelector(*this));
|
|
|
|
|
2004-03-04 19:22:16 +00:00
|
|
|
// Print machine instructions as they were initially generated.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2004-02-29 00:27:00 +00:00
|
|
|
|
2004-02-25 19:28:19 +00:00
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2004-02-29 00:27:00 +00:00
|
|
|
|
2004-03-04 19:22:16 +00:00
|
|
|
// Print machine instructions after register allocation and prolog/epilog
|
|
|
|
// insertion.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2004-02-29 00:27:00 +00:00
|
|
|
|
2004-04-06 23:21:24 +00:00
|
|
|
PM.add(createSparcV8DelaySlotFillerPass(*this));
|
|
|
|
|
|
|
|
// Print machine instructions after filling delay slots.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
2004-03-04 19:22:16 +00:00
|
|
|
// Output assembly language.
|
2004-03-04 06:00:41 +00:00
|
|
|
PM.add(createSparcV8CodePrinterPass(Out, *this));
|
|
|
|
|
2004-03-04 19:22:16 +00:00
|
|
|
// Delete the MachineInstrs we generated, since they're no longer needed.
|
2004-02-25 19:28:19 +00:00
|
|
|
PM.add(createMachineCodeDeleter());
|
2004-02-28 20:21:45 +00:00
|
|
|
return false;
|
2004-02-25 19:28:19 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// addPassesToJITCompile - Add passes to the specified pass manager to
|
|
|
|
/// implement a fast dynamic compiler for this target.
|
|
|
|
///
|
|
|
|
void SparcV8JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
|
2004-06-15 20:37:12 +00:00
|
|
|
// FIXME: Implement efficient support for garbage collection intrinsics.
|
|
|
|
PM.add(createLowerGCPass());
|
|
|
|
|
|
|
|
// Replace malloc and free instructions with library calls.
|
|
|
|
PM.add(createLowerAllocationsPass());
|
|
|
|
|
2004-06-18 08:46:15 +00:00
|
|
|
// FIXME: implement the select instruction in the instruction selector.
|
|
|
|
PM.add(createLowerSelectPass());
|
|
|
|
|
2004-06-15 20:37:12 +00:00
|
|
|
// FIXME: implement the switch instruction in the instruction selector.
|
|
|
|
PM.add(createLowerSwitchPass());
|
|
|
|
|
|
|
|
// FIXME: implement the invoke/unwind instructions!
|
|
|
|
PM.add(createLowerInvokePass());
|
2004-07-02 05:49:11 +00:00
|
|
|
|
|
|
|
PM.add(createLowerConstantExpressionsPass());
|
2004-06-15 20:37:12 +00:00
|
|
|
|
2004-07-02 05:49:11 +00:00
|
|
|
// Make sure that no unreachable blocks are instruction selected.
|
|
|
|
PM.add(createUnreachableBlockEliminationPass());
|
|
|
|
|
2004-04-06 23:21:24 +00:00
|
|
|
PM.add(createSparcV8SimpleInstructionSelector(TM));
|
|
|
|
|
|
|
|
// Print machine instructions as they were initially generated.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
2004-02-25 19:28:19 +00:00
|
|
|
PM.add(createRegisterAllocator());
|
|
|
|
PM.add(createPrologEpilogCodeInserter());
|
2004-04-06 23:21:24 +00:00
|
|
|
|
|
|
|
// Print machine instructions after register allocation and prolog/epilog
|
|
|
|
// insertion.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
|
|
|
|
|
|
|
PM.add(createSparcV8DelaySlotFillerPass(TM));
|
|
|
|
|
|
|
|
// Print machine instructions after filling delay slots.
|
|
|
|
if (PrintMachineCode)
|
|
|
|
PM.add(createMachineFunctionPrinterPass(&std::cerr));
|
2004-02-25 19:28:19 +00:00
|
|
|
}
|