/external/swiftshader/third_party/llvm-7.0/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 202 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 …]
|
D | RuntimeDyldImpl.h | 388 CommonSymbolList &CommonSymbols, uint64_t CommonSize,
|
/external/llvm/lib/ExecutionEngine/RuntimeDyld/ |
D | RuntimeDyld.cpp | 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() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Object/ |
D | IRSymtab.h | 119 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/ |
D | MCSymbol.h | 134 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/ |
D | MCSymbol.h | 130 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/ |
D | MCAssembler.h | 534 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/ |
D | WinCOFFStreamer.cpp | 222 SD.CommonSize = RealSD.CommonSize; in EmitAssignment()
|
D | MCAssembler.cpp | 188 CommonSize(0), SymbolSize(0), CommonAlign(0), in MCSymbolData()
|
/external/swiftshader/third_party/llvm-7.0/llvm/tools/llvm-size/ |
D | llvm-size.cpp | 436 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/ |
D | llvm-size.cpp | 426 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/ |
D | gold-plugin.cpp | 109 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/ |
D | IRSymtab.cpp | 252 Uncommon().CommonSize = GV->getParent()->getDataLayout().getTypeAllocSize( in addSymbol()
|