Home
last modified time | relevance | path

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

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