Home
last modified time | relevance | path

Searched refs:CommonSize (Results 1 – 5 of 5) sorted by relevance

/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Object/
H A DIRSymtab.h119 Word CommonSize, CommonAlign; member
173 uint32_t CommonSize, CommonAlign; member
212 return CommonSize; in getCommonSize()
322 CommonSize = UncI->CommonSize; in read()
/netbsd-src/external/apache2/llvm/dist/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp208 uint64_t CommonSize = 0; in loadObjectImpl() local
292 CommonSize = alignTo(CommonSize, Align) + Size; in loadObjectImpl()
352 if (auto Err = emitCommonSymbols(Obj, CommonSymbolsToAllocate, CommonSize, in loadObjectImpl()
601 uint64_t CommonSize = 0; in computeTotalAllocSize() local
615 if (CommonSize == 0) in computeTotalAllocSize()
617 CommonSize = alignTo(CommonSize, Align) + Size; in computeTotalAllocSize()
620 if (CommonSize != 0) { in computeTotalAllocSize()
621 RWSectionSizes.push_back(CommonSize); in computeTotalAllocSize()
736 uint64_t CommonSize, in emitCommonSymbols() argument
743 uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, CommonAlign, SectionID, in emitCommonSymbols()
[all …]
H A DRuntimeDyldImpl.h364 CommonSymbolList &CommonSymbols, uint64_t CommonSize,
/netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCSymbol.h136 uint64_t CommonSize; member
334 return CommonSize; in getCommonSize()
344 CommonSize = Size;
370 if (CommonSize != Size || getCommonAlignment() != Align ||
/netbsd-src/external/apache2/llvm/dist/llvm/lib/Object/
H A DIRSymtab.cpp280 Uncommon().CommonSize = GV->getParent()->getDataLayout().getTypeAllocSize( in addSymbol()