| /freebsd-14.2/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/ |
| H A D | DIEHash.cpp | 42 void DIEHash::addString(StringRef Str) { in addString() function in DIEHash 106 addString(Name); in addParentContext() 145 addString(Name); in hashShallowTypeReference() 297 addString(Value.getDIEString().getString()); in hashAttribute() 303 addString(Value.getDIEInlineString().getString()); in hashAttribute() 362 addString(Name); in hashNestedType()
|
| H A D | DwarfUnit.cpp | 509 addString(Die, in addLinkageName() 697 addString(Buffer, dwarf::DW_AT_name, Name); in constructTypeDIE() 721 addString(Buffer, dwarf::DW_AT_name, Name); in constructTypeDIE() 770 addString(Buffer, dwarf::DW_AT_name, Name); in constructTypeDIE() 1010 addString(Buffer, dwarf::DW_AT_name, Name); in constructTypeDIE() 1113 addString(NDie, dwarf::DW_AT_name, NS->getName()); in getOrCreateNameSpace() 1133 addString(MDie, dwarf::DW_AT_name, M->getName()); in getOrCreateModule() 1137 addString(MDie, dwarf::DW_AT_LLVM_config_macros, in getOrCreateModule() 1438 addString(*IndexTyDie, dwarf::DW_AT_name, Name); in getIndexTyDie() 1572 addString(Enumerator, dwarf::DW_AT_name, Name); in constructEnumTypeDIE() [all …]
|
| H A D | DIEHash.h | 69 void addString(StringRef Str);
|
| H A D | DwarfDebug.cpp | 1018 NewCU.addString(Die, dwarf::DW_AT_producer, ProducerWithFlags); in finishUnitAttributes() 1020 NewCU.addString(Die, dwarf::DW_AT_producer, Producer); in finishUnitAttributes() 1024 NewCU.addString(Die, dwarf::DW_AT_name, FN); in finishUnitAttributes() 1027 NewCU.addString(Die, dwarf::DW_AT_LLVM_sysroot, SysRoot); in finishUnitAttributes() 1030 NewCU.addString(Die, dwarf::DW_AT_APPLE_sdk, SDK); in finishUnitAttributes() 1042 NewCU.addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); in finishUnitAttributes() 1052 NewCU.addString(Die, dwarf::DW_AT_APPLE_flags, Flags); in finishUnitAttributes() 1294 TheCU.addString(TheCU.getUnitDie(), attrDWOName, in finalizeModuleInfo() 1296 SkCU->addString(SkCU->getUnitDie(), attrDWOName, in finalizeModuleInfo() 3357 NewU->addString(Die, dwarf::DW_AT_comp_dir, CompilationDir); in initSkeletonUnit() [all …]
|
| H A D | DwarfCompileUnit.cpp | 171 addString(*VariableDIE, dwarf::DW_AT_name, GV->getDisplayName()); in getOrCreateGlobalVariableDIE() 390 addString(NDie, dwarf::DW_AT_name, Name); in getOrCreateCommonBlock() 1357 addString(*IMDie, dwarf::DW_AT_name, Name); in constructImportedEntityDIE() 1615 addString(VariableDie, dwarf::DW_AT_name, Name); in applyCommonDbgVariableAttributes() 1634 addString(LabelDie, dwarf::DW_AT_name, Name); in applyLabelAttributes() 1689 addString(Die, dwarf::DW_AT_name, in createBaseTypeDIEs()
|
| H A D | DwarfUnit.h | 174 void addString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BTFDebug.cpp | 86 BTFType.NameOff = BDebug.addString(Name); in completeType() 121 BTFType.NameOff = BDebug.addString(Name); in completeType() 158 BTFType.NameOff = BDebug.addString(Name); in completeType() 385 BTFType.NameOff = BDebug.addString(Name); in completeType() 399 BTFType.NameOff = BDebug.addString(Name); in completeType() 415 BTFType.NameOff = BDebug.addString(Name); in completeType() 441 BTFType.NameOff = BDebug.addString(Name); in completeType() 458 BTFType.NameOff = BDebug.addString(Tag); in completeType() 483 BTFType.NameOff = BDebug.addString(Tag); in completeType() 511 addString("\0"); in BTFDebug() [all …]
|
| H A D | BTFDebug.h | 262 uint32_t addString(StringRef S); 413 size_t addString(StringRef S) { return StringTable.addString(S); } in addString() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/BinaryFormat/ |
| H A D | MsgPackDocument.h | 365 V = addString(V); 382 Raw = addString(Raw); 439 StringRef addString(StringRef S) { in addString() function
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/ |
| H A D | MachOBuilder.h | 247 StringId SI = Builder.addString(Name); 312 StringId addString(StringRef Str) { 314 addString(""); 325 StringId SI = addString(Name);
|
| /freebsd-14.2/contrib/llvm-project/lld/ELF/ |
| H A D | SyntheticSections.cpp | 1223 unsigned StringTableSection::addString(StringRef s, bool hashIt) { in addString() function in StringTableSection 1311 addInt(DT_FILTER, part.dynStrTab->addString(s)); in computeContents() 1313 addInt(DT_AUXILIARY, part.dynStrTab->addString(s)); in computeContents() 1317 part.dynStrTab->addString(config->rpath)); in computeContents() 1321 addInt(DT_NEEDED, part.dynStrTab->addString(file->soName)); in computeContents() 1325 addInt(DT_SONAME, part.dynStrTab->addString(config->soName)); in computeContents() 1328 addInt(DT_NEEDED, part.dynStrTab->addString(config->soName)); in computeContents() 1329 addInt(DT_SONAME, part.dynStrTab->addString(part.name)); in computeContents() 2171 symbols.push_back({b, strTabSec.addString(b->getName(), false)}); in addSymbol() 3174 vn.nameStrTab = getPartition().dynStrTab->addString(f->soName); in finalizeContents() [all …]
|
| H A D | SyntheticSections.h | 390 unsigned addString(StringRef s, bool hashIt = true);
|
| H A D | Writer.cpp | 2108 osec->shName = in.shStrTab->addString(osec->name); in finalizeSections()
|
| /freebsd-14.2/contrib/llvm-project/lld/MachO/ |
| H A D | SyntheticSections.cpp | 1107 stab.strx = stringTableSection.addString(saver().save(sourceFile)); in emitBeginSourceStab() 1132 stab.strx = stringTableSection.addString(adjustedPath); in emitObjectFileStab() 1150 astStab.strx = stringTableSection.addString(s); in emitStabs() 1207 symStab.strx = stringTableSection.addString(defined->getName()); in emitStabs() 1226 uint32_t strx = stringTableSection.addString(sym->getName()); in finalizeContents() 1462 uint32_t StringTableSection::addString(StringRef str) { in addString() function in StringTableSection
|
| H A D | SyntheticSections.h | 424 uint32_t addString(StringRef);
|
| /freebsd-14.2/contrib/llvm-project/llvm/include/llvm/MC/ |
| H A D | MCDwarf.h | 76 size_t addString(StringRef Path);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/ |
| H A D | MCDwarf.cpp | 353 size_t MCDwarfLineStr::addString(StringRef Path) { in addString() function in MCDwarfLineStr 360 size_t Offset = addString(Path); in emitRef()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjCopy/ELF/ |
| H A D | ELFObject.cpp | 572 void StringTableSection::addString(StringRef Name) { StrTabBuilder.add(Name); } in addString() function in StringTableSection 811 SymbolNames->addString(Sym->Name); in prepareForLayout() 2582 Obj.SectionNames->addString(Sec.Name); in finalize()
|
| H A D | ELFObject.h | 604 void addString(StringRef Name);
|
| /freebsd-14.2/contrib/llvm-project/lld/ELF/Arch/ |
| H A D | ARM.cpp | 1395 osec->shName = shstrtab->addString(osec->name); in writeARMCmseImportLib()
|