Lines Matching refs:CommonSize
470 uint64_t CommonSize = 0; in computeTotalAllocSize() local
481 if (CommonSize == 0) in computeTotalAllocSize()
483 CommonSize = alignTo(CommonSize, Align) + Size; in computeTotalAllocSize()
486 if (CommonSize != 0) { in computeTotalAllocSize()
487 RWSectionSizes.push_back(CommonSize); in computeTotalAllocSize()
573 uint64_t CommonSize = 0; in emitCommonSymbols() local
597 CommonSize = alignTo(CommonSize, Align) + Size; in emitCommonSymbols()
604 uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, CommonAlign, SectionID, in emitCommonSymbols()
610 SectionEntry("<common symbols>", Addr, CommonSize, CommonSize, 0)); in emitCommonSymbols()
611 memset(Addr, 0, CommonSize); in emitCommonSymbols()
614 << format("%p", Addr) << " DataSize: " << CommonSize << "\n"); in emitCommonSymbols()