blob: ab9316478fc24f9d6afd5aea3ddc32b5dc8ee88c [file] [log] [blame]
Brian Gaekee785e532004-02-25 19:28:19 +00001//===-- 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"
Brian Gaekee785e532004-02-25 19:28:19 +000017#include "llvm/CodeGen/MachineFunction.h"
18#include "llvm/CodeGen/Passes.h"
Chris Lattner0cf0c372004-07-11 04:17:10 +000019#include "llvm/Target/TargetOptions.h"
Chris Lattnerd36c9702004-07-11 02:48:49 +000020#include "llvm/Target/TargetMachineRegistry.h"
Brian Gaekef4052802004-06-15 20:37:12 +000021#include "llvm/Transforms/Scalar.h"
Chris Lattner38343f62004-07-04 17:19:21 +000022#include <iostream>
Chris Lattner8d8a6bc2004-02-28 19:52:49 +000023using namespace llvm;
Brian Gaekee785e532004-02-25 19:28:19 +000024
Chris Lattnerd36c9702004-07-11 02:48:49 +000025namespace {
26 // Register the target.
Chris Lattner71d24aa2004-07-11 03:27:42 +000027 RegisterTarget<SparcV8TargetMachine> X("sparcv8"," SPARC V8 (experimental)");
Chris Lattnerd36c9702004-07-11 02:48:49 +000028}
29
Brian Gaekee785e532004-02-25 19:28:19 +000030/// SparcV8TargetMachine ctor - Create an ILP32 architecture model
31///
32SparcV8TargetMachine::SparcV8TargetMachine(const Module &M,
33 IntrinsicLowering *IL)
Brian Gaeke8a9acd12004-09-29 03:26:27 +000034 : TargetMachine("SparcV8", IL, false, 4, 4, 8, 4, 8),
Brian Gaekeef8e48a2004-04-13 18:28:37 +000035 FrameInfo(TargetFrameInfo::StackGrowsDown, 8, 0), JITInfo(*this) {
Brian Gaekee785e532004-02-25 19:28:19 +000036}
37
38/// addPassesToEmitAssembly - Add passes to the specified pass manager
39/// to implement a static compiler for this target.
40///
41bool SparcV8TargetMachine::addPassesToEmitAssembly(PassManager &PM,
42 std::ostream &Out) {
Brian Gaekef4052802004-06-15 20:37:12 +000043 // FIXME: Implement efficient support for garbage collection intrinsics.
44 PM.add(createLowerGCPass());
45
46 // Replace malloc and free instructions with library calls.
47 PM.add(createLowerAllocationsPass());
Brian Gaekea3c57622004-06-18 08:46:15 +000048
49 // FIXME: implement the select instruction in the instruction selector.
50 PM.add(createLowerSelectPass());
Brian Gaekef4052802004-06-15 20:37:12 +000051
52 // FIXME: implement the switch instruction in the instruction selector.
53 PM.add(createLowerSwitchPass());
54
55 // FIXME: implement the invoke/unwind instructions!
56 PM.add(createLowerInvokePass());
57
Chris Lattnera9a582f2004-07-02 05:49:11 +000058 PM.add(createLowerConstantExpressionsPass());
59
60 // Make sure that no unreachable blocks are instruction selected.
61 PM.add(createUnreachableBlockEliminationPass());
62
Chris Lattner1c809c52004-02-29 00:27:00 +000063 PM.add(createSparcV8SimpleInstructionSelector(*this));
64
Brian Gaeke7a3ae1f2004-03-04 19:22:16 +000065 // Print machine instructions as they were initially generated.
66 if (PrintMachineCode)
67 PM.add(createMachineFunctionPrinterPass(&std::cerr));
Chris Lattner1c809c52004-02-29 00:27:00 +000068
Brian Gaekee785e532004-02-25 19:28:19 +000069 PM.add(createRegisterAllocator());
70 PM.add(createPrologEpilogCodeInserter());
Chris Lattner1c809c52004-02-29 00:27:00 +000071
Brian Gaeke7a3ae1f2004-03-04 19:22:16 +000072 // Print machine instructions after register allocation and prolog/epilog
73 // insertion.
74 if (PrintMachineCode)
75 PM.add(createMachineFunctionPrinterPass(&std::cerr));
Chris Lattner1c809c52004-02-29 00:27:00 +000076
Brian Gaeke8a9acd12004-09-29 03:26:27 +000077 PM.add(createSparcV8FPMoverPass(*this));
Brian Gaeke86a87902004-04-06 23:21:24 +000078 PM.add(createSparcV8DelaySlotFillerPass(*this));
79
80 // Print machine instructions after filling delay slots.
81 if (PrintMachineCode)
82 PM.add(createMachineFunctionPrinterPass(&std::cerr));
83
Brian Gaeke7a3ae1f2004-03-04 19:22:16 +000084 // Output assembly language.
Brian Gaeke4acfd032004-03-04 06:00:41 +000085 PM.add(createSparcV8CodePrinterPass(Out, *this));
86
Brian Gaeke7a3ae1f2004-03-04 19:22:16 +000087 // Delete the MachineInstrs we generated, since they're no longer needed.
Brian Gaekee785e532004-02-25 19:28:19 +000088 PM.add(createMachineCodeDeleter());
Chris Lattner9ff6ba12004-02-28 20:21:45 +000089 return false;
Brian Gaekee785e532004-02-25 19:28:19 +000090}
91
92/// addPassesToJITCompile - Add passes to the specified pass manager to
93/// implement a fast dynamic compiler for this target.
94///
95void SparcV8JITInfo::addPassesToJITCompile(FunctionPassManager &PM) {
Brian Gaekef4052802004-06-15 20:37:12 +000096 // FIXME: Implement efficient support for garbage collection intrinsics.
97 PM.add(createLowerGCPass());
98
99 // Replace malloc and free instructions with library calls.
100 PM.add(createLowerAllocationsPass());
101
Brian Gaekea3c57622004-06-18 08:46:15 +0000102 // FIXME: implement the select instruction in the instruction selector.
103 PM.add(createLowerSelectPass());
104
Brian Gaekef4052802004-06-15 20:37:12 +0000105 // FIXME: implement the switch instruction in the instruction selector.
106 PM.add(createLowerSwitchPass());
107
108 // FIXME: implement the invoke/unwind instructions!
109 PM.add(createLowerInvokePass());
Chris Lattnera9a582f2004-07-02 05:49:11 +0000110
111 PM.add(createLowerConstantExpressionsPass());
Brian Gaekef4052802004-06-15 20:37:12 +0000112
Chris Lattnera9a582f2004-07-02 05:49:11 +0000113 // Make sure that no unreachable blocks are instruction selected.
114 PM.add(createUnreachableBlockEliminationPass());
115
Brian Gaeke86a87902004-04-06 23:21:24 +0000116 PM.add(createSparcV8SimpleInstructionSelector(TM));
117
118 // Print machine instructions as they were initially generated.
119 if (PrintMachineCode)
120 PM.add(createMachineFunctionPrinterPass(&std::cerr));
121
Brian Gaekee785e532004-02-25 19:28:19 +0000122 PM.add(createRegisterAllocator());
123 PM.add(createPrologEpilogCodeInserter());
Brian Gaeke86a87902004-04-06 23:21:24 +0000124
125 // Print machine instructions after register allocation and prolog/epilog
126 // insertion.
127 if (PrintMachineCode)
128 PM.add(createMachineFunctionPrinterPass(&std::cerr));
129
Brian Gaeke8a9acd12004-09-29 03:26:27 +0000130 PM.add(createSparcV8FPMoverPass(TM));
Brian Gaeke86a87902004-04-06 23:21:24 +0000131 PM.add(createSparcV8DelaySlotFillerPass(TM));
132
133 // Print machine instructions after filling delay slots.
134 if (PrintMachineCode)
135 PM.add(createMachineFunctionPrinterPass(&std::cerr));
Brian Gaekee785e532004-02-25 19:28:19 +0000136}