Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/
H A DIRSymtab.h123 Word CommonSize, CommonAlign; member
177 uint32_t CommonSize, CommonAlign; member
216 return CommonSize; in getCommonSize()
328 CommonSize = UncI->CommonSize; in read()
/freebsd-13.1/contrib/llvm-project/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp208 uint64_t CommonSize = 0; in loadObjectImpl() local
292 CommonSize = alignTo(CommonSize, Align) + Size; 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
749 SectionEntry("<common symbols>", Addr, CommonSize, CommonSize, 0)); in emitCommonSymbols()
750 memset(Addr, 0, CommonSize); in emitCommonSymbols()
[all …]
H A DRuntimeDyldImpl.h364 CommonSymbolList &CommonSymbols, uint64_t CommonSize,
/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCSymbol.h137 uint64_t CommonSize; member
337 return CommonSize; in getCommonSize()
347 CommonSize = Size;
373 if (CommonSize != Size || getCommonAlignment() != Align ||
/freebsd-13.1/contrib/llvm-project/llvm/lib/Object/
H A DIRSymtab.cpp281 Uncommon().CommonSize = in addSymbol()