| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Remarks/ |
| H A D | RemarkStringTable.h | 36 struct StringTable { struct 43 StringTable() = default; argument 46 StringTable(const StringTable &) = delete; 47 StringTable &operator=(const StringTable &) = delete; argument 49 StringTable(StringTable &&) = default; 50 StringTable &operator=(StringTable &&) = default; argument 53 StringTable(const ParsedStringTable &Other);
|
| H A D | BitstreamRemarkSerializer.h | 97 void emitMetaStrTab(const StringTable &StrTab); 108 Optional<const StringTable *> StrTab = None, 112 void emitRemarkBlock(const Remark &Remark, StringTable &StrTab); 139 StringTable StrTab); 168 Optional<const StringTable *> StrTab; 174 Optional<const StringTable *> StrTab = None, 185 Optional<const StringTable *> StrTab = None,
|
| H A D | YAMLRemarkSerializer.h | 38 Optional<StringTable> StrTab = None); 52 Optional<StringTable> StrTab = None); 78 StringTable StrTab) in YAMLStrTabRemarkSerializer() 95 const StringTable &StrTab; 99 const StringTable &StrTab) in YAMLStrTabMetaSerializer()
|
| H A D | RemarkSerializer.h | 47 Optional<StringTable> StrTab; 83 raw_ostream &OS, remarks::StringTable StrTab);
|
| H A D | RemarkLinker.h | 41 StringTable StrTab;
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Remarks/ |
| H A D | RemarkStringTable.cpp | 23 StringTable::StringTable(const ParsedStringTable &Other) : StrTab() { in StringTable() function in StringTable 31 std::pair<unsigned, StringRef> StringTable::add(StringRef Str) { in add() 41 void StringTable::internalize(Remark &R) { in internalize() 56 void StringTable::serialize(raw_ostream &OS) const { in serialize() 65 std::vector<StringRef> StringTable::serialize() const { in serialize()
|
| H A D | YAMLRemarkSerializer.cpp | 64 StringTable &StrTab = *Serializer->StrTab; in mapping() 89 StringTable &StrTab = *Serializer->StrTab; in mapping() 144 StringTable &StrTab = *Serializer->StrTab; in mapping() 163 Optional<StringTable> StrTabIn) in LLVM_YAML_IS_SEQUENCE_VECTOR() 168 Optional<StringTable> StrTabIn) in YAMLRemarkSerializer() 222 static void emitStrTab(raw_ostream &OS, Optional<const StringTable *> StrTab) { in emitStrTab()
|
| H A D | BitstreamRemarkSerializer.cpp | 93 const StringTable &StrTab) { in emitMetaStrTab() 234 Optional<const StringTable *> StrTab, Optional<StringRef> Filename) { in emitMetaBlock() 268 StringTable &StrTab) { in emitRemarkBlock() 339 StringTable StrTabIn) in BitstreamRemarkSerializer() 355 IsStandalone ? &*StrTab : Optional<const StringTable *>(None)); in emit()
|
| H A D | RemarkSerializer.cpp | 39 raw_ostream &OS, remarks::StringTable StrTab) { in createRemarkSerializer()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/GSYM/ |
| H A D | StringTable.h | 22 struct StringTable { struct 24 StringTable() : Data() {} in StringTable() argument 25 StringTable(StringRef D) : Data(D) {} in StringTable() argument 37 inline raw_ostream &operator<<(raw_ostream &OS, const StringTable &S) { argument
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/Object/ |
| H A D | ArchiveWriter.cpp | 224 NamePos = StringTable.tell(); in printMemberHeader() 225 StringTable << M.MemberName << "/\n"; in printMemberHeader() 229 Insertion.first->second = StringTable.tell(); in printMemberHeader() 230 StringTable << M.MemberName << "/\n"; in printMemberHeader() 291 StringRef StringTable, in computeSymbolTableSize() argument 301 Size += StringTable.size(); in computeSymbolTableSize() 327 StringRef StringTable) { in writeSymbolTable() argument 330 if (StringTable.empty() && !isDarwin(Kind)) in writeSymbolTable() 360 printNBits(Out, Kind, StringTable.size()); in writeSymbolTable() 361 Out << StringTable; in writeSymbolTable() [all …]
|
| H A D | WindowsResource.cpp | 385 TreeNode &TypeNode = addTypeNode(Entry, StringTable); in addEntry() 407 Child = &Node.addNameChild(NameString, StringTable); in addChildren() 485 std::vector<std::vector<UTF16>> &StringTable) { in addTypeNode() argument 487 return addNameChild(Entry.getTypeString(), StringTable); in addTypeNode() 494 std::vector<std::vector<UTF16>> &StringTable) { in addNameNode() argument 496 return addNameChild(Entry.getNameString(), StringTable); in addNameNode() 542 auto NewChild = createStringNode(StringTable.size()); in addNameChild() 543 StringTable.push_back(NameRef); in addNameChild() 634 const ArrayRef<std::vector<UTF16>> StringTable; member in llvm::object::WindowsResourceCOFFWriter 676 for (auto const &String : StringTable) { in performSectionOneLayout() [all …]
|
| /freebsd-13.1/contrib/llvm-project/openmp/runtime/src/ |
| H A D | extractExternal.cpp | 101 class StringTable { class 136 StringTable(rstream &f) { in StringTable() function in StringTable 156 StringTable(const set<string> &strings) { in StringTable() function in StringTable 190 ~StringTable() { delete[] data; } in ~StringTable() 257 StringTable stringTable(f); // read the string table in computeExternalSymbols() 308 StringTable stringTableOld(in); // read original string table in hideSymbols() 337 StringTable stringTableNew = StringTable(strings); in hideSymbols()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/Object/ |
| H A D | WindowsResource.h | 164 ArrayRef<std::vector<UTF16>> getStringTable() const { return StringTable; } in getStringTable() 203 std::vector<std::vector<UTF16>> &StringTable, 206 std::vector<std::vector<UTF16>> &StringTable); 208 std::vector<std::vector<UTF16>> &StringTable); 217 std::vector<std::vector<UTF16>> &StringTable); 253 std::vector<std::vector<UTF16>> StringTable; variable
|
| H A D | Archive.h | 248 StringRef getStringTable() const { return StringTable; } in getStringTable() 257 StringRef StringTable; variable
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/DebugInfo/CodeView/ |
| H A D | DebugStringTableSubsection.h | 36 return S->kind() == DebugSubsectionKind::StringTable; in classof() 61 return S->kind() == DebugSubsectionKind::StringTable; in classof()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | COFFEmitter.cpp | 40 StringTable.append(4, char(0)); in COFFParser() 140 unsigned Index = StringTable.size(); in getStringIndex() 141 StringTable.append(Str.begin(), Str.end()); in getStringIndex() 142 StringTable.push_back(0); in getStringIndex() 154 std::string StringTable; member 304 if (NumberOfSymbols > 0 || CP.StringTable.size() > 4) in layoutCOFF() 309 *reinterpret_cast<support::ulittle32_t *>(&CP.StringTable[0]) = in layoutCOFF() 310 CP.StringTable.size(); in layoutCOFF() 596 OS.write(&CP.StringTable[0], CP.StringTable.size()); in writeCOFF()
|
| /freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | AsmWriterEmitter.cpp | 311 SequenceToOffsetTable<std::string> StringTable; in EmitGetMnemonic() local 326 StringTable.add(Str); in EmitGetMnemonic() 330 StringTable.layout(); in EmitGetMnemonic() 338 Idx = StringTable.get(""); in EmitGetMnemonic() 342 Idx = StringTable.get(Str); in EmitGetMnemonic() 404 StringTable.emitStringLiteralDef(O, " static const char AsmStrs[]"); in EmitGetMnemonic() 552 SequenceToOffsetTable<std::string> StringTable; in emitRegisterNameString() local 585 StringTable.add(AsmName); in emitRegisterNameString() 588 StringTable.layout(); in emitRegisterNameString() 589 StringTable.emitStringLiteralDef(O, Twine(" static const char AsmStrs") + in emitRegisterNameString() [all …]
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/ |
| H A D | YAMLOutputStyle.cpp | 106 bool RequestedStringTable = opts::pdb2yaml::StringTable; in dumpStringTable() 114 Obj.StringTable.emplace(); in dumpStringTable() 122 Obj.StringTable->push_back(*S); in dumpStringTable() 185 case DebugSubsectionKind::StringTable: in convertSubsectionKind() 186 return opts::ModuleSubsection::StringTable; in convertSubsectionKind()
|
| H A D | InputFile.cpp | 171 auto StringTable = File->pdb().getStringTable(); in initializeForPdb() local 172 if (StringTable) in initializeForPdb() 173 SC.setStrings(StringTable->getStringTable()); in initializeForPdb() 175 consumeError(StringTable.takeError()); in initializeForPdb()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | DebugStringTableSubsection.cpp | 23 : DebugSubsectionRef(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsectionRef() 45 : DebugSubsection(DebugSubsectionKind::StringTable) {} in DebugStringTableSubsection()
|
| H A D | StringsAndChecksums.cpp | 34 assert(SR.kind() == DebugSubsectionKind::StringTable); in initializeStrings()
|
| /freebsd-13.1/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCMachObjectWriter.h | 117 StringTableBuilder StringTable; variable 132 StringTable(TargetObjectWriter->is64Bit() ? StringTableBuilder::MachO64 in MachObjectWriter()
|
| /freebsd-13.1/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MachObjectWriter.cpp | 48 StringTable.clear(); in reset() 558 StringTable.add(Symbol.getName()); in computeSymbolTable() 560 StringTable.finalize(); in computeSymbolTable() 577 MSD.StringIndex = StringTable.getOffset(Symbol.getName()); in computeSymbolTable() 603 MSD.StringIndex = StringTable.getOffset(Symbol.getName()); in computeSymbolTable() 940 StringTableOffset, StringTable.getSize()); in writeObject() 1041 StringTable.write(W.OS); in writeObject()
|
| /freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-objcopy/MachO/ |
| H A D | Object.h | 172 struct StringTable { struct 307 StringTable StrTable;
|