Disable stack coloring with register for now. It's not able to set kill markers.
[llvm/avr.git] / lib / Target / Blackfin / BlackfinTargetMachine.h
blob13a8a631f3cbbfdb9ef773eb998a2f0fe7faa5b8
1 //===-- BlackfinTargetMachine.h - TargetMachine for Blackfin ----*- 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 Blackfin specific subclass of TargetMachine.
12 //===----------------------------------------------------------------------===//
14 #ifndef BLACKFINTARGETMACHINE_H
15 #define BLACKFINTARGETMACHINE_H
17 #include "llvm/Target/TargetMachine.h"
18 #include "llvm/Target/TargetData.h"
19 #include "llvm/Target/TargetFrameInfo.h"
20 #include "BlackfinInstrInfo.h"
21 #include "BlackfinSubtarget.h"
22 #include "BlackfinISelLowering.h"
24 namespace llvm {
26 class BlackfinTargetMachine : public LLVMTargetMachine {
27 const TargetData DataLayout;
28 BlackfinSubtarget Subtarget;
29 BlackfinTargetLowering TLInfo;
30 BlackfinInstrInfo InstrInfo;
31 TargetFrameInfo FrameInfo;
33 protected:
34 virtual const TargetAsmInfo *createTargetAsmInfo() const;
36 public:
37 BlackfinTargetMachine(const Target &T, const std::string &TT,
38 const std::string &FS);
40 virtual const BlackfinInstrInfo *getInstrInfo() const { return &InstrInfo; }
41 virtual const TargetFrameInfo *getFrameInfo() const { return &FrameInfo; }
42 virtual const BlackfinSubtarget *getSubtargetImpl() const {
43 return &Subtarget;
45 virtual const BlackfinRegisterInfo *getRegisterInfo() const {
46 return &InstrInfo.getRegisterInfo();
48 virtual BlackfinTargetLowering* getTargetLowering() const {
49 return const_cast<BlackfinTargetLowering*>(&TLInfo);
51 virtual const TargetData *getTargetData() const { return &DataLayout; }
52 virtual bool addInstSelector(PassManagerBase &PM,
53 CodeGenOpt::Level OptLevel);
56 } // end namespace llvm
58 #endif