Match wrapper node for address
[llvm/msp430.git] / lib / Target / MSP430 / MSP430TargetMachine.h
blob258a3951ca1a23d1fd1150250c8967e6c5501591
1 //==-- 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.
12 //===----------------------------------------------------------------------===//
15 #ifndef LLVM_TARGET_MSP430_TARGETMACHINE_H
16 #define LLVM_TARGET_MSP430_TARGETMACHINE_H
18 #include "MSP430InstrInfo.h"
19 #include "MSP430ISelLowering.h"
20 #include "MSP430RegisterInfo.h"
21 #include "MSP430Subtarget.h"
22 #include "llvm/Target/TargetData.h"
23 #include "llvm/Target/TargetFrameInfo.h"
24 #include "llvm/Target/TargetMachine.h"
26 namespace llvm {
28 /// MSP430TargetMachine
29 ///
30 class MSP430TargetMachine : public LLVMTargetMachine {
31 MSP430Subtarget Subtarget;
32 const TargetData DataLayout; // Calculates type size & alignment
33 MSP430InstrInfo InstrInfo;
34 MSP430TargetLowering TLInfo;
36 // MSP430 does not have any call stack frame, therefore not having
37 // any MSP430 specific FrameInfo class.
38 TargetFrameInfo FrameInfo;
40 protected:
41 virtual const TargetAsmInfo *createTargetAsmInfo() const;
43 public:
44 MSP430TargetMachine(const Module &M, const std::string &FS);
46 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
47 virtual const MSP430InstrInfo *getInstrInfo() const { return &InstrInfo; }
48 virtual const TargetData *getTargetData() const { return &DataLayout;}
49 virtual const MSP430Subtarget *getSubtargetImpl() const { return &Subtarget; }
51 virtual const TargetRegisterInfo *getRegisterInfo() const {
52 return &InstrInfo.getRegisterInfo();
55 virtual MSP430TargetLowering *getTargetLowering() const {
56 return const_cast<MSP430TargetLowering*>(&TLInfo);
59 virtual bool addInstSelector(PassManagerBase &PM, bool Fast);
60 virtual bool addAssemblyEmitter(PassManagerBase &PM, bool Fast,
61 bool Verbose, raw_ostream &Out);
62 static unsigned getModuleMatchQuality(const Module &M);
63 }; // MSP430TargetMachine.
65 } // end namespace llvm
67 #endif // LLVM_TARGET_MSP430_TARGETMACHINE_H