diff options
author | Brian Gaeke <gaeke@uiuc.edu> | 2004-01-21 21:13:19 +0000 |
---|---|---|
committer | Brian Gaeke <gaeke@uiuc.edu> | 2004-01-21 21:13:19 +0000 |
commit | ca78f49234d52fca9d44800dbe6ec1ac387564d7 (patch) | |
tree | 812b57e2fa80899e966eabf03e4603c732e5d2b0 /lib/Target/PowerPC/PowerPCTargetMachine.cpp | |
parent | d65ed3fbe81c227b718ef7a7d6d755635b7e5f7d (diff) |
Import of skeletal PowerPC backend I have had laying around for months...
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@10937 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'lib/Target/PowerPC/PowerPCTargetMachine.cpp')
-rw-r--r-- | lib/Target/PowerPC/PowerPCTargetMachine.cpp | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/lib/Target/PowerPC/PowerPCTargetMachine.cpp b/lib/Target/PowerPC/PowerPCTargetMachine.cpp new file mode 100644 index 0000000000..11b5a799b1 --- /dev/null +++ b/lib/Target/PowerPC/PowerPCTargetMachine.cpp @@ -0,0 +1,53 @@ +//===-- PowerPCTargetMachine.cpp - Define TargetMachine for PowerPC -------===// +// +// 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 "PowerPCTargetMachine.h" +#include "llvm/Module.h" +#include "llvm/PassManager.h" +#include "llvm/Target/TargetMachineImpls.h" +#include "llvm/CodeGen/MachineFunction.h" +#include "llvm/CodeGen/Passes.h" + +namespace llvm { + +// allocatePowerPCTargetMachine - Allocate and return a subclass of +// TargetMachine that implements the PowerPC backend. +// +TargetMachine *allocatePowerPCTargetMachine(const Module &M, + IntrinsicLowering *IL) { + return new PowerPCTargetMachine(M, IL); +} + +/// PowerPCTargetMachine ctor - Create an ILP32 architecture model +/// +PowerPCTargetMachine::PowerPCTargetMachine(const Module &M, + IntrinsicLowering *IL) + : TargetMachine("PowerPC", IL, true, 4, 4, 4, 4, 4), + FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 4) { +} + +// addPassesToEmitAssembly - We currently use all of the same passes as the JIT +// does to emit statically compiled machine code. +bool PowerPCTargetMachine::addPassesToEmitAssembly(PassManager &PM, + std::ostream &Out) { + return true; +} + +/// addPassesToJITCompile - Add passes to the specified pass manager to +/// implement a fast dynamic compiler for this target. Return true if this is +/// not supported for this target. +/// +bool PowerPCTargetMachine::addPassesToJITCompile(FunctionPassManager &PM) { + return true; +} + +} // end namespace llvm |