LLVM 22.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
19#include "llvm/ADT/StringRef.h"
22#include "llvm/MC/MCAssembler.h"
24#include "llvm/MC/MCContext.h"
25#include "llvm/MC/MCExpr.h"
26#include "llvm/MC/MCInst.h"
29#include "llvm/MC/MCSection.h"
31#include "llvm/MC/MCStreamer.h"
33#include "llvm/MC/MCSymbol.h"
34#include "llvm/MC/MCSymbolELF.h"
39#include <cassert>
40#include <cstdint>
41
42#define DEBUG_TYPE "hexagonmcelfstreamer"
43
44using namespace llvm;
45
47 ("gpsize", cl::NotHidden,
48 cl::desc("Global Pointer Addressing Size. The default size is 8."),
50 cl::init(8));
51
53 MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
54 std::unique_ptr<MCObjectWriter> OW, std::unique_ptr<MCCodeEmitter> Emitter)
55 : MCELFStreamer(Context, std::move(TAB), std::move(OW), std::move(Emitter)),
57
59 MCContext &Context, std::unique_ptr<MCAsmBackend> TAB,
60 std::unique_ptr<MCObjectWriter> OW, std::unique_ptr<MCCodeEmitter> Emitter,
61 MCAssembler *Assembler)
62 : MCELFStreamer(Context, std::move(TAB), std::move(OW), std::move(Emitter)),
64
66 const MCSubtargetInfo &STI) {
67 assert(MCB.getOpcode() == Hexagon::BUNDLE);
71 HexagonMCChecker Check(getContext(), *MCII, STI, const_cast<MCInst &>(MCB),
72 *RI);
73 [[maybe_unused]] bool CheckOk = Check.check(false);
74 assert(CheckOk);
75
76 // At this point, MCB is a bundle
77 // Iterate through the bundle and assign addends for the instructions
78 for (auto const &I : HexagonMCInstrInfo::bundleInstructions(MCB)) {
79 MCInst *MCI = const_cast<MCInst *>(I.getInst());
80 EmitSymbol(*MCI);
81 }
82
84}
85
87 // Scan for values.
88 for (unsigned i = Inst.getNumOperands(); i--;)
89 if (Inst.getOperand(i).isExpr())
91}
92
93// EmitCommonSymbol and EmitLocalCommonSymbol are extended versions of the
94// functions found in MCELFStreamer.cpp taking AccessSize as an additional
95// parameter.
98 Align ByteAlignment,
99 unsigned AccessSize) {
100 getAssembler().registerSymbol(*Symbol);
101 StringRef sbss[4] = {".sbss.1", ".sbss.2", ".sbss.4", ".sbss.8"};
102
103 auto ELFSymbol = static_cast<MCSymbolELF *>(Symbol);
104 if (!ELFSymbol->isBindingSet())
105 ELFSymbol->setBinding(ELF::STB_GLOBAL);
106
107 ELFSymbol->setType(ELF::STT_OBJECT);
108
109 if (ELFSymbol->getBinding() == ELF::STB_LOCAL) {
111 ((AccessSize == 0) || (Size == 0) || (Size > GPSize))
112 ? ".bss"
113 : sbss[(Log2_64(AccessSize))];
117 switchSection(&Section);
118
119 if (ELFSymbol->isUndefined()) {
120 emitValueToAlignment(ByteAlignment, 0, 1, 0);
121 emitLabel(Symbol);
123 }
124
125 // Update the maximum alignment of the section if necessary.
126 Section.ensureMinAlignment(ByteAlignment);
127
128 switchSection(P.first, P.second);
129 } else {
130 if (ELFSymbol->declareCommon(Size, ByteAlignment))
131 report_fatal_error("Symbol: " + Symbol->getName() +
132 " redeclared as different type");
133 if ((AccessSize) && (Size <= GPSize)) {
134 uint64_t SectionIndex =
135 (AccessSize <= GPSize)
138 ELFSymbol->setIndex(SectionIndex);
139 }
140 }
141
142 ELFSymbol->setSize(MCConstantExpr::create(Size, getContext()));
143}
144
147 Align ByteAlignment,
148 unsigned AccessSize) {
149 getAssembler().registerSymbol(*Symbol);
150 auto ELFSymbol = static_cast<const MCSymbolELF *>(Symbol);
151 ELFSymbol->setBinding(ELF::STB_LOCAL);
152 HexagonMCEmitCommonSymbol(Symbol, Size, ByteAlignment, AccessSize);
153}
154
155static unsigned featureToArchVersion(unsigned Feature) {
156 switch (Feature) {
157 case Hexagon::ArchV5:
158 return 5;
159 case Hexagon::ArchV55:
160 return 55;
161 case Hexagon::ArchV60:
162 case Hexagon::ExtensionHVXV60:
163 return 60;
164 case Hexagon::ArchV62:
165 case Hexagon::ExtensionHVXV62:
166 return 62;
167 case Hexagon::ArchV65:
168 case Hexagon::ExtensionHVXV65:
169 return 65;
170 case Hexagon::ArchV66:
171 case Hexagon::ExtensionHVXV66:
172 return 66;
173 case Hexagon::ArchV67:
174 case Hexagon::ExtensionHVXV67:
175 return 67;
176 case Hexagon::ArchV68:
177 case Hexagon::ExtensionHVXV68:
178 return 68;
179 case Hexagon::ArchV69:
180 case Hexagon::ExtensionHVXV69:
181 return 69;
182 case Hexagon::ArchV71:
183 case Hexagon::ExtensionHVXV71:
184 return 71;
185 case Hexagon::ArchV73:
186 case Hexagon::ExtensionHVXV73:
187 return 73;
188 case Hexagon::ArchV75:
189 case Hexagon::ExtensionHVXV75:
190 return 75;
191 case Hexagon::ArchV79:
192 case Hexagon::ExtensionHVXV79:
193 return 79;
194 case Hexagon::ArchV81:
195 case Hexagon::ExtensionHVXV81:
196 return 81;
197 }
198 llvm_unreachable("Expected valid arch feature");
199 return 0;
200}
201
203 auto Features = STI.getFeatureBits();
204 unsigned Arch = featureToArchVersion(Hexagon_MC::getArchVersion(Features));
205 std::optional<unsigned> HVXArch = Hexagon_MC::getHVXVersion(Features);
207 if (HVXArch)
209 if (Features.test(Hexagon::ExtensionHVXIEEEFP))
211 if (Features.test(Hexagon::ExtensionHVXQFloat))
213 if (Features.test(Hexagon::ExtensionZReg))
215 if (Features.test(Hexagon::ExtensionAudio))
217 if (Features.test(Hexagon::FeatureCabac))
219}
220
221namespace llvm {
223 std::unique_ptr<MCAsmBackend> MAB,
224 std::unique_ptr<MCObjectWriter> OW,
225 std::unique_ptr<MCCodeEmitter> CE) {
226 return new HexagonMCELFStreamer(Context, std::move(MAB), std::move(OW),
227 std::move(CE));
228 }
229
230} // end namespace llvm
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
dxil DXContainer Global Emitter
static cl::opt< unsigned > GPSize("gpsize", cl::NotHidden, cl::desc("Global Pointer Addressing Size. The default size is 8."), cl::Prefix, cl::init(8))
static unsigned featureToArchVersion(unsigned Feature)
#define HEXAGON_PACKET_SIZE
#define I(x, y, z)
Definition MD5.cpp:57
#define P(N)
Check for a valid bundle.
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)
void emitTargetAttributes(const MCSubtargetInfo &STI)
virtual void emitAttribute(unsigned Attribute, unsigned Value)
MCContext & getContext() const
LLVM_ABI bool registerSymbol(const MCSymbol &Symbol)
static LLVM_ABI const MCConstantExpr * create(int64_t Value, MCContext &Ctx, bool PrintInHex=false, unsigned SizeInBytes=0)
Definition MCExpr.cpp:212
Context object for machine code objects.
Definition MCContext.h:83
MCSectionELF * getELFSection(const Twine &Section, unsigned Type, unsigned Flags)
Definition MCContext.h:553
const MCRegisterInfo * getRegisterInfo() const
Definition MCContext.h:414
void emitLabel(MCSymbol *Symbol, SMLoc Loc=SMLoc()) override
Emit a label for Symbol into the current section.
MCELFStreamer(MCContext &Context, std::unique_ptr< MCAsmBackend > TAB, std::unique_ptr< MCObjectWriter > OW, std::unique_ptr< MCCodeEmitter > Emitter)
Instances of this class represent a single low-level machine instruction.
Definition MCInst.h:188
unsigned getNumOperands() const
Definition MCInst.h:212
unsigned getOpcode() const
Definition MCInst.h:202
const MCOperand & getOperand(unsigned i) const
Definition MCInst.h:210
void emitValueToAlignment(Align Alignment, int64_t Fill=0, uint8_t FillLen=1, unsigned MaxBytesToEmit=0) override
Emit some number of copies of Value until the byte alignment ByteAlignment is reached.
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:118
bool isExpr() const
Definition MCInst.h:69
MCRegisterInfo base class - We assume that the target defines a static array of MCRegisterDesc object...
Instances of this class represent a uniqued identifier for a section in the current translation unit.
Definition MCSection.h:517
Streaming machine code generation interface.
Definition MCStreamer.h:220
MCContext & getContext() const
Definition MCStreamer.h:314
virtual void switchSection(MCSection *Section, uint32_t Subsec=0)
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:416
void emitZeros(uint64_t NumBytes)
Emit NumBytes worth of zeros.
void visitUsedExpr(const MCExpr &Expr)
Generic base class for all target subtargets.
const FeatureBitset & getFeatureBits() const
void setBinding(unsigned Binding) const
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
Definition MCSymbol.h:42
StringRef - Represent a constant reference to a string, i.e.
Definition StringRef.h:55
Triple - Helper class for working with autoconf configuration names.
Definition Triple.h:47
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ SHF_ALLOC
Definition ELF.h:1248
@ SHF_WRITE
Definition ELF.h:1245
@ SHN_HEXAGON_SCOMMON
Definition ELF.h:691
@ SHT_NOBITS
Definition ELF.h:1154
@ STB_GLOBAL
Definition ELF.h:1405
@ STB_LOCAL
Definition ELF.h:1404
@ STT_OBJECT
Definition ELF.h:1417
size_t bundleSize(MCInst const &MCI)
iterator_range< Hexagon::PacketIterator > bundleInstructions(MCInstrInfo const &MCII, MCInst const &MCI)
unsigned getArchVersion(const FeatureBitset &Features)
std::optional< unsigned > getHVXVersion(const FeatureBitset &Features)
initializer< Ty > init(const Ty &Val)
This is an optimization pass for GlobalISel generic memory operations.
int bit_width(T Value)
Returns the number of bits needed to represent Value if Value is nonzero.
Definition bit.h:303
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:337
LLVM_ABI void report_fatal_error(Error Err, bool gen_crash_diag=true)
Definition Error.cpp:167
MCInstrInfo * createHexagonMCInstrInfo()
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:1879
MCStreamer * createHexagonELFStreamer(Triple const &TT, MCContext &Context, std::unique_ptr< MCAsmBackend > MAB, std::unique_ptr< MCObjectWriter > OW, std::unique_ptr< MCCodeEmitter > CE)
std::pair< MCSection *, uint32_t > MCSectionSubPair
Definition MCStreamer.h:66
Implement std::hash so that hash_code can be used in STL containers.
Definition BitVector.h:870
This struct is a compact representation of a valid (non-zero power of two) alignment.
Definition Alignment.h:39