Home
last modified time | relevance | path

Searched refs:EntrySize (Results 1 – 20 of 20) sorted by relevance

/freebsd-12.1/contrib/llvm/lib/MC/
H A DMCContext.cpp319 unsigned EntrySize, in createELFSectionImpl() argument
342 Section, Type, Flags, K, EntrySize, Group, UniqueID, R, Associated); in createELFSectionImpl()
353 unsigned Flags, unsigned EntrySize, in createELFRelSection() argument
362 I->getKey(), Type, Flags, SectionKind::getReadOnly(), EntrySize, Group, in createELFRelSection()
369 unsigned EntrySize) { in getELFNamedSection() argument
370 return getELFSection(Prefix + "." + Suffix, Type, Flags, EntrySize, Suffix); in getELFNamedSection()
374 unsigned Flags, unsigned EntrySize, in getELFSection() argument
381 return getELFSection(Section, Type, Flags, EntrySize, GroupSym, UniqueID, in getELFSection()
386 unsigned Flags, unsigned EntrySize, in getELFSection() argument
411 CachedName, Type, Flags, Kind, EntrySize, GroupSym, UniqueID, Associated); in getELFSection()
H A DMCSectionELF.cpp162 if (EntrySize) { in PrintSwitchToSection()
164 OS << "," << EntrySize; in PrintSwitchToSection()
H A DELFObjectWriter.cpp221 uint64_t EntrySize);
618 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32; in computeSymbolTable() local
620 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize, ""); in computeSymbolTable()
790 unsigned EntrySize; in createRelocationSection() local
792 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela); in createRelocationSection()
794 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel); in createRelocationSection()
802 Flags, EntrySize, Sec.getGroup(), &Sec); in createRelocationSection()
897 uint64_t Alignment, uint64_t EntrySize) { in WriteSecHdrEntry() argument
907 WriteWord(EntrySize); // sh_entsize in WriteSecHdrEntry()
/freebsd-12.1/contrib/llvm/include/llvm/MC/
H A DMCSectionELF.h44 unsigned EntrySize; variable
58 Flags(flags), UniqueID(UniqueID), EntrySize(entrySize), Group(group), in MCSectionELF()
76 unsigned getEntrySize() const { return EntrySize; } in getEntrySize()
H A DMCContext.h273 unsigned EntrySize,
395 unsigned Flags, unsigned EntrySize, in getELFSection() argument
397 return getELFSection(Section, Type, Flags, EntrySize, Group, ~0); in getELFSection()
401 unsigned Flags, unsigned EntrySize, in getELFSection() argument
403 return getELFSection(Section, Type, Flags, EntrySize, Group, UniqueID, in getELFSection()
408 unsigned Flags, unsigned EntrySize,
413 unsigned Flags, unsigned EntrySize,
423 unsigned EntrySize = 0);
426 unsigned Flags, unsigned EntrySize,
/freebsd-12.1/contrib/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp62 unsigned EntrySize = 4; in emitStringOffsetsTableHeader() local
68 Asm.emitInt32(getNumIndexedStrings() * EntrySize + 4); in emitStringOffsetsTableHeader()
H A DWinException.cpp567 const MCExpr *EntrySize = MCConstantExpr::create(16, Ctx); in emitCSpecificHandlerTable() local
568 const MCExpr *EntryCount = MCBinaryExpr::createDiv(LabelDiff, EntrySize, Ctx); in emitCSpecificHandlerTable()
H A DAsmPrinter.cpp1867 unsigned EntrySize = MJTI->getEntrySize(getDataLayout()); in EmitJumpTableEntry() local
1868 OutStreamer->EmitValue(Value, EntrySize); in EmitJumpTableEntry()
/freebsd-12.1/contrib/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp71 Shdr.sh_entsize = Sec.EntrySize; in writeShdr()
87 Sec.EntrySize = sizeof(Elf_Sym); in visit()
88 Sec.Size = Sec.Symbols.size() * Sec.EntrySize; in visit()
95 Sec.EntrySize = Sec.Type == SHT_REL ? sizeof(Elf_Rel) : sizeof(Elf_Rela); in visit()
96 Sec.Size = Sec.Relocations.size() * Sec.EntrySize; in visit()
426 Size += this->EntrySize; in addSymbol()
455 Size = Symbols.size() * EntrySize; in removeSymbols()
1120 Sec.EntrySize = Shdr.sh_entsize; in readSectionHeaders()
H A DObject.h260 uint32_t EntrySize = 0; variable
489 EntrySize = 4; in SectionIndexSection()
/freebsd-12.1/contrib/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp616 unsigned EntrySize = getEntrySizeForKind(Kind); in selectELFSectionForGlobal() local
626 std::string SizeSpec = ".rodata.str" + utostr(EntrySize) + "."; in selectELFSectionForGlobal()
630 Name += utostr(EntrySize); in selectELFSectionForGlobal()
655 EntrySize, Group, UniqueID, AssociatedSymbol); in selectELFSectionForGlobal()
/freebsd-12.1/contrib/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp761 uint8_t EntrySize = getDwarfOffsetByteSize(); in validateContributionSize() local
764 uint64_t ValidationSize = alignTo(Size, EntrySize); in validateContributionSize()
H A DDWARFContext.cpp181 unsigned EntrySize = Contribution->getDwarfOffsetByteSize(); in dumpDWARFv5StringOffsetsSection() local
186 StrOffsetExt.getRelocatedValue(EntrySize, &Offset); in dumpDWARFv5StringOffsetsSection()
/freebsd-12.1/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp116 void printRVATable(uint64_t TableVA, uint64_t Count, uint64_t EntrySize,
769 uint64_t EntrySize, PrintExtraCB PrintExtra) { in printRVATable() argument
772 error(Obj->getVaPtr(TableVA + Count * EntrySize - 1, TableEnd)); in printRVATable()
774 for (uintptr_t I = TableStart; I < TableEnd; I += EntrySize) { in printRVATable()
H A DELFDumper.cpp2939 std::string Number, Type, Size, Address, Offset, Flags, Link, Info, EntrySize, in printSectionHeaders() local
2984 EntrySize = to_string(format_hex_no_prefix(Sec.sh_entsize, 2)); in printSectionHeaders()
2985 Fields[6].Str = EntrySize; in printSectionHeaders()
/freebsd-12.1/contrib/llvm/tools/lld/ELF/
H A DSyntheticSections.h767 enum { EntrySize = 28 }; enumerator
H A DSyntheticSections.cpp2742 Buf += EntrySize; in writeTo()
2751 return EntrySize * getVerDefNum(); in getSize()
/freebsd-12.1/contrib/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp1425 unsigned EntrySize = getJumpTableEntrySize(); in buildBitSetsFromFunctionsNative() local
1427 GlobalLayout[Functions[I]] = I * EntrySize; in buildBitSetsFromFunctionsNative()
/freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp3500 unsigned EntrySize = in ExpandNode() local
3507 if (llvm::isPowerOf2_32(EntrySize)) in ExpandNode()
3510 DAG.getConstant(llvm::Log2_32(EntrySize), dl, Index.getValueType())); in ExpandNode()
3513 DAG.getConstant(EntrySize, dl, Index.getValueType())); in ExpandNode()
3517 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8); in ExpandNode()
/freebsd-12.1/contrib/llvm/tools/llvm-objdump/
H A DMachODump.cpp7491 uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t); in printMachOCompactUnwindSection() local
7499 for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) { in printMachOCompactUnwindSection()
7509 uint32_t EntryIdx = RelocAddress / EntrySize; in printMachOCompactUnwindSection()
7510 uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize; in printMachOCompactUnwindSection()