Searched refs:SectionSize (Results 1 - 14 of 14) sorted by relevance

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
H A DRuntimeDyld.cpp443 uint64_t SectionSize = DataSize + StubBufSize; local
451 SectionSize += 4;
453 if (!SectionSize)
454 SectionSize = 1;
458 CodeSectionSizes.push_back(SectionSize);
461 ROSectionSizes.push_back(SectionSize);
464 RWSectionSizes.push_back(SectionSize);
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DCOFF.h37 SectionSize = 40, enumerator in enum:llvm::COFF::__anon19675
/external/llvm/lib/DebugInfo/DWARF/
H A DDWARFContext.cpp786 uint64_t SectionSize = RelocatedSection->getSize(); local
863 if (Address + R.Width > SectionSize) {
866 << SectionSize << " bytes long.\n";
/external/llvm/lib/MC/
H A DMachObjectWriter.cpp201 uint64_t SectionSize = Layout.getSectionAddressSize(&Sec); local
220 write64(SectionSize); // size
223 write32(SectionSize); // size
H A DMCDwarf.cpp825 const MCExpr *SectionSize = MakeStartMinusEndExpr(*MCOS, local
828 emitAbsValue(*MCOS, SectionSize, AddrSize);
H A DWinCOFFObjectWriter.cpp924 offset += COFF::SectionSize * Header.NumberOfSections;
/external/swiftshader/third_party/LLVM/lib/MC/
H A DMachObjectWriter.cpp188 uint64_t SectionSize = Layout.getSectionAddressSize(&SD); local
207 Write64(SectionSize); // size
210 Write32(SectionSize); // size
H A DWinCOFFObjectWriter.cpp268 return COFF::SectionSize;
788 offset += COFF::SectionSize * Header.NumberOfSections;
/external/llvm/include/llvm/Support/
H A DCOFF.h51 SectionSize = 40, enumerator in enum:llvm::COFF::__anon12438
/external/swiftshader/third_party/llvm-subzero/include/llvm/Support/
H A DCOFF.h56 SectionSize = 40, enumerator in enum:llvm::COFF::__anon20483
/external/llvm/lib/Object/
H A DMachOObjectFile.cpp83 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : local
86 uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize;
233 const unsigned SectionSize = local
235 if (S.nsects > std::numeric_limits<uint32_t>::max() / SectionSize ||
236 S.nsects * SectionSize > Load.C.cmdsize - SegmentLoadSize)
H A DCOFFObjectFile.cpp1043 uint32_t SectionSize = getSectionSize(Sec); local
1044 if (checkOffset(Data, ConStart, SectionSize))
1046 Res = makeArrayRef(reinterpret_cast<const uint8_t *>(ConStart), SectionSize);
/external/llvm/tools/llvm-readobj/
H A DELFDumper.cpp2853 auto SectionSize = local
2856 return ((Sec.sh_offset + SectionSize <= Phdr.p_filesz + Phdr.p_offset)
2871 auto SectionSize = local
2874 return ((Sec.sh_addr + SectionSize <= Phdr.p_vaddr + Phdr.p_memsz) &&
/external/llvm/tools/yaml2obj/
H A Dyaml2coff.cpp177 CP.SectionTableSize = COFF::SectionSize * CP.Obj.Sections.size();

Completed in 370 milliseconds