Home
last modified time | relevance | path

Searched refs:InitSections (Results 1 – 6 of 6) sorted by relevance

/freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DXCOFFEmitter.cpp126 if (InitSections[I].SectionName.size() && in initSectionHeader()
139 if (InitSections[I].Flags != XCOFF::STYP_TEXT && in initSectionHeader()
140 InitSections[I].Flags != XCOFF::STYP_DATA && in initSectionHeader()
141 InitSections[I].Flags != XCOFF::STYP_BSS) in initSectionHeader()
142 InitSections[I].Address = 0; in initSectionHeader()
144 InitSections[I].Address = CurrentSecAddr; in initSectionHeader()
147 if (InitSections[I].SectionData.binary_size()) { in initSectionHeader()
152 InitSections[I].Size = CurrentOffset - InitSections[I].FileOffsetToData; in initSectionHeader()
153 CurrentSecAddr += InitSections[I].Size; in initSectionHeader()
281 switch (InitSections[I].Flags) { in initAuxFileHeader()
[all …]
/freebsd-14.2/contrib/llvm-project/compiler-rt/lib/orc/
H A Delfnix_platform.h50 std::vector<std::pair<std::string, SectionList>> InitSections; member
113 MOJDIs.Name, MOJDIs.DSOHandleAddress, MOJDIs.InitSections); in size()
119 OB, MOJDIs.Name, MOJDIs.DSOHandleAddress, MOJDIs.InitSections); in serialize()
125 IB, MOJDIs.Name, MOJDIs.DSOHandleAddress, MOJDIs.InitSections); in deserialize()
H A Delfnix_platform.cpp419 std::sort(MOJDIs.InitSections.begin(), MOJDIs.InitSections.end(), in initializeJITDylib()
424 for (auto &Entry : MOJDIs.InitSections) in initializeJITDylib()
H A Dmacho_platform.cpp1090 std::vector<span<void (*)()>> InitSections; in runModInits() local
1091 InitSections.reserve(JDS.ModInitsSections.numNewSections()); in runModInits()
1098 [&](span<void (*)()> Inits) { InitSections.push_back(Inits); }); in runModInits()
1101 for (auto InitSec : InitSections) in runModInits()
/freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DELFNixPlatform.h43 StringMap<SectionList> InitSections; member
219 ArrayRef<jitlink::Section *> InitSections);
292 MOJDIs.Name, MOJDIs.DSOHandleAddress, MOJDIs.InitSections); in size()
298 OB, MOJDIs.Name, MOJDIs.DSOHandleAddress, MOJDIs.InitSections); in serialize()
304 IB, MOJDIs.Name, MOJDIs.DSOHandleAddress, MOJDIs.InitSections); in deserialize()
/freebsd-14.2/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DELFNixPlatform.cpp533 JITDylib &JD, ArrayRef<jitlink::Section *> InitSections) { in registerInitInfo() argument
558 for (auto *Sec : InitSections) { in registerInitInfo()
561 InitSeq->InitSections[Sec->getName()].push_back(R.getRange()); in registerInitInfo()
776 SmallVector<jitlink::Section *> InitSections; in registerInitSections() local
782 InitSections.push_back(&Sec); in registerInitSections()
789 for (auto *Sec : InitSections) { in registerInitSections()
795 return MP.registerInitInfo(JD, InitSections); in registerInitSections()