Sid Manning | 7da3f9a | 2014-10-03 13:18:11 +0000 | [diff] [blame] | 1 | //===-- HexagonMCCodeEmitter.h - Hexagon Target Descriptions ----*- 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 | /// \file |
| 11 | /// \brief Definition for classes that emit Hexagon machine code from MCInsts |
| 12 | /// |
| 13 | //===----------------------------------------------------------------------===// |
| 14 | |
| 15 | #ifndef HEXAGONMCCODEEMITTER_H |
| 16 | #define HEXAGONMCCODEEMITTER_H |
| 17 | |
| 18 | #include "llvm/MC/MCCodeEmitter.h" |
| 19 | #include "llvm/MC/MCExpr.h" |
| 20 | #include "llvm/MC/MCInst.h" |
| 21 | #include "llvm/MC/MCInstrInfo.h" |
| 22 | #include "llvm/MC/MCRegisterInfo.h" |
| 23 | #include "llvm/MC/MCSubtargetInfo.h" |
| 24 | #include "llvm/Support/raw_ostream.h" |
| 25 | |
| 26 | namespace llvm { |
| 27 | |
| 28 | class HexagonMCCodeEmitter : public MCCodeEmitter { |
| 29 | MCSubtargetInfo const &MST; |
| 30 | MCContext &MCT; |
| 31 | |
| 32 | public: |
| 33 | HexagonMCCodeEmitter(MCInstrInfo const &aMII, MCSubtargetInfo const &aMST, |
| 34 | MCContext &aMCT); |
| 35 | |
| 36 | MCSubtargetInfo const &getSubtargetInfo() const; |
| 37 | |
| 38 | void EncodeInstruction(MCInst const &MI, raw_ostream &OS, |
| 39 | SmallVectorImpl<MCFixup> &Fixups, |
| 40 | MCSubtargetInfo const &STI) const override; |
| 41 | |
Colin LeMahieu | 7055365 | 2014-10-21 16:03:10 +0000 | [diff] [blame^] | 42 | // \brief TableGen'erated function for getting the |
Sid Manning | 7da3f9a | 2014-10-03 13:18:11 +0000 | [diff] [blame] | 43 | // binary encoding for an instruction. |
| 44 | uint64_t getBinaryCodeForInstr(MCInst const &MI, |
| 45 | SmallVectorImpl<MCFixup> &Fixups, |
| 46 | MCSubtargetInfo const &STI) const; |
| 47 | |
| 48 | /// \brief Return binary encoding of operand. |
| 49 | unsigned getMachineOpValue(MCInst const &MI, MCOperand const &MO, |
| 50 | SmallVectorImpl<MCFixup> &Fixups, |
| 51 | MCSubtargetInfo const &STI) const; |
| 52 | |
| 53 | private: |
Hans Wennborg | da47cf4 | 2014-10-03 17:02:28 +0000 | [diff] [blame] | 54 | HexagonMCCodeEmitter(HexagonMCCodeEmitter const &) LLVM_DELETED_FUNCTION; |
| 55 | void operator=(HexagonMCCodeEmitter const &) LLVM_DELETED_FUNCTION; |
Sid Manning | 7da3f9a | 2014-10-03 13:18:11 +0000 | [diff] [blame] | 56 | }; // class HexagonMCCodeEmitter |
| 57 | |
| 58 | } // namespace llvm |
| 59 | |
| 60 | #endif /* HEXAGONMCCODEEMITTER_H */ |