blob: eb483dc8706f5f7b667053f108744fe3659b00eb [file] [log] [blame]
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +00001//==-- MSP430TargetMachine.h - Define TargetMachine for MSP430 ---*- C++ -*-==//
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// This file declares the MSP430 specific subclass of TargetMachine.
11//
12//===----------------------------------------------------------------------===//
13
14
15#ifndef LLVM_TARGET_MSP430_TARGETMACHINE_H
16#define LLVM_TARGET_MSP430_TARGETMACHINE_H
17
18#include "MSP430InstrInfo.h"
19#include "MSP430ISelLowering.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000020#include "MSP430FrameLowering.h"
Dan Gohmanff7a5622010-05-11 17:31:57 +000021#include "MSP430SelectionDAGInfo.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000022#include "MSP430RegisterInfo.h"
23#include "MSP430Subtarget.h"
24#include "llvm/Target/TargetData.h"
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000025#include "llvm/Target/TargetFrameLowering.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000026#include "llvm/Target/TargetMachine.h"
27
28namespace llvm {
29
30/// MSP430TargetMachine
31///
32class MSP430TargetMachine : public LLVMTargetMachine {
33 MSP430Subtarget Subtarget;
34 const TargetData DataLayout; // Calculates type size & alignment
35 MSP430InstrInfo InstrInfo;
36 MSP430TargetLowering TLInfo;
Dan Gohmanff7a5622010-05-11 17:31:57 +000037 MSP430SelectionDAGInfo TSInfo;
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000038 MSP430FrameLowering FrameLowering;
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000039
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000040public:
Evan Cheng43966132011-07-19 06:37:02 +000041 MSP430TargetMachine(const Target &T, StringRef TT,
Evan Cheng34ad6db2011-07-20 07:51:56 +000042 StringRef CPU, StringRef FS,
43 Reloc::Model RM, CodeModel::Model CM);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000044
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000045 virtual const TargetFrameLowering *getFrameLowering() const {
46 return &FrameLowering;
47 }
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000048 virtual const MSP430InstrInfo *getInstrInfo() const { return &InstrInfo; }
49 virtual const TargetData *getTargetData() const { return &DataLayout;}
50 virtual const MSP430Subtarget *getSubtargetImpl() const { return &Subtarget; }
51
52 virtual const TargetRegisterInfo *getRegisterInfo() const {
53 return &InstrInfo.getRegisterInfo();
54 }
55
Dan Gohmand858e902010-04-17 15:26:15 +000056 virtual const MSP430TargetLowering *getTargetLowering() const {
57 return &TLInfo;
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000058 }
59
Dan Gohmanff7a5622010-05-11 17:31:57 +000060 virtual const MSP430SelectionDAGInfo* getSelectionDAGInfo() const {
61 return &TSInfo;
62 }
63
Anton Korobeynikov60871cb2009-05-03 13:19:42 +000064 virtual bool addInstSelector(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Anton Korobeynikov702adab2010-01-15 21:19:05 +000065 virtual bool addPreEmitPass(PassManagerBase &PM, CodeGenOpt::Level OptLevel);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000066}; // MSP430TargetMachine.
67
68} // end namespace llvm
69
70#endif // LLVM_TARGET_MSP430_TARGETMACHINE_H