From 5fe5e06bead4d7421546a6208f8f08695f98aad7 Mon Sep 17 00:00:00 2001 From: Brian Gaeke Date: Tue, 15 Jun 2004 20:37:12 +0000 Subject: [PATCH] I think we'll use the standard lowering passes for now. llvm-svn: 14179 --- lib/Target/SparcV8/SparcV8TargetMachine.cpp | 25 +++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/lib/Target/SparcV8/SparcV8TargetMachine.cpp b/lib/Target/SparcV8/SparcV8TargetMachine.cpp index 2aaa5d8a8e6..a888423a152 100644 --- a/lib/Target/SparcV8/SparcV8TargetMachine.cpp +++ b/lib/Target/SparcV8/SparcV8TargetMachine.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 @@ -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.