[Darwin][Driver][clang] apple-none-macho orders the resource directory after internal...
[llvm-project.git] / llvm / lib / Target / Hexagon / MCTargetDesc / HexagonMCELFStreamer.h
blobba25a0eb4c0a52833146d48b3103508f2681191b
1 //===- HexagonMCELFStreamer.h - Hexagon subclass of MCElfStreamer ---------===//
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 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCELFSTREAMER_H
10 #define LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCELFSTREAMER_H
12 #include "MCTargetDesc/HexagonMCTargetDesc.h"
13 #include "llvm/MC/MCELFStreamer.h"
14 #include "llvm/MC/MCInstrInfo.h"
15 #include <cstdint>
16 #include <memory>
18 namespace llvm {
20 class HexagonMCELFStreamer : public MCELFStreamer {
21 std::unique_ptr<MCInstrInfo> MCII;
23 public:
24 HexagonMCELFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
25 std::unique_ptr<MCObjectWriter> OW,
26 std::unique_ptr<MCCodeEmitter> Emitter);
28 HexagonMCELFStreamer(MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
29 std::unique_ptr<MCObjectWriter> OW,
30 std::unique_ptr<MCCodeEmitter> Emitter,
31 MCAssembler *Assembler);
33 void emitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) override;
34 void EmitSymbol(const MCInst &Inst);
35 void HexagonMCEmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size,
36 Align ByteAlignment, unsigned AccessSize);
37 void HexagonMCEmitCommonSymbol(MCSymbol *Symbol, uint64_t Size,
38 Align ByteAlignment, unsigned AccessSize);
41 MCStreamer *createHexagonELFStreamer(Triple const &TT, MCContext &Context,
42 std::unique_ptr<MCAsmBackend> MAB,
43 std::unique_ptr<MCObjectWriter> OW,
44 std::unique_ptr<MCCodeEmitter> CE);
46 } // end namespace llvm
48 #endif // LLVM_LIB_TARGET_HEXAGON_MCTARGETDESC_HEXAGONMCELFSTREAMER_H