Change this so that LLC actually tries to run the code generator, though it will
[oota-llvm.git] / lib / Target / Sparc / SparcTargetMachine.cpp
1 //===-- SparcV8TargetMachine.cpp - Define TargetMachine for SparcV8 -------===//
2 // 
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file was developed by the LLVM research group and is distributed under
6 // the University of Illinois Open Source License. See LICENSE.TXT for details.
7 // 
8 //===----------------------------------------------------------------------===//
9 // 
10 //
11 //===----------------------------------------------------------------------===//
12
13 #include "SparcV8TargetMachine.h"
14 #include "SparcV8.h"
15 #include "llvm/Module.h"
16 #include "llvm/PassManager.h"
17 #include "llvm/Target/TargetMachineImpls.h"
18 #include "llvm/CodeGen/MachineFunction.h"
19 #include "llvm/CodeGen/Passes.h"
20 using namespace llvm;
21
22 // allocateSparcV8TargetMachine - Allocate and return a subclass of 
23 // TargetMachine that implements the SparcV8 backend.
24 //
25 TargetMachine *llvm::allocateSparcV8TargetMachine(const Module &M,
26                                                   IntrinsicLowering *IL) {
27   return new SparcV8TargetMachine(M, IL);
28 }
29
30 /// SparcV8TargetMachine ctor - Create an ILP32 architecture model
31 ///
32 SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
33                                            IntrinsicLowering *IL)
34   : TargetMachine("SparcV8", IL, true, 4, 4, 4, 4, 4),
35     FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 4), JITInfo(*this) {
36 }
37
38 /// addPassesToEmitAssembly - Add passes to the specified pass manager
39 /// to implement a static compiler for this target.
40 ///
41 bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM,
42                                                std::ostream &Out) {
43   // <insert instruction selector passes here>
44   PM.add(createRegisterAllocator());
45   PM.add(createPrologEpilogCodeInserter());
46   // <insert assembly code output passes here>
47   PM.add(createMachineCodeDeleter());
48   return false;
49 }
50
51 /// addPassesToJITCompile - Add passes to the specified pass manager to
52 /// implement a fast dynamic compiler for this target.
53 ///
54 void SparcV8JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
55   // <insert instruction selector passes here>
56   PM.add(createRegisterAllocator());
57   PM.add(createPrologEpilogCodeInserter());
58 }