X-Git-Url: http://demsky.eecs.uci.edu/git/?a=blobdiff_plain;f=lib%2FTarget%2FSparc%2FSparcTargetMachine.cpp;h=a888423a1524f7fc4fb62845f40b3013224aea88;hb=fbaae01269b580ca12d7b5ae131986dd001041fe;hp=9cd97ee496bed9c8ec9e5225bc7c9c918ceeb931;hpb=86a8790826c253dd56e10902abdcd7f87c2cbdaa;p=oota-llvm.git diff --git a/lib/Target/Sparc/SparcTargetMachine.cpp b/lib/Target/Sparc/SparcTargetMachine.cpp index 9cd97ee496b..a888423a152 100644 --- a/lib/Target/Sparc/SparcTargetMachine.cpp +++ b/lib/Target/Sparc/SparcTargetMachine.cpp @@ -17,6 +17,7 @@ #include "llvm/Target/TargetMachineImpls.h" #include "llvm/CodeGen/MachineFunction.h" #include "llvm/CodeGen/Passes.h" +#include "llvm/Transforms/Scalar.h" using namespace llvm; // allocateSparcV8TargetMachine - Allocate and return a subclass of @@ -32,7 +33,7 @@ TargetMachine *llvm::allocateSparcV8TargetMachine(const Module &M, SparcV8TargetMachine::SparcV8TargetMachine(const Module &M, IntrinsicLowering *IL) : TargetMachine("SparcV8", IL, true, 4, 4, 4, 4, 4), - FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 4), JITInfo(*this) { + FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) { } /// addPassesToEmitAssembly - Add passes to the specified pass manager @@ -40,6 +41,18 @@ SparcV8TargetMachine::SparcV8TargetMachine(const Module &M, /// bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM, std::ostream &Out) { + // FIXME: Implement efficient support for garbage collection intrinsics. + PM.add(createLowerGCPass()); + + // Replace malloc and free instructions with library calls. + PM.add(createLowerAllocationsPass()); + + // FIXME: implement the switch instruction in the instruction selector. + PM.add(createLowerSwitchPass()); + + // FIXME: implement the invoke/unwind instructions! + PM.add(createLowerInvokePass()); + PM.add(createSparcV8SimpleInstructionSelector(*this)); // Print machine instructions as they were initially generated. @@ -72,6 +85,18 @@ bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM, /// implement a fast dynamic compiler for this target. /// void SparcV8JITInfo::addPassesToJITCompile(FunctionPassManager &PM) { + // FIXME: Implement efficient support for garbage collection intrinsics. + PM.add(createLowerGCPass()); + + // Replace malloc and free instructions with library calls. + PM.add(createLowerAllocationsPass()); + + // FIXME: implement the switch instruction in the instruction selector. + PM.add(createLowerSwitchPass()); + + // FIXME: implement the invoke/unwind instructions! + PM.add(createLowerInvokePass()); + PM.add(createSparcV8SimpleInstructionSelector(TM)); // Print machine instructions as they were initially generated.