Home
last modified time | relevance | path

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

/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp202 uint64_t CommonSize = 0; in loadObjectImpl() local
278 CommonSize = alignTo(CommonSize, Align) + Size; in loadObjectImpl()
337 if (auto Err = emitCommonSymbols(Obj, CommonSymbolsToAllocate, CommonSize, in loadObjectImpl()
529 uint64_t CommonSize = 0; in computeTotalAllocSize() local
540 if (CommonSize == 0) in computeTotalAllocSize()
542 CommonSize = alignTo(CommonSize, Align) + Size; in computeTotalAllocSize()
545 if (CommonSize != 0) { in computeTotalAllocSize()
546 RWSectionSizes.push_back(CommonSize); in computeTotalAllocSize()
651 uint64_t CommonSize, in emitCommonSymbols() argument
658 uint8_t *Addr = MemMgr.allocateDataSection(CommonSize, CommonAlign, SectionID, in emitCommonSymbols()
[all …]
DRuntimeDyldImpl.h388 CommonSymbolList &CommonSymbols, uint64_t CommonSize,
/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp470 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()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/
DIRSymtab.h119 Word CommonSize, CommonAlign; member
169 uint32_t CommonSize, CommonAlign; member
208 return CommonSize; in getCommonSize()
306 CommonSize = UncI->CommonSize; in read()
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/
DMCSymbol.h134 uint64_t CommonSize; member
338 return CommonSize; in getCommonSize()
347 CommonSize = Size; in setCommon()
372 if(CommonSize != Size || getCommonAlignment() != Align) in declareCommon()
/external/llvm/include/llvm/MC/
DMCSymbol.h130 uint64_t CommonSize; member
331 return CommonSize; in getCommonSize()
340 CommonSize = Size; in setCommon()
365 if(CommonSize != Size || getCommonAlignment() != Align) in declareCommon()
/external/swiftshader/third_party/LLVM/include/llvm/MC/
DMCAssembler.h534 uint64_t CommonSize; variable
580 bool isCommon() const { return CommonSize != 0; } in isCommon()
587 CommonSize = Size; in setCommon()
594 return CommonSize; in getCommonSize()
/external/swiftshader/third_party/LLVM/lib/MC/
DWinCOFFStreamer.cpp222 SD.CommonSize = RealSD.CommonSize; in EmitAssignment()
DMCAssembler.cpp188 CommonSize(0), SymbolSize(0), CommonAlign(0), in MCSymbolData()
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-size/
Dllvm-size.cpp436 uint64_t CommonSize = getCommonSize(Obj); in printObjectSectionSizes() local
437 total += CommonSize; in printObjectSectionSizes()
439 CommonSize, static_cast<uint64_t>(0)); in printObjectSectionSizes()
/external/llvm/tools/llvm-size/
Dllvm-size.cpp426 uint64_t CommonSize = getCommonSize(Obj); in printObjectSectionSizes() local
427 total += CommonSize; in printObjectSectionSizes()
429 CommonSize, static_cast<uint64_t>(0)); in printObjectSectionSizes()
/external/llvm/tools/gold/
Dgold-plugin.cpp109 uint64_t CommonSize = 0; member
755 if (Res.UseCommon && Size >= Res.CommonSize) { in getModuleForFile()
772 Res.CommonSize = std::max(Res.CommonSize, Size); in getModuleForFile()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Object/
DIRSymtab.cpp252 Uncommon().CommonSize = GV->getParent()->getDataLayout().getTypeAllocSize( in addSymbol()