Home
last modified time | relevance | path

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

/external/llvm/lib/ExecutionEngine/RuntimeDyld/
DRuntimeDyld.cpp365 uint64_t SectionSize = DataSize + StubBufSize; in computeTotalAllocSize() local
373 SectionSize += 4; in computeTotalAllocSize()
375 if (!SectionSize) in computeTotalAllocSize()
376 SectionSize = 1; in computeTotalAllocSize()
379 CodeSectionSizes.push_back(SectionSize); in computeTotalAllocSize()
381 ROSectionSizes.push_back(SectionSize); in computeTotalAllocSize()
383 RWSectionSizes.push_back(SectionSize); in computeTotalAllocSize()
/external/llvm/lib/DebugInfo/DWARF/
DDWARFContext.cpp730 uint64_t SectionSize = RelocatedSection->getSize(); in DWARFContextInMemory() local
793 if (Address + R.Width > SectionSize) { in DWARFContextInMemory()
796 << 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()
DWinCOFFObjectWriter.cpp225 size_t COFFSection::size() { return COFF::SectionSize; } in size()
915 offset += COFF::SectionSize * Header.NumberOfSections; in writeObject()
DMCDwarf.cpp818 const MCExpr *SectionSize = MakeStartMinusEndExpr(*MCOS, in EmitGenDwarfRanges() local
821 emitAbsValue(*MCOS, SectionSize, AddrSize); in EmitGenDwarfRanges()
/external/llvm/include/llvm/Support/
DCOFF.h51 SectionSize = 40, enumerator
/external/llvm/lib/Object/
DMachOObjectFile.cpp76 unsigned SectionSize = Is64 ? sizeof(MachO::section_64) : in getSectionPtr() local
79 uintptr_t SectionAddr = CommandAddr + SegmentLoadSize + Sec * SectionSize; in getSectionPtr()
214 const unsigned SectionSize = in parseSegmentLoadCommand() local
216 if (S.nsects > std::numeric_limits<uint32_t>::max() / SectionSize || in parseSegmentLoadCommand()
217 S.nsects * SectionSize > Load.C.cmdsize - SegmentLoadSize) in parseSegmentLoadCommand()
DCOFFObjectFile.cpp958 uint32_t SectionSize = getSectionSize(Sec); in getSectionContents() local
959 if (checkOffset(Data, ConStart, SectionSize)) in getSectionContents()
961 Res = makeArrayRef(reinterpret_cast<const uint8_t *>(ConStart), SectionSize); in getSectionContents()
/external/llvm/tools/yaml2obj/
Dyaml2coff.cpp168 CP.SectionTableSize = COFF::SectionSize * CP.Obj.Sections.size(); in layoutCOFF()