Home
last modified time | relevance | path

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

/llvm-project-15.0.7/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h320 auto *GraphSec = G->findSectionByName(*Name); in graphifySections() local
321 if (!GraphSec) in graphifySections()
322 GraphSec = &G->createSection(*Name, Prot); in graphifySections()
323 assert(GraphSec->getMemProt() == Prot && "MemProt should match"); in graphifySections()
331 B = &G->createContentBlock(*GraphSec, *Data, in graphifySections()
335 B = &G->createZeroFillBlock(*GraphSec, Sec.sh_size, in graphifySections()
H A DCOFFLinkGraphBuilder.cpp156 auto *GraphSec = G->findSectionByName(SectionName); in graphifySections() local
157 if (!GraphSec) in graphifySections()
158 GraphSec = &G->createSection(SectionName, Prot); in graphifySections()
159 if (GraphSec->getMemProt() != Prot) in graphifySections()
165 *GraphSec, getSectionSize(Obj, *Sec), in graphifySections()
174 *GraphSec, in graphifySections()
H A DMachOLinkGraphBuilder.cpp315 unsigned SecIndex, Section &GraphSec, orc::ExecutorAddr Address, in addSectionStartSymAndBlock() argument
319 Data ? G->createContentBlock(GraphSec, ArrayRef<char>(Data, Size), in addSectionStartSymAndBlock()
321 : G->createZeroFillBlock(GraphSec, Size, Address, Alignment, 0); in addSectionStartSymAndBlock()
H A DMachOLinkGraphBuilder.h195 void addSectionStartSymAndBlock(unsigned SecIndex, Section &GraphSec,