| /freebsd-12.1/contrib/llvm/lib/MC/ |
| H A D | MCContext.cpp | 319 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 D | MCSectionELF.cpp | 162 if (EntrySize) { in PrintSwitchToSection() 164 OS << "," << EntrySize; in PrintSwitchToSection()
|
| H A D | ELFObjectWriter.cpp | 221 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 D | MCSectionELF.h | 44 unsigned EntrySize; variable 58 Flags(flags), UniqueID(UniqueID), EntrySize(entrySize), Group(group), in MCSectionELF() 76 unsigned getEntrySize() const { return EntrySize; } in getEntrySize()
|
| H A D | MCContext.h | 273 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 D | DwarfStringPool.cpp | 62 unsigned EntrySize = 4; in emitStringOffsetsTableHeader() local 68 Asm.emitInt32(getNumIndexedStrings() * EntrySize + 4); in emitStringOffsetsTableHeader()
|
| H A D | WinException.cpp | 567 const MCExpr *EntrySize = MCConstantExpr::create(16, Ctx); in emitCSpecificHandlerTable() local 568 const MCExpr *EntryCount = MCBinaryExpr::createDiv(LabelDiff, EntrySize, Ctx); in emitCSpecificHandlerTable()
|
| H A D | AsmPrinter.cpp | 1867 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 D | Object.cpp | 71 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 D | Object.h | 260 uint32_t EntrySize = 0; variable 489 EntrySize = 4; in SectionIndexSection()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/ |
| H A D | TargetLoweringObjectFileImpl.cpp | 616 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 D | DWARFUnit.cpp | 761 uint8_t EntrySize = getDwarfOffsetByteSize(); in validateContributionSize() local 764 uint64_t ValidationSize = alignTo(Size, EntrySize); in validateContributionSize()
|
| H A D | DWARFContext.cpp | 181 unsigned EntrySize = Contribution->getDwarfOffsetByteSize(); in dumpDWARFv5StringOffsetsSection() local 186 StrOffsetExt.getRelocatedValue(EntrySize, &Offset); in dumpDWARFv5StringOffsetsSection()
|
| /freebsd-12.1/contrib/llvm/tools/llvm-readobj/ |
| H A D | COFFDumper.cpp | 116 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 D | ELFDumper.cpp | 2939 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 D | SyntheticSections.h | 767 enum { EntrySize = 28 }; enumerator
|
| H A D | SyntheticSections.cpp | 2742 Buf += EntrySize; in writeTo() 2751 return EntrySize * getVerDefNum(); in getSize()
|
| /freebsd-12.1/contrib/llvm/lib/Transforms/IPO/ |
| H A D | LowerTypeTests.cpp | 1425 unsigned EntrySize = getJumpTableEntrySize(); in buildBitSetsFromFunctionsNative() local 1427 GlobalLayout[Functions[I]] = I * EntrySize; in buildBitSetsFromFunctionsNative()
|
| /freebsd-12.1/contrib/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | LegalizeDAG.cpp | 3500 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 D | MachODump.cpp | 7491 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()
|