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

/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/MC/
H A DMCSectionELF.h39 /// fixed-sized entries 'EntrySize' will be 0.
40 unsigned EntrySize; member in class:llvm::final
59 UniqueID(UniqueID), EntrySize(entrySize), Group(group, IsComdat),
76 unsigned getEntrySize() const { return EntrySize; }
H A DMCContext.h352 unsigned EntrySize,
366 unsigned EntrySize; member in struct:llvm::MCContext::ELFEntrySizeKey
368 ELFEntrySizeKey(StringRef SectionName, unsigned Flags, unsigned EntrySize) argument
369 : SectionName(SectionName), Flags(Flags), EntrySize(EntrySize) {}
376 return EntrySize < Other.EntrySize;
543 unsigned Flags, unsigned EntrySize) {
544 return getELFSection(Section, Type, Flags, EntrySize, "", false,
549 unsigned Flags, unsigned EntrySize,
542 getELFSection(const Twine &Section, unsigned Type, unsigned Flags, unsigned EntrySize) argument
548 getELFSection(const Twine &Section, unsigned Type, unsigned Flags, unsigned EntrySize, const Twine &Group, bool IsComdat) argument
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/include/llvm/ADT/
H A DStringMapEntry.h36 static void *allocateWithKey(size_t EntrySize, size_t EntryAlign,
42 void *StringMapEntryBase::allocateWithKey(size_t EntrySize, size_t EntryAlign, argument
49 size_t AllocSize = EntrySize + KeyLength + 1;
54 char *Buffer = reinterpret_cast<char *>(Allocation) + EntrySize;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/MC/
H A DMCContext.cpp464 unsigned EntrySize,
487 MCSectionELF(Section, Type, Flags, K, EntrySize, Group, Comdat, UniqueID,
499 unsigned Flags, unsigned EntrySize,
508 I->getKey(), Type, Flags, SectionKind::getReadOnly(), EntrySize, Group,
515 unsigned EntrySize) {
516 return getELFSection(Prefix + "." + Suffix, Type, Flags, EntrySize, Suffix,
521 unsigned Flags, unsigned EntrySize,
529 return getELFSection(Section, Type, Flags, EntrySize, GroupSym, IsComdat,
534 unsigned Flags, unsigned EntrySize,
562 createELFSectionImpl(CachedName, Type, Flags, Kind, EntrySize, GroupSy
462 createELFSectionImpl(StringRef Section, unsigned Type, unsigned Flags, SectionKind K, unsigned EntrySize, const MCSymbolELF *Group, bool Comdat, unsigned UniqueID, const MCSymbolELF *LinkedToSym) argument
498 createELFRelSection(const Twine &Name, unsigned Type, unsigned Flags, unsigned EntrySize, const MCSymbolELF *Group, const MCSectionELF *RelInfoSection) argument
512 getELFNamedSection(const Twine &Prefix, const Twine &Suffix, unsigned Type, unsigned Flags, unsigned EntrySize) argument
520 getELFSection(const Twine &Section, unsigned Type, unsigned Flags, unsigned EntrySize, const Twine &Group, bool IsComdat, unsigned UniqueID, const MCSymbolELF *LinkedToSym) argument
533 getELFSection(const Twine &Section, unsigned Type, unsigned Flags, unsigned EntrySize, const MCSymbolELF *GroupSym, bool IsComdat, unsigned UniqueID, const MCSymbolELF *LinkedToSym) argument
579 recordELFMergeableSectionInfo(StringRef SectionName, unsigned Flags, unsigned UniqueID, unsigned EntrySize) argument
605 getELFUniqueIDForEntsize(StringRef SectionName, unsigned Flags, unsigned EntrySize) argument
[all...]
H A DMCSectionELF.cpp167 if (EntrySize) {
169 OS << "," << EntrySize; local
H A DELFObjectWriter.cpp207 uint64_t EntrySize);
609 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32; local
611 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize);
791 unsigned EntrySize; local
793 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rela) : sizeof(ELF::Elf32_Rela);
795 EntrySize = is64Bit() ? sizeof(ELF::Elf64_Rel) : sizeof(ELF::Elf32_Rel);
803 Flags, EntrySize, Sec.getGroup(), &Sec);
902 uint64_t Alignment, uint64_t EntrySize) {
912 WriteWord(EntrySize); // sh_entsize
899 WriteSecHdrEntry(uint32_t Name, uint32_t Type, uint64_t Flags, uint64_t Address, uint64_t Offset, uint64_t Size, uint32_t Link, uint32_t Info, uint64_t Alignment, uint64_t EntrySize) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
H A DDwarfStringPool.cpp59 unsigned EntrySize = Asm.getDwarfOffsetByteSize(); local
64 Asm.emitDwarfUnitLength(getNumIndexedStrings() * EntrySize + 4,
H A DWinException.cpp600 const MCExpr *EntrySize = MCConstantExpr::create(16, Ctx); local
601 const MCExpr *EntryCount = MCBinaryExpr::createDiv(LabelDiff, EntrySize, Ctx);
H A DAsmPrinter.cpp2211 unsigned EntrySize = MJTI->getEntrySize(getDataLayout()); local
2212 OutStreamer->emitValue(Value, EntrySize);
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/
H A DTargetLoweringObjectFileImpl.cpp608 unsigned EntrySize, bool UniqueSectionName) {
617 std::string SizeSpec = ".rodata.str" + utostr(EntrySize) + ".";
621 Name += utostr(EntrySize);
695 unsigned EntrySize = getEntrySizeForKind(Kind); local
717 EntrySize);
726 GO, Kind, Mang, TM, EntrySize, false);
737 SectionName, Flags, EntrySize);
749 EntrySize = 0;
760 SectionName, getELFSectionType(SectionName, Kind), Flags, EntrySize,
808 unsigned EntrySize local
606 getELFSectionNameForGlobal(const GlobalObject *GO, SectionKind Kind, Mangler &Mang, const TargetMachine &TM, unsigned EntrySize, bool UniqueSectionName) argument
2296 unsigned EntrySize = getEntrySizeForKind(Kind); local
[all...]
/netbsd-current/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
H A DDWARFEmitter.cpp943 Expected<uint64_t> EntrySize =
945 if (!EntrySize)
946 return EntrySize.takeError();
947 Length += *EntrySize;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Target/Mips/
H A DMipsInstructionSelector.cpp368 unsigned EntrySize = local
370 assert(isPowerOf2_32(EntrySize) &&
377 .addImm(Log2_32(EntrySize));
/netbsd-current/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
H A DDWARFUnit.cpp814 uint8_t EntrySize = getDwarfOffsetByteSize(); local
817 uint64_t ValidationSize = alignTo(Size, EntrySize);
H A DDWARFContext.cpp197 unsigned EntrySize = Contribution->getDwarfOffsetByteSize(); local
201 StrOffsetExt.getRelocatedValue(EntrySize, &Offset);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
H A DObject.cpp82 Shdr.sh_entsize = Sec.EntrySize;
104 Sec.EntrySize = sizeof(Elf_Sym);
105 Sec.Size = Sec.Symbols.size() * Sec.EntrySize;
113 Sec.EntrySize = Sec.Type == SHT_REL ? sizeof(Elf_Rel) : sizeof(Elf_Rela);
114 Sec.Size = Sec.Relocations.size() * Sec.EntrySize;
751 Size += this->EntrySize;
786 Size = Symbols.size() * EntrySize;
1784 Sec->EntrySize = Shdr.sh_entsize;
H A DObject.h404 uint32_t EntrySize = 0; member in class:llvm::objcopy::elf::SectionBase
671 EntrySize = 4;
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp128 void printRVATable(uint64_t TableVA, uint64_t Count, uint64_t EntrySize,
768 uint64_t EntrySize, PrintExtraCB PrintExtra) {
773 Obj->getVaPtr(TableVA + Count * EntrySize - 1, TableEnd))
776 for (uintptr_t I = TableStart; I < TableEnd; I += EntrySize) {
767 printRVATable(uint64_t TableVA, uint64_t Count, uint64_t EntrySize, PrintExtraCB PrintExtra) argument
/netbsd-current/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
H A DLowerTypeTests.cpp1515 unsigned EntrySize = getJumpTableEntrySize(); local
1517 GlobalLayout[Functions[I]] = I * EntrySize;
/netbsd-current/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp3510 unsigned EntrySize =
3517 if (llvm::isPowerOf2_32(EntrySize))
3520 DAG.getConstant(llvm::Log2_32(EntrySize), dl, Index.getValueType()));
3523 DAG.getConstant(EntrySize, dl, Index.getValueType()));
3527 EVT MemVT = EVT::getIntegerVT(*DAG.getContext(), EntrySize * 8);
/netbsd-current/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
H A DMachODump.cpp7895 uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t); local
7902 for (unsigned Offset = 0; Offset < Contents.size(); Offset += EntrySize) {
7912 uint32_t EntryIdx = RelocAddress / EntrySize;
7913 uint32_t OffsetInEntry = RelocAddress - EntryIdx * EntrySize;

Completed in 468 milliseconds