blob: f2ddad14bf254fff99d9886531af4132c7f4a90f [file] [log] [blame]
Sanjiv Gupta0e687712008-05-13 09:02:57 +00001//===-- PIC16TargetMachine.cpp - Define TargetMachine for PIC16 -----------===//
2//
3// The LLVM Compiler Infrastructure
4//
5// This file is distributed under the University of Illinois Open Source
6// License. See LICENSE.TXT for details.
7//
8//===----------------------------------------------------------------------===//
9//
10// Top-level implementation for the PIC16 target.
11//
12//===----------------------------------------------------------------------===//
13
14#include "PIC16.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000015#include "PIC16TargetAsmInfo.h"
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +000016#include "PIC16TargetMachine.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000017#include "llvm/Module.h"
18#include "llvm/PassManager.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000019#include "llvm/Target/TargetAsmInfo.h"
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +000020#include "llvm/Target/TargetMachineRegistry.h"
Sanjiv Gupta0e687712008-05-13 09:02:57 +000021
22using namespace llvm;
23
Oscar Fuentes92adc192008-11-15 21:36:30 +000024/// PIC16TargetMachineModule - Note that this is used on hosts that
25/// cannot link in a library unless there are references into the
26/// library. In particular, it seems that it is not possible to get
27/// things to work on Win32 without this. Though it is unused, do not
28/// remove it.
29extern "C" int PIC16TargetMachineModule;
30int PIC16TargetMachineModule = 0;
31
Sanjiv Gupta0e687712008-05-13 09:02:57 +000032namespace {
33 // Register the targets
Chris Lattner0d5d05b2008-10-16 06:16:50 +000034 RegisterTarget<PIC16TargetMachine> X("pic16", "PIC16 14-bit [experimental]");
Sanjiv Gupta0e687712008-05-13 09:02:57 +000035}
36
37PIC16TargetMachine::
38PIC16TargetMachine(const Module &M, const std::string &FS) :
39 Subtarget(*this, M, FS), DataLayout("e-p:16:8:8-i8:8:8-i16:8:8-i32:8:8"),
40 InstrInfo(*this), TLInfo(*this),
41 FrameInfo(TargetFrameInfo::StackGrowsUp, 8, 0) { }
42
43
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +000044const TargetAsmInfo *PIC16TargetMachine::createTargetAsmInfo() const
Sanjiv Gupta0e687712008-05-13 09:02:57 +000045{
46 return new PIC16TargetAsmInfo(*this);
47}
48
49//===----------------------------------------------------------------------===//
50// Pass Pipeline Configuration
51//===----------------------------------------------------------------------===//
52
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +000053bool PIC16TargetMachine::addInstSelector(PassManagerBase &PM, bool Fast)
Sanjiv Gupta0e687712008-05-13 09:02:57 +000054{
55 // Install an instruction selector.
56 PM.add(createPIC16ISelDag(*this));
57 return false;
58}
59
60bool PIC16TargetMachine::
61addPrologEpilogInserter(PassManagerBase &PM, bool Fast)
62{
63 return false;
64}
65
Sanjiv Gupta2010b3e2008-05-14 11:31:39 +000066bool PIC16TargetMachine::addPreEmitPass(PassManagerBase &PM, bool Fast)
Sanjiv Gupta0e687712008-05-13 09:02:57 +000067{
68 return true;
69}
70
71bool PIC16TargetMachine::
Owen Andersoncb371882008-08-21 00:14:44 +000072addAssemblyEmitter(PassManagerBase &PM, bool Fast, raw_ostream &Out)
Sanjiv Gupta0e687712008-05-13 09:02:57 +000073{
74 // Output assembly language.
75 PM.add(createPIC16CodePrinterPass(Out, *this));
76 return false;
77}
78