1 //===-- AVRSubtarget.h - Define Subtarget for the AVR -----------*- C++ -*-===// 2 // 3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions. 4 // See https://llvm.org/LICENSE.txt for license information. 5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception 6 // 7 //===----------------------------------------------------------------------===// 8 // 9 // This file declares the AVR specific subclass of TargetSubtargetInfo. 10 // 11 //===----------------------------------------------------------------------===// 12 13 #ifndef LLVM_AVR_SUBTARGET_H 14 #define LLVM_AVR_SUBTARGET_H 15 16 #include "llvm/CodeGen/TargetSubtargetInfo.h" 17 #include "llvm/IR/DataLayout.h" 18 #include "llvm/Target/TargetMachine.h" 19 20 #include "AVRFrameLowering.h" 21 #include "AVRISelLowering.h" 22 #include "AVRInstrInfo.h" 23 #include "AVRSelectionDAGInfo.h" 24 25 #define GET_SUBTARGETINFO_HEADER 26 #include "AVRGenSubtargetInfo.inc" 27 28 namespace llvm { 29 30 /// A specific AVR target MCU. 31 class AVRSubtarget : public AVRGenSubtargetInfo { 32 public: 33 //! Creates an AVR subtarget. 34 //! \param TT The target triple. 35 //! \param CPU The CPU to target. 36 //! \param FS The feature string. 37 //! \param TM The target machine. 38 AVRSubtarget(const Triple &TT, const std::string &CPU, const std::string &FS, 39 const AVRTargetMachine &TM); 40 41 const AVRInstrInfo *getInstrInfo() const override { return &InstrInfo; } 42 const TargetFrameLowering *getFrameLowering() const override { 43 return &FrameLowering; 44 } 45 const AVRTargetLowering *getTargetLowering() const override { 46 return &TLInfo; 47 } 48 const AVRSelectionDAGInfo *getSelectionDAGInfo() const override { 49 return &TSInfo; 50 } 51 const AVRRegisterInfo *getRegisterInfo() const override { 52 return &InstrInfo.getRegisterInfo(); 53 } 54 55 /// Parses a subtarget feature string, setting appropriate options. 56 /// \note Definition of function is auto generated by `tblgen`. 57 void ParseSubtargetFeatures(StringRef CPU, StringRef TuneCPU, StringRef FS); 58 59 AVRSubtarget &initializeSubtargetDependencies(StringRef CPU, StringRef FS, 60 const TargetMachine &TM); 61 62 // Subtarget feature getters. 63 // See AVR.td for details. 64 bool hasSRAM() const { return m_hasSRAM; } 65 bool hasJMPCALL() const { return m_hasJMPCALL; } 66 bool hasIJMPCALL() const { return m_hasIJMPCALL; } 67 bool hasEIJMPCALL() const { return m_hasEIJMPCALL; } 68 bool hasADDSUBIW() const { return m_hasADDSUBIW; } 69 bool hasSmallStack() const { return m_hasSmallStack; } 70 bool hasMOVW() const { return m_hasMOVW; } 71 bool hasLPM() const { return m_hasLPM; } 72 bool hasLPMX() const { return m_hasLPMX; } 73 bool hasELPM() const { return m_hasELPM; } 74 bool hasELPMX() const { return m_hasELPMX; } 75 bool hasSPM() const { return m_hasSPM; } 76 bool hasSPMX() const { return m_hasSPMX; } 77 bool hasDES() const { return m_hasDES; } 78 bool supportsRMW() const { return m_supportsRMW; } 79 bool supportsMultiplication() const { return m_supportsMultiplication; } 80 bool hasBREAK() const { return m_hasBREAK; } 81 bool hasTinyEncoding() const { return m_hasTinyEncoding; } 82 bool hasMemMappedGPR() const { return m_hasMemMappedGPR; } 83 84 uint8_t getIORegisterOffset() const { return hasMemMappedGPR() ? 0x20 : 0x0; } 85 86 /// Gets the ELF architecture for the e_flags field 87 /// of an ELF object file. 88 unsigned getELFArch() const { 89 assert(ELFArch != 0 && 90 "every device must have an associate ELF architecture"); 91 return ELFArch; 92 } 93 94 /// Get I/O register address. 95 int getIORegRAMPZ(void) const { return 0x3b; } 96 97 private: 98 /// The ELF e_flags architecture. 99 unsigned ELFArch; 100 101 // Subtarget feature settings 102 // See AVR.td for details. 103 bool m_hasSRAM; 104 bool m_hasJMPCALL; 105 bool m_hasIJMPCALL; 106 bool m_hasEIJMPCALL; 107 bool m_hasADDSUBIW; 108 bool m_hasSmallStack; 109 bool m_hasMOVW; 110 bool m_hasLPM; 111 bool m_hasLPMX; 112 bool m_hasELPM; 113 bool m_hasELPMX; 114 bool m_hasSPM; 115 bool m_hasSPMX; 116 bool m_hasDES; 117 bool m_supportsRMW; 118 bool m_supportsMultiplication; 119 bool m_hasBREAK; 120 bool m_hasTinyEncoding; 121 bool m_hasMemMappedGPR; 122 123 // Dummy member, used by FeatureSet's. We cannot have a SubtargetFeature with 124 // no variable, so we instead bind pseudo features to this variable. 125 bool m_FeatureSetDummy; 126 127 AVRInstrInfo InstrInfo; 128 AVRFrameLowering FrameLowering; 129 AVRTargetLowering TLInfo; 130 AVRSelectionDAGInfo TSInfo; 131 }; 132 133 } // end namespace llvm 134 135 #endif // LLVM_AVR_SUBTARGET_H 136