Home
last modified time | relevance | path

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

/openbsd-src/gnu/llvm/llvm/lib/ExecutionEngine/JITLink/
H A DELFLinkGraphBuilder.h345 auto *GraphSec = G->findSectionByName(*Name); in graphifySections() local
346 if (!GraphSec) in graphifySections()
347 GraphSec = &G->createSection(*Name, Prot); in graphifySections()
348 assert(GraphSec->getMemProt() == Prot && "MemProt should match"); in graphifySections()
356 B = &G->createContentBlock(*GraphSec, *Data, in graphifySections()
360 B = &G->createZeroFillBlock(*GraphSec, Sec.sh_size, in graphifySections()
H A DCOFFLinkGraphBuilder.cpp154 auto *GraphSec = G->findSectionByName(SectionName); in graphifySections() local
155 if (!GraphSec) in graphifySections()
156 GraphSec = &G->createSection(SectionName, Prot); in graphifySections()
157 if (GraphSec->getMemProt() != Prot) in graphifySections()
163 *GraphSec, getSectionSize(Obj, *Sec), in graphifySections()
180 *GraphSec, CharData, orc::ExecutorAddr(getSectionAddress(Obj, *Sec)), in graphifySections()
H A DMachOLinkGraphBuilder.cpp319 unsigned SecIndex, Section &GraphSec, orc::ExecutorAddr Address, in addSectionStartSymAndBlock() argument
323 Data ? G->createContentBlock(GraphSec, ArrayRef<char>(Data, Size), in addSectionStartSymAndBlock()
325 : G->createZeroFillBlock(GraphSec, Size, Address, Alignment, 0); in addSectionStartSymAndBlock()
H A DMachOLinkGraphBuilder.h196 void addSectionStartSymAndBlock(unsigned SecIndex, Section &GraphSec,