Lines Matching refs:CommonSize
208 uint64_t CommonSize = 0; in loadObjectImpl() local
292 CommonSize = alignTo(CommonSize, Align) + Size; in loadObjectImpl()
358 if (auto Err = emitCommonSymbols(Obj, CommonSymbolsToAllocate, CommonSize, in loadObjectImpl()
608 uint64_t CommonSize = 0; in computeTotalAllocSize() local
622 if (CommonSize == 0) in computeTotalAllocSize()
624 CommonSize = alignTo(CommonSize, Alignment) + Size; in computeTotalAllocSize()
627 if (CommonSize != 0) { in computeTotalAllocSize()
628 RWSectionSizes.push_back(CommonSize); in computeTotalAllocSize()
747 uint64_t CommonSize, in emitCommonSymbols() argument
754 uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, CommonAlign, SectionID, in emitCommonSymbols()
760 SectionEntry("<common symbols>", Addr, CommonSize, CommonSize, 0)); in emitCommonSymbols()
761 memset(Addr, 0, CommonSize); in emitCommonSymbols()
765 << " DataSize: " << CommonSize << "\n"); in emitCommonSymbols()