43#define DEBUG_TYPE "mc"
47 IndirectSymBase.clear();
48 IndirectSymbols.clear();
50 SectionAddress.
clear();
53 LocalSymbolData.clear();
54 ExternalSymbolData.clear();
55 UndefinedSymbolData.clear();
57 VersionInfo.Major = 0;
59 TargetVariantVersionInfo.Major = 0;
61 LinkerOptions.clear();
72 if (cast<MCSymbolMachO>(S).isWeakDefinition())
79bool MachObjectWriter::
80MachSymbolData::operator<(
const MachSymbolData &RHS)
const {
81 return Symbol->getName() <
RHS.Symbol->
getName();
95 Asm.getFragmentOffset(*Fragment);
104 return C->getValue();
112 if (
Target.getSymA() &&
Target.getSymA()->getSymbol().isUndefined())
115 if (
Target.getSymB() &&
Target.getSymB()->getSymbol().isUndefined())
128 Asm.getSymbolOffset(S);
134 unsigned Next = cast<MCSectionMachO>(Sec)->getLayoutOrder() + 1;
135 if (Next >= SectionOrder.
size())
138 const MCSection &NextSec = *SectionOrder[Next];
146 if (!Symbol.isTemporary())
149 if (Symbol.isUsedInReloc())
175 unsigned NumLoadCommands,
176 unsigned LoadCommandsSize,
177 bool SubsectionsViaSymbols) {
193 uint32_t Cpusubtype = TargetObjectWriter->getCPUSubtype();
236 unsigned SegmentLoadCommandSize =
244 writeWithPadding(
Name, 16);
268 uint64_t FileOffset,
unsigned Flags,
270 unsigned NumRelocations) {
271 uint64_t SectionSize = Asm.getSectionAddressSize(Sec);
275 if (Section.isVirtualSection()) {
276 assert(Asm.getSectionFileSize(Sec) == 0 &&
"Invalid file size!");
286 writeWithPadding(Section.getName(), 16);
287 writeWithPadding(Section.getSegmentName(), 16);
295 assert(isUInt<32>(FileOffset) &&
"Cannot encode offset of section");
299 assert((!NumRelocations || isUInt<32>(RelocationsStart)) &&
300 "Cannot encode offset of relocations");
369MachObjectWriter::MachSymbolData *
370MachObjectWriter::findSymbolData(
const MCSymbol &
Sym) {
371 for (
auto *SymbolData :
372 {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData})
373 for (MachSymbolData &Entry : *SymbolData)
374 if (Entry.Symbol == &
Sym)
384 const auto *
Ref = dyn_cast<MCSymbolRefExpr>(
Value);
387 S = &
Ref->getSymbol();
393 const MCSymbol *Symbol = MSD.Symbol;
394 const auto &
Data = cast<MCSymbolMachO>(*Symbol);
396 uint8_t SectionIndex = MSD.SectionIndex;
399 bool IsAlias = Symbol != AliasedSymbol;
401 const MCSymbol &OrigSymbol = *Symbol;
402 MachSymbolData *AliaseeInfo;
404 AliaseeInfo = findSymbolData(*AliasedSymbol);
406 SectionIndex = AliaseeInfo->SectionIndex;
407 Symbol = AliasedSymbol;
414 if (IsAlias && Symbol->isUndefined())
416 else if (Symbol->isUndefined())
418 else if (Symbol->isAbsolute())
425 if (
Data.isPrivateExtern())
429 if (
Data.isExternal() || (!IsAlias && Symbol->isUndefined()))
433 if (IsAlias && Symbol->isUndefined())
434 Address = AliaseeInfo->StringIndex;
435 else if (Symbol->isDefined())
437 else if (Symbol->isCommon()) {
440 Address = Symbol->getCommonSize();
451 bool EncodeAsAltEntry =
452 IsAlias && cast<MCSymbolMachO>(OrigSymbol).isAltEntry();
453 W.
write<
uint16_t>(cast<MCSymbolMachO>(Symbol)->getEncodedFlags(EncodeAsAltEntry));
478 for (
const std::string &Option :
Options)
479 Size += Option.size() + 1;
484 const std::vector<std::string> &
Options)
494 for (
const std::string &Option :
Options) {
496 W.
OS << Option <<
'\0';
497 BytesWritten += Option.size() + 1;
520 Asm.getContext().reportError(
Fixup.getLoc(),
521 "unsupported relocation expression");
525 TargetObjectWriter->recordRelocation(
this, Asm, Fragment,
Fixup,
Target,
539 for (IndirectSymbolData &ISD : IndirectSymbols) {
540 const MCSectionMachO &Section = cast<MCSectionMachO>(*ISD.Section);
548 "' not in a symbol pointer or stub section");
553 for (
auto [IndirectIndex, ISD] :
enumerate(IndirectSymbols)) {
554 const auto &Section = cast<MCSectionMachO>(*ISD.Section);
561 IndirectSymBase.insert(std::make_pair(ISD.Section, IndirectIndex));
563 Asm.registerSymbol(*ISD.Symbol);
567 for (
auto [IndirectIndex, ISD] :
enumerate(IndirectSymbols)) {
568 const auto &Section = cast<MCSectionMachO>(*ISD.Section);
575 IndirectSymBase.insert(std::make_pair(ISD.Section, IndirectIndex));
580 if (Asm.registerSymbol(*ISD.Symbol))
581 cast<MCSymbolMachO>(ISD.Symbol)->setReferenceTypeUndefinedLazy(
true);
587 MCAssembler &Asm, std::vector<MachSymbolData> &LocalSymbolData,
588 std::vector<MachSymbolData> &ExternalSymbolData,
589 std::vector<MachSymbolData> &UndefinedSymbolData) {
594 SectionIndexMap[&Sec] = Index++;
595 assert(Index <= 256 &&
"Too many sections!");
598 for (
const MCSymbol &Symbol : Asm.symbols()) {
611 for (
const MCSymbol &Symbol : Asm.symbols()) {
616 if (!Symbol.isExternal() && !Symbol.isUndefined())
620 MSD.Symbol = &Symbol;
621 MSD.StringIndex =
StringTable.getOffset(Symbol.getName());
623 if (Symbol.isUndefined()) {
624 MSD.SectionIndex = 0;
625 UndefinedSymbolData.push_back(MSD);
626 }
else if (Symbol.isAbsolute()) {
627 MSD.SectionIndex = 0;
628 ExternalSymbolData.push_back(MSD);
630 MSD.SectionIndex = SectionIndexMap.
lookup(&Symbol.getSection());
631 assert(MSD.SectionIndex &&
"Invalid section index!");
632 ExternalSymbolData.push_back(MSD);
637 for (
const MCSymbol &Symbol : Asm.symbols()) {
642 if (Symbol.isExternal() || Symbol.isUndefined())
646 MSD.Symbol = &Symbol;
647 MSD.StringIndex =
StringTable.getOffset(Symbol.getName());
649 if (Symbol.isAbsolute()) {
650 MSD.SectionIndex = 0;
651 LocalSymbolData.push_back(MSD);
653 MSD.SectionIndex = SectionIndexMap.
lookup(&Symbol.getSection());
654 assert(MSD.SectionIndex &&
"Invalid section index!");
655 LocalSymbolData.push_back(MSD);
665 for (
auto *SymbolData :
666 {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData})
667 for (MachSymbolData &Entry : *SymbolData)
668 Entry.Symbol->setIndex(Index++);
671 for (RelAndSymbol &Rel : Relocations[&Section]) {
676 unsigned Index = Rel.Sym->getIndex();
679 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & (~0U << 24)) | Index | (1 << 27);
681 Rel.MRE.r_word1 = (Rel.MRE.r_word1 & 0xff) | Index << 8 | (1 << 4);
691 if (!Sec.isVirtualSection()) {
693 cast<MCSectionMachO>(Sec).setLayoutOrder(i++);
697 if (Sec.isVirtualSection()) {
699 cast<MCSectionMachO>(Sec).setLayoutOrder(i++);
704 for (
const MCSection *Sec : SectionOrder) {
705 StartAddress =
alignTo(StartAddress, Sec->getAlign());
706 SectionAddress[Sec] = StartAddress;
707 StartAddress += Asm.getSectionAddressSize(*Sec);
725 bool InSet,
bool IsPCRel)
const {
752 bool hasReliableSymbolDifference =
isX86_64();
753 if (!hasReliableSymbolDifference) {
782 Asm.getContext().getObjectFileInfo()->getAddrSigSection();
783 unsigned Log2Size =
is64Bit() ? 3 : 2;
785 if (!S->isRegistered())
796 auto NumBytesWritten = [&] {
return W.
OS.
tell() - StartOffset; };
802 UndefinedSymbolData);
805 MCSection *CGProfileSection = Asm.getContext().getMachOSection(
807 auto &Frag = cast<MCDataFragment>(*CGProfileSection->
begin());
808 Frag.getContents().clear();
811 uint32_t FromIndex = CGPE.From->getSymbol().getIndex();
812 uint32_t ToIndex = CGPE.To->getSymbol().getIndex();
819 unsigned NumSections = Asm.end() - Asm.begin();
823 unsigned NumLoadCommands = 1;
829 if (VersionInfo.Major != 0) {
831 if (VersionInfo.EmitBuildVersion)
838 if (TargetVariantVersionInfo.Major != 0) {
840 assert(TargetVariantVersionInfo.EmitBuildVersion &&
841 "target variant should use build version");
846 unsigned NumDataRegions = DataRegions.size();
847 if (NumDataRegions) {
861 unsigned NumSymbols = LocalSymbolData.size() + ExternalSymbolData.size() +
862 UndefinedSymbolData.size();
864 NumLoadCommands += 2;
870 for (
const auto &Option : LinkerOptions) {
885 uint64_t FileSize = Asm.getSectionFileSize(Sec);
890 if (Sec.isVirtualSection())
893 SectionDataSize = std::max(SectionDataSize,
Address +
Size);
894 SectionDataFileSize = std::max(SectionDataFileSize,
Address + FileSize);
900 unsigned SectionDataPadding =
902 SectionDataFileSize += SectionDataPadding;
910 SectionDataSize, Prot, Prot);
913 uint64_t RelocTableEnd = SectionDataStart + SectionDataFileSize;
915 const auto &Sec = cast<MCSectionMachO>(Section);
916 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
917 unsigned NumRelocs = Relocs.size();
919 unsigned Flags = Sec.getTypeAndAttributes();
920 if (Sec.hasInstructions())
922 if (!cast<MCSectionMachO>(Sec).isVirtualSection() &&
923 !isUInt<32>(SectionStart)) {
924 Asm.getContext().reportError(
925 SMLoc(),
"cannot encode offset of section; object file too large");
926 return NumBytesWritten();
928 if (NumRelocs && !isUInt<32>(RelocTableEnd)) {
929 Asm.getContext().reportError(
931 "cannot encode offset of relocations; object file too large");
932 return NumBytesWritten();
935 RelocTableEnd, NumRelocs);
940 auto EmitDeploymentTargetVersion =
943 assert(!V.empty() &&
"empty version");
944 unsigned Update = V.getSubminor().value_or(0);
945 unsigned Minor = V.getMinor().value_or(0);
946 assert(
Update < 256 &&
"unencodable update target version");
947 assert(
Minor < 256 &&
"unencodable minor target version");
948 assert(V.getMajor() < 65536 &&
"unencodable major target version");
949 return Update | (
Minor << 8) | (V.getMajor() << 16);
952 VersionInfo.Major, VersionInfo.Minor, VersionInfo.Update));
954 ? EncodeVersion(VersionInfo.SDKVersion)
956 if (VersionInfo.EmitBuildVersion) {
973 if (VersionInfo.Major != 0)
974 EmitDeploymentTargetVersion(VersionInfo);
975 if (TargetVariantVersionInfo.Major != 0)
976 EmitDeploymentTargetVersion(TargetVariantVersionInfo);
979 uint64_t DataInCodeTableEnd = RelocTableEnd + NumDataRegions * 8;
980 if (NumDataRegions) {
981 uint64_t DataRegionsOffset = RelocTableEnd;
982 uint64_t DataRegionsSize = NumDataRegions * 8;
988 uint64_t LOHTableEnd = DataInCodeTableEnd + LOHSize;
991 DataInCodeTableEnd, LOHSize);
995 unsigned FirstLocalSymbol = 0;
996 unsigned NumLocalSymbols = LocalSymbolData.size();
997 unsigned FirstExternalSymbol = FirstLocalSymbol + NumLocalSymbols;
998 unsigned NumExternalSymbols = ExternalSymbolData.size();
999 unsigned FirstUndefinedSymbol = FirstExternalSymbol + NumExternalSymbols;
1000 unsigned NumUndefinedSymbols = UndefinedSymbolData.size();
1001 unsigned NumIndirectSymbols = IndirectSymbols.size();
1002 unsigned NumSymTabSymbols =
1003 NumLocalSymbols + NumExternalSymbols + NumUndefinedSymbols;
1004 uint64_t IndirectSymbolSize = NumIndirectSymbols * 4;
1008 if (NumIndirectSymbols)
1009 IndirectSymbolOffset = LOHTableEnd;
1012 uint64_t SymbolTableOffset = LOHTableEnd + IndirectSymbolSize;
1016 SymbolTableOffset + NumSymTabSymbols * (
is64Bit() ?
1023 FirstExternalSymbol, NumExternalSymbols,
1024 FirstUndefinedSymbol, NumUndefinedSymbols,
1025 IndirectSymbolOffset, NumIndirectSymbols);
1029 for (
const auto &Option : LinkerOptions)
1034 Asm.writeSectionData(
W.
OS, &Sec);
1047 std::vector<RelAndSymbol> &Relocs = Relocations[&Sec];
1064 <<
" start: " << Start <<
"(" <<
Data.Start->getName()
1065 <<
")" <<
" end: " <<
End <<
"(" <<
Data.End->getName()
1066 <<
")" <<
" size: " <<
End - Start <<
"\n");
1077 LOHContainer.
emit(Asm, *
this);
1087 for (
auto &ISD : IndirectSymbols) {
1094 if (ISD.Symbol->isDefined() && !ISD.Symbol->isExternal()) {
1096 if (ISD.Symbol->isAbsolute())
1109 for (
auto *SymbolData :
1110 {&LocalSymbolData, &ExternalSymbolData, &UndefinedSymbolData})
1111 for (MachSymbolData &Entry : *SymbolData)
1118 return NumBytesWritten();
This file defines the DenseMap class.
static unsigned ComputeLinkerOptionsLoadCommandSize(const std::vector< std::string > &Options, bool is64Bit)
static bool isFixupTargetValid(const MCValue &Target)
static MachO::LoadCommandType getLCFromMCVM(MCVersionMinType Type)
static bool isSymbolLinkerVisible(const MCSymbol &Symbol)
PowerPC TLS Dynamic Call Fixup
assert(ImpDefSCC.getReg()==AMDGPU::SCC &&ImpDefSCC.isDef())
static bool is64Bit(const char *name)
ValueT lookup(const_arg_type_t< KeyT > Val) const
lookup - Return the entry for the specified key, or a default constructed value if no such entry exis...
static bool isSectionAtomizableBySymbols(const MCSection &Section)
True if the section is atomized using the symbols in it.
Base class for the full range of assembler expressions which are needed for parsing.
bool evaluateAsRelocatable(MCValue &Res, const MCAssembler *Asm, const MCFixup *Fixup) const
Try to evaluate the expression to a relocatable value, i.e.
Encode information on a single operation to perform on a byte sequence (e.g., an encoded instruction)...
const MCSymbol * getAtom() const
MCSection * getParent() const
void emit(const MCAssembler &Asm, MachObjectWriter &ObjWriter) const
Emit all Linker Optimization Hint in one big table.
uint64_t getEmitSize(const MCAssembler &Asm, const MachObjectWriter &ObjWriter) const
Get the size of the directives if emitted.
SmallVector< CGProfileEntry, 0 > CGProfile
bool SubsectionsViaSymbols
std::vector< const MCSymbol * > & getAddrsigSyms()
virtual void reset()
lifetime management
This represents a section on a Mach-O system (used by Mac OS X).
Instances of this class represent a uniqued identifier for a section in the current translation unit.
bool isVirtualSection() const
Check whether this section is "virtual", that is has no actual object file contents.
MCSymbol - Instances of this class represent a symbol name in the MC file, and MCSymbols are created ...
const MCExpr * getVariableValue(bool SetUsed=true) const
getVariableValue - Get the value for variable symbols.
bool isInSection() const
isInSection - Check if this symbol is defined in some section (i.e., it is defined but not absolute).
StringRef getName() const
getName - Get the symbol name.
bool isVariable() const
isVariable - Check if this is a variable symbol.
bool isUndefined(bool SetUsed=true) const
isUndefined - Check if this symbol undefined (i.e., implicitly defined).
MCSection & getSection() const
Get the section associated with a defined, non-absolute symbol.
bool isTemporary() const
isTemporary - Check if this is an assembler temporary symbol.
MCFragment * getFragment(bool SetUsed=true) const
This represents an "assembler immediate".
uint64_t getPaddingSize(const MCAssembler &Asm, const MCSection *SD) const
void computeSectionAddresses(const MCAssembler &Asm)
void writeSection(const MCAssembler &Asm, const MCSection &Sec, uint64_t VMAddr, uint64_t FileOffset, unsigned Flags, uint64_t RelocationsStart, unsigned NumRelocations)
bool doesSymbolRequireExternRelocation(const MCSymbol &S)
void computeSymbolTable(MCAssembler &Asm, std::vector< MachSymbolData > &LocalSymbolData, std::vector< MachSymbolData > &ExternalSymbolData, std::vector< MachSymbolData > &UndefinedSymbolData)
Compute the symbol table data.
uint64_t getFragmentAddress(const MCAssembler &Asm, const MCFragment *Fragment) const
{ bool EmitBuildVersion VersionInfoType
void executePostLayoutBinding(MCAssembler &Asm) override
Perform any late binding of symbols (for example, to assign symbol indices for use when generating re...
uint64_t getSectionAddress(const MCSection *Sec) const
void addRelocation(const MCSymbol *RelSymbol, const MCSection *Sec, MachO::any_relocation_info &MRE)
void populateAddrSigSection(MCAssembler &Asm)
bool isFixupKindPCRel(const MCAssembler &Asm, unsigned Kind)
support::endian::Writer W
void writeLinkerOptionsLoadCommand(const std::vector< std::string > &Options)
void recordRelocation(MCAssembler &Asm, const MCFragment *Fragment, const MCFixup &Fixup, MCValue Target, uint64_t &FixedValue) override
Record a relocation entry.
void writeNlist(MachSymbolData &MSD, const MCAssembler &Asm)
VersionTuple SDKVersion
An optional version of the SDK that was used to build the source.
bool isSymbolRefDifferenceFullyResolvedImpl(const MCAssembler &Asm, const MCSymbol &SymA, const MCFragment &FB, bool InSet, bool IsPCRel) const override
void writeDysymtabLoadCommand(uint32_t FirstLocalSymbol, uint32_t NumLocalSymbols, uint32_t FirstExternalSymbol, uint32_t NumExternalSymbols, uint32_t FirstUndefinedSymbol, uint32_t NumUndefinedSymbols, uint32_t IndirectSymbolOffset, uint32_t NumIndirectSymbols)
const MCSymbol & findAliasedSymbol(const MCSymbol &Sym) const
uint64_t getSymbolAddress(const MCSymbol &S, const MCAssembler &Asm) const
MCVersionMinType Type
Used when EmitBuildVersion==false.
void writeSegmentLoadCommand(StringRef Name, unsigned NumSections, uint64_t VMAddr, uint64_t VMSize, uint64_t SectionDataStartOffset, uint64_t SectionDataSize, uint32_t MaxProt, uint32_t InitProt)
Write a segment load command.
const MCSymbol * getAtom(const MCSymbol &S) const
void writeLinkeditLoadCommand(uint32_t Type, uint32_t DataOffset, uint32_t DataSize)
void writeHeader(MachO::HeaderFileType Type, unsigned NumLoadCommands, unsigned LoadCommandsSize, bool SubsectionsViaSymbols)
void reset() override
lifetime management
void writeSymtabLoadCommand(uint32_t SymbolOffset, uint32_t NumSymbols, uint32_t StringTableOffset, uint32_t StringTableSize)
void bindIndirectSymbols(MCAssembler &Asm)
uint64_t writeObject(MCAssembler &Asm) override
Write the object file and returns the number of bytes written.
Represents a location in source code.
static SectionKind getMetadata()
void push_back(const T &Elt)
StringRef - Represent a constant reference to a string, i.e.
A table of densely packed, null-terminated strings indexed by offset.
Target - Wrapper for Target specific information.
const char * getName() const
getName - Get the target name.
The instances of the Type class are immutable: once they are created, they are never changed.
LLVM Value Representation.
StringRef getName() const
Return a constant reference to the value's name.
Represents a version number in the form major[.minor[.subminor[.build]]].
raw_ostream & write_zeros(unsigned NumZeros)
write_zeros - Insert 'NumZeros' nulls.
uint64_t tell() const
tell - Return the current offset with the file.
A raw_ostream that writes to an SmallVector or SmallString.
#define llvm_unreachable(msg)
Marks that the current location is not supposed to be reachable.
@ C
The default llvm calling convention, compatible with C.
@ S_ATTR_SOME_INSTRUCTIONS
S_ATTR_SOME_INSTRUCTIONS - Section contains some machine instructions.
@ S_THREAD_LOCAL_VARIABLE_POINTERS
S_THREAD_LOCAL_VARIABLE_POINTERS - Section with pointers to thread local structures.
@ S_LAZY_SYMBOL_POINTERS
S_LAZY_SYMBOL_POINTERS - Section with lazy symbol pointers.
@ S_NON_LAZY_SYMBOL_POINTERS
S_NON_LAZY_SYMBOL_POINTERS - Section with non-lazy symbol pointers.
@ S_SYMBOL_STUBS
S_SYMBOL_STUBS - Section with symbol stubs, byte size of stub in the Reserved2 field.
uint32_t CPU_SUBTYPE_ARM64E_WITH_PTRAUTH_VERSION(unsigned PtrAuthABIVersion, bool PtrAuthKernelABIVersion)
@ MH_SUBSECTIONS_VIA_SYMBOLS
void write(void *memory, value_type value, endianness endian)
Write a value to memory with a particular endianness.
This is an optimization pass for GlobalISel generic memory operations.
auto enumerate(FirstRange &&First, RestRanges &&...Rest)
Given two or more input ranges, returns a new range whose values are tuples (A, B,...
auto reverse(ContainerTy &&C)
void sort(IteratorTy Start, IteratorTy End)
@ MCVM_WatchOSVersionMin
.watchos_version_min
@ MCVM_OSXVersionMin
.macosx_version_min
@ MCVM_TvOSVersionMin
.tvos_version_min
@ MCVM_IOSVersionMin
.ios_version_min
raw_ostream & dbgs()
dbgs() - This returns a reference to a raw_ostream for debugging messages.
void report_fatal_error(Error Err, bool gen_crash_diag=true)
Report a serious error, calling any installed error handler.
MCFixupKind
Extensible enumeration to represent the type of a fixup.
uint64_t offsetToAlignment(uint64_t Value, Align Alignment)
Returns the offset to the next integer (mod 2**64) that is greater than or equal to Value and is a mu...
@ Ref
The access may reference the value stored in memory.
uint64_t alignTo(uint64_t Size, Align A)
Returns a multiple of A needed to store Size bytes.
unsigned Log2(Align A)
Returns the log2 of the alignment.
This struct is a compact representation of a valid (non-zero power of two) alignment.
Target independent information on a fixup kind.
@ FKF_IsPCRel
Is this fixup kind PCrelative? This is used by the assembler backend to evaluate fixup values in a ta...
unsigned Flags
Flags describing additional information on this fixup kind.
void write(ArrayRef< value_type > Val)