Home
last modified time | relevance | path

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

12

/openbsd-src/gnu/llvm/llvm/include/llvm/MC/
H A DMCContext.h376 unsigned EntrySize,
390 unsigned EntrySize; member
392 ELFEntrySizeKey(StringRef SectionName, unsigned Flags, unsigned EntrySize) in ELFEntrySizeKey()
393 : SectionName(SectionName), Flags(Flags), EntrySize(EntrySize) {} in ELFEntrySizeKey()
400 return EntrySize < Other.EntrySize;
569 unsigned Flags, unsigned EntrySize) { in getELFSection() argument
570 return getELFSection(Section, Type, Flags, EntrySize, "", false, in getELFSection()
575 unsigned Flags, unsigned EntrySize, in getELFSection() argument
577 return getELFSection(Section, Type, Flags, EntrySize, Group, IsComdat, in getELFSection()
582 unsigned Flags, unsigned EntrySize,
[all …]
H A DMCSectionELF.h38 unsigned EntrySize; variable
57 UniqueID(UniqueID), EntrySize(entrySize), Group(group, IsComdat), in MCSectionELF()
74 unsigned getEntrySize() const { return EntrySize; } in getEntrySize()
/openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/
H A DOffloadEmitter.cpp58 if (Doc.EntrySize) in yaml2offload()
59 TheHeader->EntrySize = *Doc.EntrySize; in yaml2offload()
H A DOffloadYAML.cpp54 IO.mapOptional("EntrySize", O.EntrySize); in mapping()
H A DDWARFEmitter.cpp944 Expected<uint64_t> EntrySize = in writeDWARFLists() local
946 if (!EntrySize) in writeDWARFLists()
947 return EntrySize.takeError(); in writeDWARFLists()
948 Length += *EntrySize; in writeDWARFLists()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DStringMapEntry.h38 static void *allocateWithKey(size_t EntrySize, size_t EntryAlign,
44 void *StringMapEntryBase::allocateWithKey(size_t EntrySize, size_t EntryAlign, in allocateWithKey() argument
51 size_t AllocSize = EntrySize + KeyLength + 1; in allocateWithKey()
56 char *Buffer = reinterpret_cast<char *>(Allocation) + EntrySize; in allocateWithKey()
/openbsd-src/gnu/llvm/llvm/lib/MC/
H A DMCContext.cpp467 unsigned EntrySize, in createELFSectionImpl() argument
490 MCSectionELF(Section, Type, Flags, K, EntrySize, Group, Comdat, UniqueID, in createELFSectionImpl()
502 unsigned Flags, unsigned EntrySize, in createELFRelSection() argument
511 I->getKey(), Type, Flags, SectionKind::getReadOnly(), EntrySize, Group, in createELFRelSection()
518 unsigned EntrySize) { in getELFNamedSection() argument
519 return getELFSection(Prefix + "." + Suffix, Type, Flags, EntrySize, Suffix, in getELFNamedSection()
524 unsigned Flags, unsigned EntrySize, in getELFSection() argument
532 return getELFSection(Section, Type, Flags, EntrySize, GroupSym, IsComdat, in getELFSection()
537 unsigned Flags, unsigned EntrySize, in getELFSection() argument
596 createELFSectionImpl(CachedName, Type, Flags, Kind, EntrySize, GroupSym, in getELFSection()
[all …]
H A DMCSectionELF.cpp176 if (EntrySize) { in printSwitchToSection()
178 OS << "," << EntrySize; in printSwitchToSection()
H A DELFObjectWriter.cpp207 uint64_t EntrySize);
639 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32; in computeSymbolTable() local
641 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize); in computeSymbolTable()
823 unsigned EntrySize; in createRelocationSection() local
825 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela); in createRelocationSection()
827 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel); in createRelocationSection()
834 RelaSectionName, Rela ? ELF::SHT_RELA : ELF::SHT_REL, Flags, EntrySize, in createRelocationSection()
916 MaybeAlign Alignment, uint64_t EntrySize) { in WriteSecHdrEntry() argument
926 WriteWord(EntrySize); // sh_entsize in WriteSecHdrEntry()
H A DMCAsmStreamer.cpp2474 const MCExpr *EntrySize = MCConstantExpr::create(LengthFieldSize, Ctx); in emitDwarfLineStartLabel() local
2476 MCSymbolRefExpr::create(DebugLineSymTmp, Ctx), EntrySize, Ctx); in emitDwarfLineStartLabel()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp59 unsigned EntrySize = Asm.getDwarfOffsetByteSize(); in emitStringOffsetsTableHeader() local
64 Asm.emitDwarfUnitLength(getNumIndexedStrings() * EntrySize + 4, in emitStringOffsetsTableHeader()
H A DWinException.cpp589 const MCExpr *EntrySize = MCConstantExpr::create(16, Ctx); in emitCSpecificHandlerTable() local
590 const MCExpr *EntryCount = MCBinaryExpr::createDiv(LabelDiff, EntrySize, Ctx); in emitCSpecificHandlerTable()
/openbsd-src/gnu/llvm/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp653 unsigned EntrySize, bool UniqueSectionName) { in getELFSectionNameForGlobal() argument
662 std::string SizeSpec = ".rodata.str" + utostr(EntrySize) + "."; in getELFSectionNameForGlobal()
666 Name += utostr(EntrySize); in getELFSectionNameForGlobal()
707 unsigned &EntrySize, unsigned &NextUniqueID, in calcUniqueIDUpdateFlagsAndSize() argument
742 EntrySize = 0; in calcUniqueIDUpdateFlagsAndSize()
758 Ctx.getELFUniqueIDForEntsize(SectionName, Flags, EntrySize); in calcUniqueIDUpdateFlagsAndSize()
767 getELFSectionNameForGlobal(GO, Kind, Mang, TM, EntrySize, false); in calcUniqueIDUpdateFlagsAndSize()
817 unsigned EntrySize = getEntrySizeForKind(Kind); in selectExplicitSectionGlobal() local
819 GO, SectionName, Kind, TM, Ctx, Mang, Flags, EntrySize, NextUniqueID, in selectExplicitSectionGlobal()
824 SectionName, getELFSectionType(SectionName, Kind), Flags, EntrySize, in selectExplicitSectionGlobal()
[all …]
/openbsd-src/gnu/llvm/llvm/include/llvm/ObjectYAML/
H A DOffloadYAML.h44 std::optional<uint64_t> EntrySize; member
/openbsd-src/gnu/llvm/clang/lib/DirectoryWatcher/windows/
H A DDirectoryWatcher-windows.cpp102 size_t EntrySize = sizeof(FILE_NOTIFY_INFORMATION) + MAX_PATH * sizeof(WCHAR); in DirectoryWatcherWindows() local
103 Notifications.resize((4 * EntrySize) / sizeof(DWORD)); in DirectoryWatcherWindows()
/openbsd-src/gnu/llvm/llvm/lib/Object/
H A DOffloadBinary.cpp193 TheHeader->EntrySize > TheHeader->Size - sizeof(Header)) in create()
232 TheHeader.EntrySize = sizeof(Entry); in write()
/openbsd-src/gnu/llvm/llvm/include/llvm/Object/
H A DOffloadBinary.h111 uint64_t EntrySize; // Size of the metadata entry in bytes. member
/openbsd-src/gnu/llvm/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp80 Shdr.sh_entsize = Sec.EntrySize; in writeShdr()
102 Sec.EntrySize = sizeof(Elf_Sym); in visit()
103 Sec.Size = Sec.Symbols.size() * Sec.EntrySize; in visit()
111 Sec.EntrySize = Sec.Type == SHT_REL ? sizeof(Elf_Rel) : sizeof(Elf_Rela); in visit()
112 Sec.Size = Sec.Relocations.size() * Sec.EntrySize; in visit()
709 Size += this->EntrySize; in addSymbol()
744 Size = Symbols.size() * EntrySize; in removeSymbols()
1765 Sec->EntrySize = Shdr.sh_entsize; in readSectionHeaders()
H A DELFObject.h404 uint32_t EntrySize = 0; variable
679 EntrySize = 4; in SectionIndexSection()
/openbsd-src/gnu/llvm/compiler-rt/lib/scudo/standalone/
H A Dcombined.h1429 uptr EntrySize = atomic_load_relaxed(&Entry->AllocationSize); in getRingBufferErrorInfo() local
1439 if (FaultAddr < EntryPtr || FaultAddr >= EntryPtr + EntrySize) in getRingBufferErrorInfo()
1447 FaultAddr >= EntryPtr + EntrySize + getPageSizeCached()) in getRingBufferErrorInfo()
1474 R->allocation_size = EntrySize; in getRingBufferErrorInfo()
/openbsd-src/gnu/llvm/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp368 unsigned EntrySize = in select() local
370 assert(isPowerOf2_32(EntrySize) && in select()
377 .addImm(Log2_32(EntrySize)); in select()
/openbsd-src/gnu/llvm/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp1062 uint8_t EntrySize = getDwarfOffsetByteSize(); in validateContributionSize() local
1065 uint64_t ValidationSize = alignTo(Size, EntrySize); in validateContributionSize()
H A DDWARFContext.cpp202 unsigned EntrySize = Contribution->getDwarfOffsetByteSize(); in dumpStringOffsetsSection() local
206 StrOffsetExt.getRelocatedValue(EntrySize, &Offset); in dumpStringOffsetsSection()
/openbsd-src/gnu/llvm/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp129 void printRVATable(uint64_t TableVA, uint64_t Count, uint64_t EntrySize,
818 uint64_t EntrySize, PrintExtraCB PrintExtra) { in printRVATable() argument
823 Obj->getVaPtr(TableVA + Count * EntrySize - 1, TableEnd)) in printRVATable()
826 for (uintptr_t I = TableStart; I < TableEnd; I += EntrySize) { in printRVATable()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp1526 unsigned EntrySize = getJumpTableEntrySize(); in buildBitSetsFromFunctionsNative() local
1528 GlobalLayout[Functions[I]] = I * EntrySize; in buildBitSetsFromFunctionsNative()

12