13#ifndef LLVM_MC_MCSECTION_H
14#define LLVM_MC_MCSECTION_H
80 unsigned LayoutOrder = 0;
89 bool LinkerRelaxable : 1;
92 bool HasInstructions : 1;
94 bool AllowAutoPadding : 1;
129 unsigned MaxBytesToEmit;
142 const MCExpr *AddrDelta;
149 const MCExpr *AddrDelta;
157 bool HasInstructions =
false);
186 HasInstructions =
true;
208 size_t getVarSize()
const {
return VarContentEnd - VarContentStart; }
210 return FixedSize + (VarContentEnd - VarContentStart);
231 return u.relax.Opcode;
239 unsigned MaxBytesToEmit) {
241 u.align.EmitNops =
false;
242 u.align.Alignment = Alignment;
244 u.align.FillLen = FillLen;
245 u.align.MaxBytesToEmit = MaxBytesToEmit;
250 return u.align.Alignment;
258 return u.align.FillLen;
262 return u.align.MaxBytesToEmit;
266 return u.align.EmitNops;
273 u.leb.IsSigned = IsSigned;
286 return u.leb.IsSigned;
292 return *u.dwarf.AddrDelta;
296 u.dwarf.AddrDelta =
E;
300 return u.dwarf.LineDelta;
304 u.dwarf.LineDelta = LineDelta;
310 return *u.sframe.AddrDelta;
314 u.sframe.AddrDelta =
E;
318 return u.sframe.FDEFragment;
322 u.sframe.FDEFragment =
F;
343 NumValues(NumValues), Loc(Loc) {}
360 int64_t ControlledNopLength;
372 ControlledNopLength(ControlledNopLength), Loc(L), STI(STI) {}
429 unsigned StartFileId;
430 unsigned StartLineNum;
440 unsigned StartLineNum,
const MCSymbol *FnStartSym,
443 StartFileId(StartFileId), StartLineNum(StartLineNum),
444 FnStartSym(FnStartSym), FnEndSym(FnEndSym) {}
465 ArrayRef<std::pair<const MCSymbol *, const MCSymbol *>> Ranges,
468 FixedSizePortion(FixedSizePortion) {}
554 unsigned Ordinal = 0;
558 unsigned FirstLinkerRelaxable = -1u;
561 bool HasInstructions : 1;
563 bool IsRegistered : 1;
602 bool hasEnded()
const;
609 if (Alignment < MinAlignment)
610 Alignment = MinAlignment;
633 *FragToSyms =
nullptr)
const;
641 return {
reinterpret_cast<char *
>(
this + 1), FixedSize};
644 return {
reinterpret_cast<const char *
>(
this + 1), FixedSize};
649 .
slice(VarContentStart, VarContentEnd - VarContentStart);
653 .
slice(VarContentStart, VarContentEnd - VarContentStart);
660 .
slice(FixupStart, FixupEnd - FixupStart);
664 .
slice(FixupStart, FixupEnd - FixupStart);
669 .
slice(VarFixupStart, VarFixupSize);
679 .slice(u.relax.OperandStart, u.relax.OperandSize);
687 .slice(u.relax.OperandStart, u.relax.OperandSize));
696 u.relax.OperandStart = S.size();
assert(UImm &&(UImm !=~static_cast< T >(0)) &&"Invalid immediate!")
static GCRegistry::Add< CoreCLRGC > E("coreclr", "CoreCLR-compatible GC")
This file defines the DenseMap class.
PowerPC TLS Dynamic Call Fixup
This file defines the SmallString class.
This file defines the SmallVector class.
ArrayRef - Represent a constant reference to an array (0 or more elements consecutively in memory),...
ArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
This class is intended to be used as a base class for asm properties and features specific to the tar...
MCBoundaryAlignFragment(Align AlignBoundary, const MCSubtargetInfo &STI)
void setAlignment(Align Value)
void setSize(uint64_t Value)
const MCFragment * getLastFragment() const
const MCSubtargetInfo * getSubtargetInfo() const
static bool classof(const MCFragment *F)
Align getAlignment() const
void setLastFragment(const MCFragment *F)
MCCVDefRangeFragment(ArrayRef< std::pair< const MCSymbol *, const MCSymbol * > > Ranges, StringRef FixedSizePortion)
ArrayRef< std::pair< const MCSymbol *, const MCSymbol * > > getRanges() const
static bool classof(const MCFragment *F)
StringRef getFixedSizePortion() const
friend class CodeViewContext
CodeViewContext has the real knowledge about this format, so let it access our members.
static bool classof(const MCFragment *F)
MCCVInlineLineTableFragment(unsigned SiteFuncId, unsigned StartFileId, unsigned StartLineNum, const MCSymbol *FnStartSym, const MCSymbol *FnEndSym)
const MCSymbol * getFnStartSym() const
friend class CodeViewContext
CodeViewContext has the real knowledge about this format, so let it access our members.
const MCSymbol * getFnEndSym() const
Context object for machine code objects.
Base class for the full range of assembler expressions which are needed for parsing.
MCFillFragment(uint64_t Value, uint8_t VSize, const MCExpr &NumValues, SMLoc Loc)
uint8_t getValueSize() const
uint64_t getValue() const
static bool classof(const MCFragment *F)
const MCExpr & getNumValues() const
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
const MCExpr & getDwarfAddrDelta() const
MutableArrayRef< char > getContents()
MCFragment * getSFrameFDE() const
bool getAllowAutoPadding() const
FragmentType getKind() const
bool isLinkerRelaxable() const
void setAllowAutoPadding(bool V)
unsigned getLayoutOrder() const
LLVM_ABI MCFragment(FragmentType Kind=MCFragment::FT_Data, bool HasInstructions=false)
bool hasAlignEmitNops() const
friend class MCObjectStreamer
void setSFrameAddrDelta(const MCExpr *E)
void setParent(MCSection *Value)
LLVM_ABI const MCSymbol * getAtom() const
LLVM_ABI void appendFixups(ArrayRef< MCFixup > Fixups)
void setDwarfLineDelta(int64_t LineDelta)
unsigned getAlignMaxBytesToEmit() const
int64_t getDwarfLineDelta() const
unsigned getOpcode() const
MutableArrayRef< MCFixup > getFixups()
void setLayoutOrder(unsigned Value)
void setSFrameFDE(MCFragment *F)
const MCExpr & getLEBValue() const
LLVM_ABI void dump() const
MCSection * getParent() const
void makeAlign(Align Alignment, int64_t Fill, uint8_t FillLen, unsigned MaxBytesToEmit)
LLVM_ABI void setVarFixups(ArrayRef< MCFixup > Fixups)
MCFragment * getNext() const
MCFragment(const MCFragment &)=delete
ArrayRef< MCOperand > getOperands() const
LLVM_ABI void addFixup(MCFixup Fixup)
void setLinkerRelaxable()
Align getAlignment() const
size_t getFixedSize() const
int64_t getAlignFill() const
MCFragment & operator=(const MCFragment &)=delete
void makeLEB(bool IsSigned, const MCExpr *Value)
bool hasInstructions() const
Does this fragment have instructions emitted into it?
uint8_t getAlignFillLen() const
void setDwarfAddrDelta(const MCExpr *E)
void setLEBValue(const MCExpr *Expr)
size_t getVarSize() const
LLVM_ABI void setVarContents(ArrayRef< char > Contents)
MutableArrayRef< char > getVarContents()
const MCSubtargetInfo * getSubtargetInfo() const
Retrieve the MCSubTargetInfo in effect when the instruction was encoded.
void setHasInstructions(const MCSubtargetInfo &STI)
Record that the fragment contains instructions with the MCSubtargetInfo in effect when the instructio...
const MCExpr & getSFrameAddrDelta() const
MutableArrayRef< MCFixup > getVarFixups()
void setInst(const MCInst &Inst)
Instances of this class represent a single low-level machine instruction.
unsigned getNumOperands() const
unsigned getFlags() const
unsigned getOpcode() const
void setFlags(unsigned F)
void setOperands(ArrayRef< MCOperand > Ops)
void setOpcode(unsigned Op)
int64_t getControlledNopLength() const
int64_t getNumBytes() const
MCNopsFragment(int64_t NumBytes, int64_t ControlledNopLength, SMLoc L, const MCSubtargetInfo &STI)
static bool classof(const MCFragment *F)
const MCSubtargetInfo * getSubtargetInfo() const
Streaming object file generation interface.
static bool classof(const MCFragment *F)
const MCExpr & getOffset() const
MCOrgFragment(const MCExpr &Offset, int8_t Value, SMLoc Loc)
Instances of this class represent a uniqued identifier for a section in the current translation unit.
void setAlignment(Align Value)
unsigned getOrdinal() const
void ensureMinAlignment(Align MinAlignment)
Makes sure that Alignment is at least MinAlignment.
bool isBssSection() const
Check whether this section is "virtual", that is has no actual object file contents.
bool isLinkerRelaxable() const
static constexpr unsigned NonUniqueID
const MCSymbol * getBeginSymbol() const
bool hasInstructions() const
bool isRegistered() const
void setHasInstructions(bool Value)
void setBeginSymbol(MCSymbol *Sym)
MCSection(const MCSection &)=delete
void setOrdinal(unsigned Value)
MCSection & operator=(const MCSection &)=delete
StringRef getName() const
MCFragment & getDummyFragment()
unsigned firstLinkerRelaxable() const
FragList * curFragList() const
MCSymbol * getBeginSymbol()
MCSection(StringRef Name, bool IsText, bool IsBss, MCSymbol *Begin)
void setIsRegistered(bool Value)
void setFirstLinkerRelaxable(unsigned Order)
Generic base class for all target subtargets.
const MCSymbol * getSymbol() const
MCSymbolIdFragment(const MCSymbol *Sym)
static bool classof(const MCFragment *F)
const MCSymbol * getSymbol()
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
MutableArrayRef - Represent a mutable reference to an array (0 or more elements consecutively in memo...
MutableArrayRef< T > slice(size_t N, size_t M) const
slice(n, m) - Chop off the first N elements of the array, and keep M elements in the array.
Represents a location in source code.
This is a 'vector' (really, a variable-sized array), optimized for the case when the array is small.
StringRef - Represent a constant reference to a string, i.e.
Triple - Helper class for working with autoconf configuration names.
LLVM Value Representation.
This class implements an extremely fast bulk output stream that can only output to a stream.
@ Tail
Attemps to make calls as fast as possible while guaranteeing that tail call optimization can always b...
This is an optimization pass for GlobalISel generic memory operations.
void dump(const SparseBitVector< ElementSize > &LHS, raw_ostream &out)
MutableArrayRef(T &OneElt) -> MutableArrayRef< T >
FunctionAddr VTableAddr Next
ArrayRef(const T &OneElt) -> ArrayRef< T >
OutputIt copy(R &&Range, OutputIt Out)
This struct is a compact representation of a valid (non-zero power of two) alignment.
MCFragment & operator*() const
bool operator==(const iterator &O) const
bool operator!=(const iterator &O) const