LLVM 19.0.0git
HexagonMCELFStreamer.cpp
Go to the documentation of this file.
1//=== HexagonMCELFStreamer.cpp - 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//===----------------------------------------------------------------------===//
8//
9// This file is a stub that parses a MCInst bundle and passes the
10// instructions on to the real streamer.
11//
12//===----------------------------------------------------------------------===//
13
17#include "llvm/ADT/StringRef.h"
20#include "llvm/MC/MCAssembler.h"
22#include "llvm/MC/MCContext.h"
23#include "llvm/MC/MCExpr.h"
24#include "llvm/MC/MCInst.h"
27#include "llvm/MC/MCSection.h"
29#include "llvm/MC/MCStreamer.h"
30#include "llvm/MC/MCSymbol.h"
31#include "llvm/MC/MCSymbolELF.h"
36#include <cassert>
37#include <cstdint>
38
39#define DEBUG_TYPE "hexagonmcelfstreamer"
40
41using namespace llvm;
42
44 ("gpsize", cl::NotHidden,
45 cl::desc("Global Pointer Addressing Size. The default size is 8."),
47 cl::init(8));
48
50 MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
51 std::unique_ptr<MCObjectWriter> OW, std::unique_ptr<MCCodeEmitter> Emitter)
52 : MCELFStreamer(Context, std::move(TAB), std::move(OW), std::move(Emitter)),
54
56 MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
57 std::unique_ptr<MCObjectWriter> OW, std::unique_ptr<MCCodeEmitter> Emitter,
58 MCAssembler *Assembler)
59 : MCELFStreamer(Context, std::move(TAB), std::move(OW), std::move(Emitter)),
61
63 const MCSubtargetInfo &STI) {
64 assert(MCB.getOpcode() == Hexagon::BUNDLE);
67
68 // At this point, MCB is a bundle
69 // Iterate through the bundle and assign addends for the instructions
70 for (auto const &I : HexagonMCInstrInfo::bundleInstructions(MCB)) {
71 MCInst *MCI = const_cast<MCInst *>(I.getInst());
72 EmitSymbol(*MCI);
73 }
74
76}
77
79 // Scan for values.
80 for (unsigned i = Inst.getNumOperands(); i--;)
81 if (Inst.getOperand(i).isExpr())
83}
84
85// EmitCommonSymbol and EmitLocalCommonSymbol are extended versions of the
86// functions found in MCELFStreamer.cpp taking AccessSize as an additional
87// parameter.
90 Align ByteAlignment,
91 unsigned AccessSize) {
93 StringRef sbss[4] = {".sbss.1", ".sbss.2", ".sbss.4", ".sbss.8"};
94
95 auto ELFSymbol = cast<MCSymbolELF>(Symbol);
96 if (!ELFSymbol->isBindingSet()) {
97 ELFSymbol->setBinding(ELF::STB_GLOBAL);
98 ELFSymbol->setExternal(true);
99 }
100
101 ELFSymbol->setType(ELF::STT_OBJECT);
102
103 if (ELFSymbol->getBinding() == ELF::STB_LOCAL) {
105 ((AccessSize == 0) || (Size == 0) || (Size > GPSize))
106 ? ".bss"
107 : sbss[(Log2_64(AccessSize))];
111 switchSection(&Section);
112
113 if (ELFSymbol->isUndefined()) {
114 emitValueToAlignment(ByteAlignment, 0, 1, 0);
115 emitLabel(Symbol);
117 }
118
119 // Update the maximum alignment of the section if necessary.
120 Section.ensureMinAlignment(ByteAlignment);
121
122 switchSection(P.first, P.second);
123 } else {
124 if (ELFSymbol->declareCommon(Size, ByteAlignment))
125 report_fatal_error("Symbol: " + Symbol->getName() +
126 " redeclared as different type");
127 if ((AccessSize) && (Size <= GPSize)) {
128 uint64_t SectionIndex =
129 (AccessSize <= GPSize)
132 ELFSymbol->setIndex(SectionIndex);
133 }
134 }
135
136 ELFSymbol->setSize(MCConstantExpr::create(Size, getContext()));
137}
138
141 Align ByteAlignment,
142 unsigned AccessSize) {
143 getAssembler().registerSymbol(*Symbol);
144 auto ELFSymbol = cast<MCSymbolELF>(Symbol);
145 ELFSymbol->setBinding(ELF::STB_LOCAL);
146 ELFSymbol->setExternal(false);
147 HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, AccessSize);
148}
149
150namespace llvm {
152 std::unique_ptr<MCAsmBackend> MAB,
153 std::unique_ptr<MCObjectWriter> OW,
154 std::unique_ptr<MCCodeEmitter> CE) {
155 return new HexagonMCELFStreamer(Context, std::move(MAB), std::move(OW),
156 std::move(CE));
157 }
158
159} // end namespace llvm
dxil DXContainer Global Emitter
uint64_t Size
static cl::opt< unsigned > GPSize("gpsize", cl::NotHidden, cl::desc("Global Pointer Addressing Size. The default size is 8."), cl::Prefix, cl::init(8))
#define HEXAGON_PACKET_SIZE
#define I(x, y, z)
Definition: MD5.cpp:58
LLVMContext & Context
#define P(N)
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
void HexagonMCEmitLocalCommonSymbol(MCSymbol *Symbol, uint64_t Size, Align ByteAlignment, unsigned AccessSize)
void HexagonMCEmitCommonSymbol(MCSymbol *Symbol, uint64_t Size, Align ByteAlignment, unsigned AccessSize)
void emitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) override
Emit the given Instruction into the current section.
void EmitSymbol(const MCInst &Inst)
HexagonMCELFStreamer(MCContext &Context, std::unique_ptr< MCAsmBackend > TAB, std::unique_ptr< MCObjectWriter > OW, std::unique_ptr< MCCodeEmitter > Emitter)
MCContext & getContext() const
Definition: MCAssembler.h:326
bool registerSymbol(const MCSymbol &Symbol)
static const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Definition: MCExpr.cpp:194
Context object for machine code objects.
Definition: MCContext.h:76
MCSectionELF * getELFSection(const Twine &Section, unsigned Type, unsigned Flags)
Definition: MCContext.h:567
void emitValueToAlignment(Align, int64_t, unsigned, unsigned) override
Emit some number of copies of Value until the byte alignment ByteAlignment is reached.
void emitLabel(MCSymbol *Symbol, SMLoc Loc=SMLoc()) override
Emit a label for Symbol into the current section.
Instances of this class represent a single low-level machine instruction.
Definition: MCInst.h:184
unsigned getNumOperands() const
Definition: MCInst.h:208
unsigned getOpcode() const
Definition: MCInst.h:198
const MCOperand & getOperand(unsigned i) const
Definition: MCInst.h:206
MCAssembler & getAssembler()
void emitInstruction(const MCInst &Inst, const MCSubtargetInfo &STI) override
Emit the given Instruction into the current section.
const MCExpr * getExpr() const
Definition: MCInst.h:114
bool isExpr() const
Definition: MCInst.h:65
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition: MCSection.h:39
Streaming machine code generation interface.
Definition: MCStreamer.h:212
MCContext & getContext() const
Definition: MCStreamer.h:297
virtual void switchSection(MCSection *Section, const MCExpr *Subsection=nullptr)
Set the current section where code is being emitted to Section.
MCSectionSubPair getCurrentSection() const
Return the current section that the streamer is emitting code to.
Definition: MCStreamer.h:388
void emitZeros(uint64_t NumBytes)
Emit NumBytes worth of zeros.
Definition: MCStreamer.cpp:230
void visitUsedExpr(const MCExpr &Expr)
Generic base class for all target subtargets.
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition: MCSymbol.h:40
StringRef - Represent a constant reference to a string, i.e.
Definition: StringRef.h:50
Triple - Helper class for working with autoconf configuration names.
Definition: Triple.h:44
@ SHF_ALLOC
Definition: ELF.h:1155
@ SHF_WRITE
Definition: ELF.h:1152
@ SHT_NOBITS
Definition: ELF.h:1070
@ SHN_HEXAGON_SCOMMON
Definition: ELF.h:654
@ STB_GLOBAL
Definition: ELF.h:1309
@ STB_LOCAL
Definition: ELF.h:1308
@ STT_OBJECT
Definition: ELF.h:1321
size_t bundleSize(MCInst const &MCI)
iterator_range< Hexagon::PacketIterator > bundleInstructions(MCInstrInfo const &MCII, MCInst const &MCI)
initializer< Ty > init(const Ty &Val)
Definition: CommandLine.h:450
This is an optimization pass for GlobalISel generic memory operations.
Definition: AddressRanges.h:18
int bit_width(T Value)
Returns the number of bits needed to represent Value if Value is nonzero.
Definition: bit.h:317
unsigned Log2_64(uint64_t Value)
Return the floor log base 2 of the specified value, -1 if the value is zero.
Definition: MathExtras.h:319
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
Definition: Error.cpp:156
MCInstrInfo * createHexagonMCInstrInfo()
std::pair< MCSection *, const MCExpr * > MCSectionSubPair
Definition: MCStreamer.h:66
OutputIt move(R &&Range, OutputIt Out)
Provide wrappers to std::move which take ranges instead of having to pass begin/end explicitly.
Definition: STLExtras.h:1858
MCStreamer * createHexagonELFStreamer(Triple const &TT, MCContext &Context, std::unique_ptr< MCAsmBackend > MAB, std::unique_ptr< MCObjectWriter > OW, std::unique_ptr< MCCodeEmitter > CE)
Implement std::hash so that hash_code can be used in STL containers.
Definition: BitVector.h:858
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition: Alignment.h:39