Searched refs:GraphSec (Results 1 – 5 of 5) sorted by relevance
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/JITLink/ |
H A D | ELFLinkGraphBuilder.h | 364 auto *GraphSec = G->findSectionByName(*Name); in graphifySections() local 365 if (!GraphSec) { in graphifySections() 366 GraphSec = &G->createSection(*Name, Prot); in graphifySections() 369 GraphSec->setMemLifetime(orc::MemLifetime::NoAlloc); in graphifySections() 377 if (GraphSec->getMemProt() != Prot) { in graphifySections() 382 << GraphSec->getMemProt() << " vs " << Prot; in graphifySections() 392 B = &G->createContentBlock(*GraphSec, *Data, in graphifySections() 396 B = &G->createZeroFillBlock(*GraphSec, Sec.sh_size, in graphifySections()
|
H A D | COFFLinkGraphBuilder.cpp | 161 auto *GraphSec = G->findSectionByName(SectionName); in graphifySections() 162 if (!GraphSec) { in graphifySections() 163 GraphSec = &G->createSection(SectionName, Prot); in graphifySections() 165 GraphSec->setMemLifetime(orc::MemLifetime::NoAlloc); in graphifySections() 167 if (GraphSec->getMemProt() != Prot) in graphifySections() 173 *GraphSec, getSectionSize(Obj, *Sec), in graphifySections() 190 *GraphSec, CharData, orc::ExecutorAddr(getSectionAddress(Obj, *Sec)), in graphifySections() 160 auto *GraphSec = G->findSectionByName(SectionName); graphifySections() local
|
H A D | MachOLinkGraphBuilder.cpp | 329 unsigned SecIndex, Section &GraphSec, orc::ExecutorAddr Address, in addSectionStartSymAndBlock() 333 Data ? G->createContentBlock(GraphSec, ArrayRef<char>(Data, Size), in addSectionStartSymAndBlock() 335 : G->createZeroFillBlock(GraphSec, Size, Address, Alignment, 0); in addSectionStartSymAndBlock() 328 addSectionStartSymAndBlock(unsigned SecIndex,Section & GraphSec,orc::ExecutorAddr Address,const char * Data,orc::ExecutorAddrDiff Size,uint32_t Alignment,bool IsLive) addSectionStartSymAndBlock() argument
|
H A D | MachOLinkGraphBuilder.h | 197 void addSectionStartSymAndBlock(unsigned SecIndex, Section &GraphSec,
|
/freebsd/contrib/llvm-project/llvm/lib/ExecutionEngine/Orc/ |
H A D | MachOPlatform.cpp | 1493 auto AddSection = [&](SecDesc &SD, jitlink::Section &GraphSec) { in populateObjCRuntimeObject() argument 1494 jitlink::SectionRange SR(GraphSec); in populateObjCRuntimeObject() 1495 StringRef FQName = GraphSec.getName(); in populateObjCRuntimeObject() 1563 if (auto *GraphSec = G.findSectionByName(ObjCRuntimeSectionName)) { in populateObjCRuntimeObject() local 1565 AddSection(DataSections.back(), *GraphSec); in populateObjCRuntimeObject() 1570 if (auto *GraphSec = G.findSectionByName(ObjCRuntimeSectionName)) { in populateObjCRuntimeObject() local 1572 AddSection(TextSections.back(), *GraphSec); in populateObjCRuntimeObject()
|