Searched refs:GraphSec (Results 1 - 6 of 6) sorted by relevance

/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/Debugging/
H A DDebuggerSupportPlugin.cpp142 auto [SegName, SecName] = DSec.GraphSec->getName().split(',');
145 SectionRange SR(*DSec.GraphSec);
201 auto [SegName, SecName] = NDSP.GraphSec->getName().split(',');
203 SectionRange SR(*NDSP.GraphSec);
208 for (auto *Sym : NDSP.GraphSec->symbols()) {
246 SectionRange SR(*NDSec.GraphSec);
255 if (DSec.GraphSec->blocks_size() != 1)
263 auto &B = **DSec.GraphSec->blocks().begin();
294 Section *GraphSec = nullptr; member in struct:__anon2024::MachODebugObjectSynthesizer::SectionPair
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h364 auto *GraphSec = G->findSectionByName(*Name); local
365 if (!GraphSec) {
366 GraphSec = &G->createSection(*Name, Prot);
369 GraphSec->setMemLifetime(orc::MemLifetime::NoAlloc);
377 if (GraphSec->getMemProt() != Prot) {
382 << GraphSec->getMemProt() << " vs " << Prot;
392 B = &G->createContentBlock(*GraphSec, *Data,
396 B = &G->createZeroFillBlock(*GraphSec, Sec.sh_size,
H A DCOFFLinkGraphBuilder.cpp161 auto *GraphSec = G->findSectionByName(SectionName); local
162 if (!GraphSec) {
163 GraphSec = &G->createSection(SectionName, Prot);
165 GraphSec->setMemLifetime(orc::MemLifetime::NoAlloc);
167 if (GraphSec->getMemProt() != Prot)
173 *GraphSec, getSectionSize(Obj, *Sec),
190 *GraphSec, CharData, orc::ExecutorAddr(getSectionAddress(Obj, *Sec)),
H A DMachOLinkGraphBuilder.h197 void addSectionStartSymAndBlock(unsigned SecIndex, Section &GraphSec,
H A DMachOLinkGraphBuilder.cpp329 unsigned SecIndex, Section &GraphSec, orc::ExecutorAddr Address,
333 Data ? G->createContentBlock(GraphSec, ArrayRef<char>(Data, Size),
335 : G->createZeroFillBlock(GraphSec, Size, Address, Alignment, 0);
328 addSectionStartSymAndBlock( unsigned SecIndex, Section &GraphSec, orc::ExecutorAddr Address, const char *Data, orc::ExecutorAddrDiff Size, uint32_t Alignment, bool IsLive) argument
/freebsd-current/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/
H A DMachOPlatform.cpp1447 auto AddSection = [&](SecDesc &SD, jitlink::Section &GraphSec) {
1448 jitlink::SectionRange SR(GraphSec);
1449 StringRef FQName = GraphSec.getName();
1517 if (auto *GraphSec = G.findSectionByName(ObjCRuntimeSectionName)) {
1519 AddSection(DataSections.back(), *GraphSec);
1524 if (auto *GraphSec = G.findSectionByName(ObjCRuntimeSectionName)) {
1526 AddSection(TextSections.back(), *GraphSec);

Completed in 73 milliseconds