1 //===- MCFragment.h - Fragment type hierarchy -------------------*- C++ -*-===//
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
7 //===----------------------------------------------------------------------===//
9 #ifndef LLVM_MC_MCFRAGMENT_H
10 #define LLVM_MC_MCFRAGMENT_H
12 #include "llvm/ADT/ArrayRef.h"
13 #include "llvm/ADT/SmallString.h"
14 #include "llvm/ADT/SmallVector.h"
15 #include "llvm/ADT/StringRef.h"
16 #include "llvm/ADT/ilist_node.h"
17 #include "llvm/MC/MCFixup.h"
18 #include "llvm/MC/MCInst.h"
19 #include "llvm/Support/Casting.h"
20 #include "llvm/Support/SMLoc.h"
27 class MCSubtargetInfo
;
30 class MCFragment
: public ilist_node_with_parent
<MCFragment
, MCSection
> {
31 friend class MCAsmLayout
;
34 enum FragmentType
: uint8_t {
37 FT_CompactEncodedInst
,
58 /// LayoutOrder - The layout order of this fragment.
61 /// The data for the section this fragment is in.
64 /// Atom - The atom this fragment is in, as represented by its defining
68 /// \name Assembler Backend Data
71 // FIXME: This could all be kept private to the assembler implementation.
73 /// Offset - The offset of this fragment in its section. This is ~0 until
80 MCFragment(FragmentType Kind
, bool HasInstructions
,
81 MCSection
*Parent
= nullptr);
86 MCFragment() = delete;
87 MCFragment(const MCFragment
&) = delete;
88 MCFragment
&operator=(const MCFragment
&) = delete;
90 /// Destroys the current fragment.
92 /// This must be used instead of delete as MCFragment is non-virtual.
93 /// This method will dispatch to the appropriate subclass.
96 FragmentType
getKind() const { return Kind
; }
98 MCSection
*getParent() const { return Parent
; }
99 void setParent(MCSection
*Value
) { Parent
= Value
; }
101 const MCSymbol
*getAtom() const { return Atom
; }
102 void setAtom(const MCSymbol
*Value
) { Atom
= Value
; }
104 unsigned getLayoutOrder() const { return LayoutOrder
; }
105 void setLayoutOrder(unsigned Value
) { LayoutOrder
= Value
; }
107 /// Does this fragment have instructions emitted into it? By default
108 /// this is false, but specific fragment types may set it to true.
109 bool hasInstructions() const { return HasInstructions
; }
111 /// Return true if given frgment has FT_Dummy type.
112 bool isDummy() const { return Kind
== FT_Dummy
; }
117 class MCDummyFragment
: public MCFragment
{
119 explicit MCDummyFragment(MCSection
*Sec
) : MCFragment(FT_Dummy
, false, Sec
) {}
121 static bool classof(const MCFragment
*F
) { return F
->getKind() == FT_Dummy
; }
124 /// Interface implemented by fragments that contain encoded instructions and/or
127 class MCEncodedFragment
: public MCFragment
{
128 /// Should this fragment be aligned to the end of a bundle?
129 bool AlignToBundleEnd
= false;
131 uint8_t BundlePadding
= 0;
134 MCEncodedFragment(MCFragment::FragmentType FType
, bool HasInstructions
,
136 : MCFragment(FType
, HasInstructions
, Sec
) {}
138 /// STI - The MCSubtargetInfo in effect when the instruction was encoded.
139 /// must be non-null for instructions.
140 const MCSubtargetInfo
*STI
= nullptr;
143 static bool classof(const MCFragment
*F
) {
144 MCFragment::FragmentType Kind
= F
->getKind();
148 case MCFragment::FT_Relaxable
:
149 case MCFragment::FT_CompactEncodedInst
:
150 case MCFragment::FT_Data
:
151 case MCFragment::FT_Dwarf
:
156 /// Should this fragment be placed at the end of an aligned bundle?
157 bool alignToBundleEnd() const { return AlignToBundleEnd
; }
158 void setAlignToBundleEnd(bool V
) { AlignToBundleEnd
= V
; }
160 /// Get the padding size that must be inserted before this fragment.
161 /// Used for bundling. By default, no padding is inserted.
162 /// Note that padding size is restricted to 8 bits. This is an optimization
163 /// to reduce the amount of space used for each fragment. In practice, larger
164 /// padding should never be required.
165 uint8_t getBundlePadding() const { return BundlePadding
; }
167 /// Set the padding size for this fragment. By default it's a no-op,
168 /// and only some fragments have a meaningful implementation.
169 void setBundlePadding(uint8_t N
) { BundlePadding
= N
; }
171 /// Retrieve the MCSubTargetInfo in effect when the instruction was encoded.
172 /// Guaranteed to be non-null if hasInstructions() == true
173 const MCSubtargetInfo
*getSubtargetInfo() const { return STI
; }
175 /// Record that the fragment contains instructions with the MCSubtargetInfo in
176 /// effect when the instruction was encoded.
177 void setHasInstructions(const MCSubtargetInfo
&STI
) {
178 HasInstructions
= true;
183 /// Interface implemented by fragments that contain encoded instructions and/or
186 template<unsigned ContentsSize
>
187 class MCEncodedFragmentWithContents
: public MCEncodedFragment
{
188 SmallVector
<char, ContentsSize
> Contents
;
191 MCEncodedFragmentWithContents(MCFragment::FragmentType FType
,
192 bool HasInstructions
,
194 : MCEncodedFragment(FType
, HasInstructions
, Sec
) {}
197 SmallVectorImpl
<char> &getContents() { return Contents
; }
198 const SmallVectorImpl
<char> &getContents() const { return Contents
; }
201 /// Interface implemented by fragments that contain encoded instructions and/or
202 /// data and also have fixups registered.
204 template<unsigned ContentsSize
, unsigned FixupsSize
>
205 class MCEncodedFragmentWithFixups
:
206 public MCEncodedFragmentWithContents
<ContentsSize
> {
208 /// Fixups - The list of fixups in this fragment.
209 SmallVector
<MCFixup
, FixupsSize
> Fixups
;
212 MCEncodedFragmentWithFixups(MCFragment::FragmentType FType
,
213 bool HasInstructions
,
215 : MCEncodedFragmentWithContents
<ContentsSize
>(FType
, HasInstructions
,
220 using const_fixup_iterator
= SmallVectorImpl
<MCFixup
>::const_iterator
;
221 using fixup_iterator
= SmallVectorImpl
<MCFixup
>::iterator
;
223 SmallVectorImpl
<MCFixup
> &getFixups() { return Fixups
; }
224 const SmallVectorImpl
<MCFixup
> &getFixups() const { return Fixups
; }
226 fixup_iterator
fixup_begin() { return Fixups
.begin(); }
227 const_fixup_iterator
fixup_begin() const { return Fixups
.begin(); }
229 fixup_iterator
fixup_end() { return Fixups
.end(); }
230 const_fixup_iterator
fixup_end() const { return Fixups
.end(); }
232 static bool classof(const MCFragment
*F
) {
233 MCFragment::FragmentType Kind
= F
->getKind();
234 return Kind
== MCFragment::FT_Relaxable
|| Kind
== MCFragment::FT_Data
||
235 Kind
== MCFragment::FT_CVDefRange
|| Kind
== MCFragment::FT_Dwarf
;;
239 /// Fragment for data and encoded instructions.
241 class MCDataFragment
: public MCEncodedFragmentWithFixups
<32, 4> {
243 MCDataFragment(MCSection
*Sec
= nullptr)
244 : MCEncodedFragmentWithFixups
<32, 4>(FT_Data
, false, Sec
) {}
246 static bool classof(const MCFragment
*F
) {
247 return F
->getKind() == MCFragment::FT_Data
;
251 /// This is a compact (memory-size-wise) fragment for holding an encoded
252 /// instruction (non-relaxable) that has no fixups registered. When applicable,
253 /// it can be used instead of MCDataFragment and lead to lower memory
256 class MCCompactEncodedInstFragment
: public MCEncodedFragmentWithContents
<4> {
258 MCCompactEncodedInstFragment(MCSection
*Sec
= nullptr)
259 : MCEncodedFragmentWithContents(FT_CompactEncodedInst
, true, Sec
) {
262 static bool classof(const MCFragment
*F
) {
263 return F
->getKind() == MCFragment::FT_CompactEncodedInst
;
267 /// A relaxable fragment holds on to its MCInst, since it may need to be
268 /// relaxed during the assembler layout and relaxation stage.
270 class MCRelaxableFragment
: public MCEncodedFragmentWithFixups
<8, 1> {
272 /// Inst - The instruction this is a fragment for.
276 MCRelaxableFragment(const MCInst
&Inst
, const MCSubtargetInfo
&STI
,
277 MCSection
*Sec
= nullptr)
278 : MCEncodedFragmentWithFixups(FT_Relaxable
, true, Sec
),
279 Inst(Inst
) { this->STI
= &STI
; }
281 const MCInst
&getInst() const { return Inst
; }
282 void setInst(const MCInst
&Value
) { Inst
= Value
; }
284 static bool classof(const MCFragment
*F
) {
285 return F
->getKind() == MCFragment::FT_Relaxable
;
289 class MCAlignFragment
: public MCFragment
{
290 /// Alignment - The alignment to ensure, in bytes.
293 /// EmitNops - Flag to indicate that (optimal) NOPs should be emitted instead
294 /// of using the provided value. The exact interpretation of this flag is
295 /// target dependent.
298 /// Value - Value to use for filling padding bytes.
301 /// ValueSize - The size of the integer (in bytes) of \p Value.
304 /// MaxBytesToEmit - The maximum number of bytes to emit; if the alignment
305 /// cannot be satisfied in this width then this fragment is ignored.
306 unsigned MaxBytesToEmit
;
309 MCAlignFragment(unsigned Alignment
, int64_t Value
, unsigned ValueSize
,
310 unsigned MaxBytesToEmit
, MCSection
*Sec
= nullptr)
311 : MCFragment(FT_Align
, false, Sec
), Alignment(Alignment
), EmitNops(false),
312 Value(Value
), ValueSize(ValueSize
), MaxBytesToEmit(MaxBytesToEmit
) {}
317 unsigned getAlignment() const { return Alignment
; }
319 int64_t getValue() const { return Value
; }
321 unsigned getValueSize() const { return ValueSize
; }
323 unsigned getMaxBytesToEmit() const { return MaxBytesToEmit
; }
325 bool hasEmitNops() const { return EmitNops
; }
326 void setEmitNops(bool Value
) { EmitNops
= Value
; }
330 static bool classof(const MCFragment
*F
) {
331 return F
->getKind() == MCFragment::FT_Align
;
335 /// Fragment for adding required padding.
336 /// This fragment is always inserted before an instruction, and holds that
337 /// instruction as context information (as well as a mask of kinds) for
338 /// determining the padding size.
340 class MCPaddingFragment
: public MCFragment
{
341 /// A mask containing all the kinds relevant to this fragment. i.e. the i'th
342 /// bit will be set iff kind i is relevant to this fragment.
343 uint64_t PaddingPoliciesMask
;
344 /// A boolean indicating if this fragment will actually hold padding. If its
345 /// value is false, then this fragment serves only as a placeholder,
346 /// containing data to assist other insertion point in their decision making.
347 bool IsInsertionPoint
;
354 /// A boolean indicating whether the instruction pointed by this fragment is
355 /// a fixed size instruction or a relaxable instruction held by a
356 /// MCRelaxableFragment.
357 bool IsImmutableSizedInst
;
359 /// If the instruction is a fixed size instruction, hold its size.
361 /// Otherwise, hold a pointer to the MCRelaxableFragment holding it.
362 MCRelaxableFragment
*InstFragment
;
368 static const uint64_t PFK_None
= UINT64_C(0);
370 enum MCPaddingFragmentKind
{
371 // values 0-7 are reserved for future target independet values.
373 FirstTargetPerfNopFragmentKind
= 8,
375 /// Limit range of target MCPerfNopFragment kinds to fit in uint64_t
376 MaxTargetPerfNopFragmentKind
= 63
379 MCPaddingFragment(MCSection
*Sec
= nullptr)
380 : MCFragment(FT_Padding
, false, Sec
), PaddingPoliciesMask(PFK_None
),
381 IsInsertionPoint(false), Size(UINT64_C(0)),
382 InstInfo({false, MCInst(), false, {0}}) {}
384 bool isInsertionPoint() const { return IsInsertionPoint
; }
385 void setAsInsertionPoint() { IsInsertionPoint
= true; }
386 uint64_t getPaddingPoliciesMask() const { return PaddingPoliciesMask
; }
387 void setPaddingPoliciesMask(uint64_t Value
) { PaddingPoliciesMask
= Value
; }
388 bool hasPaddingPolicy(uint64_t PolicyMask
) const {
389 assert(isPowerOf2_64(PolicyMask
) &&
390 "Policy mask must contain exactly one policy");
391 return (getPaddingPoliciesMask() & PolicyMask
) != PFK_None
;
393 const MCInst
&getInst() const {
394 assert(isInstructionInitialized() && "Fragment has no instruction!");
395 return InstInfo
.Inst
;
397 size_t getInstSize() const {
398 assert(isInstructionInitialized() && "Fragment has no instruction!");
399 if (InstInfo
.IsImmutableSizedInst
)
400 return InstInfo
.InstSize
;
401 assert(InstInfo
.InstFragment
!= nullptr &&
402 "Must have a valid InstFragment to retrieve InstSize from");
403 return InstInfo
.InstFragment
->getContents().size();
405 void setInstAndInstSize(const MCInst
&Inst
, size_t InstSize
) {
406 InstInfo
.IsInitialized
= true;
407 InstInfo
.IsImmutableSizedInst
= true;
408 InstInfo
.Inst
= Inst
;
409 InstInfo
.InstSize
= InstSize
;
411 void setInstAndInstFragment(const MCInst
&Inst
,
412 MCRelaxableFragment
*InstFragment
) {
413 InstInfo
.IsInitialized
= true;
414 InstInfo
.IsImmutableSizedInst
= false;
415 InstInfo
.Inst
= Inst
;
416 InstInfo
.InstFragment
= InstFragment
;
418 uint64_t getSize() const { return Size
; }
419 void setSize(uint64_t Value
) { Size
= Value
; }
420 bool isInstructionInitialized() const { return InstInfo
.IsInitialized
; }
422 static bool classof(const MCFragment
*F
) {
423 return F
->getKind() == MCFragment::FT_Padding
;
427 class MCFillFragment
: public MCFragment
{
428 /// Value to use for filling bytes.
431 /// The number of bytes to insert.
432 const MCExpr
&NumValues
;
434 /// Source location of the directive that this fragment was created for.
438 MCFillFragment(uint64_t Value
, uint8_t VSize
, const MCExpr
&NumValues
,
439 SMLoc Loc
, MCSection
*Sec
= nullptr)
440 : MCFragment(FT_Fill
, false, Sec
), Value(Value
), ValueSize(VSize
),
441 NumValues(NumValues
), Loc(Loc
) {}
443 uint64_t getValue() const { return Value
; }
444 uint8_t getValueSize() const { return ValueSize
; }
445 const MCExpr
&getNumValues() const { return NumValues
; }
447 SMLoc
getLoc() const { return Loc
; }
449 static bool classof(const MCFragment
*F
) {
450 return F
->getKind() == MCFragment::FT_Fill
;
454 class MCOrgFragment
: public MCFragment
{
455 /// The offset this fragment should start at.
456 const MCExpr
*Offset
;
458 /// Value to use for filling bytes.
461 /// Source location of the directive that this fragment was created for.
465 MCOrgFragment(const MCExpr
&Offset
, int8_t Value
, SMLoc Loc
,
466 MCSection
*Sec
= nullptr)
467 : MCFragment(FT_Org
, false, Sec
), Offset(&Offset
), Value(Value
), Loc(Loc
) {}
472 const MCExpr
&getOffset() const { return *Offset
; }
474 uint8_t getValue() const { return Value
; }
476 SMLoc
getLoc() const { return Loc
; }
480 static bool classof(const MCFragment
*F
) {
481 return F
->getKind() == MCFragment::FT_Org
;
485 class MCLEBFragment
: public MCFragment
{
486 /// Value - The value this fragment should contain.
489 /// IsSigned - True if this is a sleb128, false if uleb128.
492 SmallString
<8> Contents
;
495 MCLEBFragment(const MCExpr
&Value_
, bool IsSigned_
, MCSection
*Sec
= nullptr)
496 : MCFragment(FT_LEB
, false, Sec
), Value(&Value_
), IsSigned(IsSigned_
) {
497 Contents
.push_back(0);
503 const MCExpr
&getValue() const { return *Value
; }
505 bool isSigned() const { return IsSigned
; }
507 SmallString
<8> &getContents() { return Contents
; }
508 const SmallString
<8> &getContents() const { return Contents
; }
512 static bool classof(const MCFragment
*F
) {
513 return F
->getKind() == MCFragment::FT_LEB
;
517 class MCDwarfLineAddrFragment
: public MCEncodedFragmentWithFixups
<8, 1> {
518 /// LineDelta - the value of the difference between the two line numbers
519 /// between two .loc dwarf directives.
522 /// AddrDelta - The expression for the difference of the two symbols that
523 /// make up the address delta between two .loc dwarf directives.
524 const MCExpr
*AddrDelta
;
527 MCDwarfLineAddrFragment(int64_t LineDelta
, const MCExpr
&AddrDelta
,
528 MCSection
*Sec
= nullptr)
529 : MCEncodedFragmentWithFixups
<8, 1>(FT_Dwarf
, false, Sec
),
530 LineDelta(LineDelta
), AddrDelta(&AddrDelta
) {}
535 int64_t getLineDelta() const { return LineDelta
; }
537 const MCExpr
&getAddrDelta() const { return *AddrDelta
; }
541 static bool classof(const MCFragment
*F
) {
542 return F
->getKind() == MCFragment::FT_Dwarf
;
546 class MCDwarfCallFrameFragment
: public MCFragment
{
547 /// AddrDelta - The expression for the difference of the two symbols that
548 /// make up the address delta between two .cfi_* dwarf directives.
549 const MCExpr
*AddrDelta
;
551 SmallString
<8> Contents
;
554 MCDwarfCallFrameFragment(const MCExpr
&AddrDelta
, MCSection
*Sec
= nullptr)
555 : MCFragment(FT_DwarfFrame
, false, Sec
), AddrDelta(&AddrDelta
) {
556 Contents
.push_back(0);
562 const MCExpr
&getAddrDelta() const { return *AddrDelta
; }
564 SmallString
<8> &getContents() { return Contents
; }
565 const SmallString
<8> &getContents() const { return Contents
; }
569 static bool classof(const MCFragment
*F
) {
570 return F
->getKind() == MCFragment::FT_DwarfFrame
;
574 /// Represents a symbol table index fragment.
575 class MCSymbolIdFragment
: public MCFragment
{
579 MCSymbolIdFragment(const MCSymbol
*Sym
, MCSection
*Sec
= nullptr)
580 : MCFragment(FT_SymbolId
, false, Sec
), Sym(Sym
) {}
585 const MCSymbol
*getSymbol() { return Sym
; }
586 const MCSymbol
*getSymbol() const { return Sym
; }
590 static bool classof(const MCFragment
*F
) {
591 return F
->getKind() == MCFragment::FT_SymbolId
;
595 /// Fragment representing the binary annotations produced by the
596 /// .cv_inline_linetable directive.
597 class MCCVInlineLineTableFragment
: public MCFragment
{
599 unsigned StartFileId
;
600 unsigned StartLineNum
;
601 const MCSymbol
*FnStartSym
;
602 const MCSymbol
*FnEndSym
;
603 SmallString
<8> Contents
;
605 /// CodeViewContext has the real knowledge about this format, so let it access
607 friend class CodeViewContext
;
610 MCCVInlineLineTableFragment(unsigned SiteFuncId
, unsigned StartFileId
,
611 unsigned StartLineNum
, const MCSymbol
*FnStartSym
,
612 const MCSymbol
*FnEndSym
,
613 MCSection
*Sec
= nullptr)
614 : MCFragment(FT_CVInlineLines
, false, Sec
), SiteFuncId(SiteFuncId
),
615 StartFileId(StartFileId
), StartLineNum(StartLineNum
),
616 FnStartSym(FnStartSym
), FnEndSym(FnEndSym
) {}
621 const MCSymbol
*getFnStartSym() const { return FnStartSym
; }
622 const MCSymbol
*getFnEndSym() const { return FnEndSym
; }
624 SmallString
<8> &getContents() { return Contents
; }
625 const SmallString
<8> &getContents() const { return Contents
; }
629 static bool classof(const MCFragment
*F
) {
630 return F
->getKind() == MCFragment::FT_CVInlineLines
;
634 /// Fragment representing the .cv_def_range directive.
635 class MCCVDefRangeFragment
: public MCEncodedFragmentWithFixups
<32, 4> {
636 SmallVector
<std::pair
<const MCSymbol
*, const MCSymbol
*>, 2> Ranges
;
637 SmallString
<32> FixedSizePortion
;
639 /// CodeViewContext has the real knowledge about this format, so let it access
641 friend class CodeViewContext
;
644 MCCVDefRangeFragment(
645 ArrayRef
<std::pair
<const MCSymbol
*, const MCSymbol
*>> Ranges
,
646 StringRef FixedSizePortion
, MCSection
*Sec
= nullptr)
647 : MCEncodedFragmentWithFixups
<32, 4>(FT_CVDefRange
, false, Sec
),
648 Ranges(Ranges
.begin(), Ranges
.end()),
649 FixedSizePortion(FixedSizePortion
) {}
653 ArrayRef
<std::pair
<const MCSymbol
*, const MCSymbol
*>> getRanges() const {
657 StringRef
getFixedSizePortion() const { return FixedSizePortion
; }
660 static bool classof(const MCFragment
*F
) {
661 return F
->getKind() == MCFragment::FT_CVDefRange
;
665 } // end namespace llvm
667 #endif // LLVM_MC_MCFRAGMENT_H