Home
last modified time | relevance | path

Searched refs:GraphSec (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp138 auto [SegName, SecName] = DSec.GraphSec->getName().split(','); in startSynthesis()
141 SectionRange SR(*DSec.GraphSec); in startSynthesis()
207 auto [SegName, SecName] = NDSP.GraphSec->getName().split(','); in startSynthesis()
209 SectionRange SR(*NDSP.GraphSec); in startSynthesis()
214 for (auto *Sym : NDSP.GraphSec->symbols()) { in startSynthesis()
252 SectionRange SR(*NDSec.GraphSec); in completeSynthesisAndRegister()
261 if (DSec.GraphSec->blocks_size() != 1) in completeSynthesisAndRegister()
269 auto &B = **DSec.GraphSec->blocks().begin(); in completeSynthesisAndRegister()
300 Section *GraphSec = nullptr; member
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h365 auto *GraphSec = G->findSectionByName(*Name); in graphifySections() local
366 if (!GraphSec) { in graphifySections()
367 GraphSec = &G->createSection(*Name, Prot); in graphifySections()
370 GraphSec->setMemLifetime(orc::MemLifetime::NoAlloc); in graphifySections()
378 if (GraphSec->getMemProt() != Prot) { in graphifySections()
383 << GraphSec->getMemProt() << " vs " << Prot; in graphifySections()
393 B = &G->createContentBlock(*GraphSec, *Data, in graphifySections()
397 B = &G->createZeroFillBlock(*GraphSec, Sec.sh_size, in graphifySections()
H A DCOFFLinkGraphBuilder.cpp155 auto *GraphSec = G->findSectionByName(SectionName); in graphifySections() local
156 if (!GraphSec) { in graphifySections()
157 GraphSec = &G->createSection(SectionName, Prot); in graphifySections()
159 GraphSec->setMemLifetime(orc::MemLifetime::NoAlloc); in graphifySections()
161 if (GraphSec->getMemProt() != Prot) in graphifySections()
167 *GraphSec, getSectionSize(Obj, *Sec), in graphifySections()
184 *GraphSec, CharData, orc::ExecutorAddr(getSectionAddress(Obj, *Sec)), in graphifySections()
H A DXCOFFLinkGraphBuilder.cpp179 jitlink::Section *GraphSec = &G->createSection(*SectionName, Prot); in processSections() local
184 SectionTable[Section.getIndex()] = {GraphSec, Section}; in processSections()
H A DMachOLinkGraphBuilder.cpp320 unsigned SecIndex, Section &GraphSec, orc::ExecutorAddr Address, in addSectionStartSymAndBlock() argument
324 Data ? G->createContentBlock(GraphSec, ArrayRef<char>(Data, Size), in addSectionStartSymAndBlock()
326 : G->createZeroFillBlock(GraphSec, Size, Address, Alignment, 0); in addSectionStartSymAndBlock()
H A DMachOLinkGraphBuilder.h197 void addSectionStartSymAndBlock(unsigned SecIndex, Section &GraphSec,
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp1516 auto AddSection = [&](SecDesc &SD, jitlink::Section &GraphSec) { in populateObjCRuntimeObject() argument
1517 jitlink::SectionRange SR(GraphSec); in populateObjCRuntimeObject()
1518 StringRef FQName = GraphSec.getName(); in populateObjCRuntimeObject()
1580 if (auto *GraphSec = G.findSectionByName(ObjCRuntimeSectionName)) { in populateObjCRuntimeObject() local
1582 AddSection(DataSections.back(), *GraphSec); in populateObjCRuntimeObject()
1587 if (auto *GraphSec = G.findSectionByName(ObjCRuntimeSectionName)) { in populateObjCRuntimeObject() local
1589 AddSection(TextSections.back(), *GraphSec); in populateObjCRuntimeObject()