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

  /src/external/apache2/llvm/dist/llvm/include/llvm/Object/
IRSymtab.h 57 StringRef get(StringRef Strtab) const {
58 return {Strtab.data() + Offset, Size};
230 /// This class can be used to read a Symtab and Strtab produced by
233 StringRef Symtab, Strtab;
241 StringRef str(storage::Str S) const { return S.get(Strtab); }
255 Reader(StringRef Symtab, StringRef Strtab) : Symtab(Symtab), Strtab(Strtab) {
362 /// irsymtab are owned by Symtab and Strtab.
364 SmallVector<char, 0> Symtab, Strtab;
    [all...]
IRObjectFile.h 77 /// for the irsymtab are owned by Symtab and Strtab.
80 SmallVector<char, 0> Symtab, Strtab;
  /src/external/apache2/llvm/dist/llvm/include/llvm/Bitcode/
BitcodeWriter.h 69 void copyStrtab(StringRef Strtab);
BitcodeReader.h 66 StringRef Strtab;
93 StringRef getStrtab() const { return Strtab; }
  /src/external/apache2/llvm/dist/llvm/lib/Object/
IRObjectFile.cpp 153 F.Strtab = std::move(FCOrErr->Strtab);
IRSymtab.cpp 382 FC.Strtab.resize(StrtabBuilder.getSize());
383 StrtabBuilder.write((uint8_t *)FC.Strtab.data());
386 {FC.Strtab.data(), FC.Strtab.size()}};
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Reader/
BitcodeReader.cpp 420 BitcodeReaderBase(BitstreamCursor Stream, StringRef Strtab)
421 : Stream(std::move(Stream)), Strtab(Strtab) {
427 StringRef Strtab;
475 if (Record[0] + Record[1] > Strtab.size())
477 return {StringRef(Strtab.data() + Record[0], Record[1]), Record.slice(2)};
569 BitcodeReader(BitstreamCursor Stream, StringRef Strtab,
813 ModuleSummaryIndexBitcodeReader(BitstreamCursor Stream, StringRef Strtab,
861 BitcodeReader::BitcodeReader(BitstreamCursor Stream, StringRef Strtab,
864 : BitcodeReaderBase(std::move(Stream), Strtab), Context(Context)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/LTO/
LTO.h 114 SmallVector<char, 0> Strtab;
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
ELFEmitter.cpp 180 /// The future ".strtab" section.
203 const StringTableBuilder &Strtab);
376 ImplicitSections.insert(ImplicitSections.end(), {".strtab"});
620 else if (SecName == ".strtab")
710 return ".strtab";
898 const StringTableBuilder &Strtab) {
912 Symbol.st_name = Strtab.getOffset(ELFYAML::dropUniqueSuffix(Sym.Name));
1842 // Add the regular symbol names to .strtab section.
1882 // Finalize .strtab and .dynstr sections. We do that early because want to
  /src/external/apache2/llvm/dist/llvm/lib/LTO/
LTO.cpp 496 File->Strtab = std::move(FOrErr->Strtab);
  /src/external/apache2/llvm/dist/llvm/lib/Bitcode/Writer/
BitcodeWriter.cpp 1157 // COMDAT: [strtab offset, strtab size, selection_kind]
1329 // GLOBALVAR: [strtab offset, strtab size, type, isconst, initid,
1375 // FUNCTION: [strtab offset, strtab size, type, callingconv, isproto,
1413 // ALIAS: [strtab offset, strtab size, alias type, aliasee val#, linkage,
1437 // IFUNC: [strtab offset, strtab size, ifunc type, address space, resolve
    [all...]

Completed in 36 milliseconds