blob: be695a2111094b3dd7944e010e947121903838ae [file] [log] [blame]
Jia Liu31d157a2012-02-18 12:03:15 +00001//===-- MSP430TargetMachine.h - Define TargetMachine for MSP430 -*- C++ -*-===//
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +00002//
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
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000018#include "MSP430FrameLowering.h"
Chandler Carrutha1514e22012-12-04 07:12:27 +000019#include "MSP430ISelLowering.h"
20#include "MSP430InstrInfo.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000021#include "MSP430RegisterInfo.h"
Chandler Carrutha1514e22012-12-04 07:12:27 +000022#include "MSP430SelectionDAGInfo.h"
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000023#include "MSP430Subtarget.h"
Chandler Carruth0b8c9a82013-01-02 11:36:10 +000024#include "llvm/IR/DataLayout.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;
Micah Villmow3574eca2012-10-08 16:38:25 +000034 const DataLayout DL; // Calculates type size & alignment
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000035 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,
Nick Lewycky8a8d4792011-12-02 22:16:29 +000042 StringRef CPU, StringRef FS, const TargetOptions &Options,
Evan Chengb95fc312011-11-16 08:38:26 +000043 Reloc::Model RM, CodeModel::Model CM,
44 CodeGenOpt::Level OL);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000045
Anton Korobeynikov16c29b52011-01-10 12:39:04 +000046 virtual const TargetFrameLowering *getFrameLowering() const {
47 return &FrameLowering;
48 }
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000049 virtual const MSP430InstrInfo *getInstrInfo() const { return &InstrInfo; }
Micah Villmow3574eca2012-10-08 16:38:25 +000050 virtual const DataLayout *getDataLayout() const { return &DL;}
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000051 virtual const MSP430Subtarget *getSubtargetImpl() const { return &Subtarget; }
52
53 virtual const TargetRegisterInfo *getRegisterInfo() const {
54 return &InstrInfo.getRegisterInfo();
55 }
56
Dan Gohmand858e902010-04-17 15:26:15 +000057 virtual const MSP430TargetLowering *getTargetLowering() const {
58 return &TLInfo;
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000059 }
60
Dan Gohmanff7a5622010-05-11 17:31:57 +000061 virtual const MSP430SelectionDAGInfo* getSelectionDAGInfo() const {
62 return &TSInfo;
63 }
Andrew Trick061efcf2012-02-04 02:56:59 +000064 virtual TargetPassConfig *createPassConfig(PassManagerBase &PM);
Anton Korobeynikovf2c3e172009-05-03 12:57:15 +000065}; // MSP430TargetMachine.
66
67} // end namespace llvm
68
69#endif // LLVM_TARGET_MSP430_TARGETMACHINE_H