HomeSort by: relevance | last modified time | path
    Searched refs:EntrySize (Results 1 - 20 of 20) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSectionELF.h 39 /// fixed-sized entries 'EntrySize' will be 0.
40 unsigned EntrySize;
55 unsigned entrySize, const MCSymbolELF *group, bool IsComdat,
59 UniqueID(UniqueID), EntrySize(entrySize), Group(group, IsComdat),
76 unsigned getEntrySize() const { return EntrySize; }
MCContext.h 352 unsigned EntrySize,
366 unsigned EntrySize;
368 ELFEntrySizeKey(StringRef SectionName, unsigned Flags, unsigned EntrySize)
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,
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ADT/
StringMapEntry.h 36 static void *allocateWithKey(size_t EntrySize, size_t EntryAlign,
42 void *StringMapEntryBase::allocateWithKey(size_t EntrySize, size_t EntryAlign,
49 size_t AllocSize = EntrySize + KeyLength + 1;
54 char *Buffer = reinterpret_cast<char *>(Allocation) + EntrySize;
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCContext.cpp 464 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, GroupSym
    [all...]
MCSectionELF.cpp 167 if (EntrySize) {
169 OS << "," << EntrySize;
ELFObjectWriter.cpp 207 uint64_t EntrySize);
609 unsigned EntrySize = is64Bit() ? ELF::SYMENTRY_SIZE64 : ELF::SYMENTRY_SIZE32;
611 Ctx.getELFSection(".symtab", ELF::SHT_SYMTAB, 0, EntrySize);
791 unsigned EntrySize;
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
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
DwarfStringPool.cpp 59 unsigned EntrySize = Asm.getDwarfOffsetByteSize();
64 Asm.emitDwarfUnitLength(getNumIndexedStrings() * EntrySize + 4,
WinException.cpp 600 const MCExpr *EntrySize = MCConstantExpr::create(16, Ctx);
601 const MCExpr *EntryCount = MCBinaryExpr::createDiv(LabelDiff, EntrySize, Ctx);
AsmPrinter.cpp 2211 unsigned EntrySize = MJTI->getEntrySize(getDataLayout());
2212 OutStreamer->emitValue(Value, EntrySize);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 608 unsigned EntrySize, bool UniqueSectionName) {
617 std::string SizeSpec = ".rodata.str" + utostr(EntrySize) + ".";
621 Name += utostr(EntrySize);
695 unsigned EntrySize = getEntrySizeForKind(Kind);
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 = getEntrySizeForKind(Kind)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
DWARFEmitter.cpp 943 Expected<uint64_t> EntrySize =
945 if (!EntrySize)
946 return EntrySize.takeError();
947 Length += *EntrySize;
  /src/external/apache2/llvm/dist/llvm/lib/Target/Mips/
MipsInstructionSelector.cpp 368 unsigned EntrySize =
370 assert(isPowerOf2_32(EntrySize) &&
377 .addImm(Log2_32(EntrySize));
  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/
DWARFUnit.cpp 814 uint8_t EntrySize = getDwarfOffsetByteSize();
817 uint64_t ValidationSize = alignTo(Size, EntrySize);
DWARFContext.cpp 197 unsigned EntrySize = Contribution->getDwarfOffsetByteSize();
201 StrOffsetExt.getRelocatedValue(EntrySize, &Offset);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objcopy/ELF/
Object.cpp 82 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;
Object.h 404 uint32_t EntrySize = 0;
671 EntrySize = 4;
  /src/external/apache2/llvm/dist/llvm/tools/llvm-readobj/
COFFDumper.cpp 128 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) {
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/IPO/
LowerTypeTests.cpp 1515 unsigned EntrySize = getJumpTableEntrySize();
1517 GlobalLayout[Functions[I]] = I * EntrySize;
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
LegalizeDAG.cpp 3510 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);
  /src/external/apache2/llvm/dist/llvm/tools/llvm-objdump/
MachODump.cpp 7895 uint32_t EntrySize = 3 * PointerSize + 2 * sizeof(uint32_t);
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 59 milliseconds