Home
last modified time | relevance | path

Searched refs:addString (Results 1 – 20 of 20) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/CodeGen/AsmPrinter/
H A DDIEHash.cpp42 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 DDwarfUnit.cpp247 void DwarfUnit::addString(DIE &Die, dwarf::Attribute Attribute, in addString() function in DwarfUnit
510 addString(Die, in addLinkageName()
713 addString(Buffer, dwarf::DW_AT_name, Name); in constructTypeDIE()
737 addString(Buffer, dwarf::DW_AT_name, Name); in constructTypeDIE()
786 addString(Buffer, dwarf::DW_AT_name, Name); in constructTypeDIE()
896 addString(AnnotationDie, dwarf::DW_AT_name, Name->getString()); in addAnnotation()
898 addString(AnnotationDie, dwarf::DW_AT_const_value, Data->getString()); in addAnnotation()
978 addString(ElemDie, dwarf::DW_AT_APPLE_property_name, PropertyName); in constructTypeDIE()
984 addString(ElemDie, dwarf::DW_AT_APPLE_property_getter, GetterName); in constructTypeDIE()
987 addString(ElemDie, dwarf::DW_AT_APPLE_property_setter, SetterName); in constructTypeDIE()
[all …]
H A DDIEHash.h69 void addString(StringRef Str);
H A DDwarfDebug.cpp1018 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()
1068 NewCU.addString(Die, attrDWOName, DIUnit->getSplitDebugFilename()); in finishUnitAttributes()
1294 TheCU.addString(TheCU.getUnitDie(), attrDWOName, in finalizeModuleInfo()
1296 SkCU->addString(SkCU->getUnitDie(), attrDWOName, in finalizeModuleInfo()
[all …]
H A DDwarfCompileUnit.cpp186 addString(*VariableDIE, dwarf::DW_AT_name, GV->getDisplayName()); in getOrCreateGlobalVariableDIE()
405 addString(NDie, dwarf::DW_AT_name, Name); in getOrCreateCommonBlock()
1378 addString(*IMDie, dwarf::DW_AT_name, Name); in constructImportedEntityDIE()
1636 addString(VariableDie, dwarf::DW_AT_name, Name); in applyCommonDbgVariableAttributes()
1655 addString(LabelDie, dwarf::DW_AT_name, Name); in applyLabelAttributes()
1710 addString(Die, dwarf::DW_AT_name, in createBaseTypeDIEs()
H A DDwarfUnit.h176 void addString(DIE &Die, dwarf::Attribute Attribute, StringRef Str);
/freebsd/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp87 BTFType.NameOff = BDebug.addString(Name); in completeType()
122 BTFType.NameOff = BDebug.addString(Name); in completeType()
159 BTFType.NameOff = BDebug.addString(Name); in completeType()
180 BTFType.NameOff = BDebug.addString(ETy->getName()); in completeType()
187 BTFEnum.NameOff = BDebug.addString(Enum->getName()); in completeType()
219 BTFType.NameOff = BDebug.addString(ETy->getName()); in completeType()
226 BTFEnum.NameOff = BDebug.addString(Enum->getName()); in completeType()
293 BTFType.NameOff = BDebug.addString(STy->getName()); in completeType()
301 BTFMember.NameOff = BDebug.addString(DDTy->getName()); in completeType()
355 Param.NameOff = BDebug.addString(FuncArgNames[I]); in completeType()
[all …]
H A DBTFDebug.h262 uint32_t addString(StringRef S);
417 size_t addString(StringRef S) { return StringTable.addString(S); } in addString() function
/freebsd/contrib/llvm-project/llvm/include/llvm/BinaryFormat/
H A DMsgPackDocument.h365 V = addString(V);
382 Raw = addString(Raw);
439 StringRef addString(StringRef S) { in addString() function
/freebsd/contrib/llvm-project/llvm/include/llvm/ExecutionEngine/Orc/
H A DMachOBuilder.h247 StringId SI = Builder.addString(Name);
312 StringId addString(StringRef Str) {
314 addString("");
325 StringId SI = addString(Name);
/freebsd/contrib/llvm-project/lld/ELF/
H A DSyntheticSections.cpp1250 unsigned StringTableSection::addString(StringRef s, bool hashIt) { in addString() function in StringTableSection
1329 addInt(DT_FILTER, part.dynStrTab->addString(s)); in computeContents()
1331 addInt(DT_AUXILIARY, part.dynStrTab->addString(s)); in computeContents()
1335 part.dynStrTab->addString(config->rpath)); in computeContents()
1339 addInt(DT_NEEDED, part.dynStrTab->addString(file->soName)); in computeContents()
1343 addInt(DT_SONAME, part.dynStrTab->addString(config->soName)); in computeContents()
1346 addInt(DT_NEEDED, part.dynStrTab->addString(config->soName)); in computeContents()
1347 addInt(DT_SONAME, part.dynStrTab->addString(part.name)); in computeContents()
2192 symbols.push_back({b, strTabSec.addString(b->getName(), false)}); in addSymbol()
3676 fileDefNameOff = getPartition().dynStrTab->addString(getFileDefName()); in finalizeContents()
[all …]
H A DSyntheticSections.h395 unsigned addString(StringRef s, bool hashIt = true);
H A DWriter.cpp1893 osec->shName = in.shStrTab->addString(osec->name); in finalizeSections()
/freebsd/contrib/llvm-project/lld/MachO/
H A DSyntheticSections.cpp1170 stab.strx = stringTableSection.addString(saver().save(sourceFile)); in emitBeginSourceStab()
1195 stab.strx = stringTableSection.addString(adjustedPath); in emitObjectFileStab()
1213 astStab.strx = stringTableSection.addString(s); in emitStabs()
1275 symStab.strx = stringTableSection.addString(defined->getName()); in emitStabs()
1294 uint32_t strx = stringTableSection.addString(sym->getName()); in finalizeContents()
1527 uint32_t StringTableSection::addString(StringRef str) { in addString() function in StringTableSection
H A DSyntheticSections.h439 uint32_t addString(StringRef);
/freebsd/contrib/llvm-project/llvm/include/llvm/MC/
H A DMCDwarf.h76 size_t addString(StringRef Path);
/freebsd/contrib/llvm-project/llvm/lib/MC/
H A DMCDwarf.cpp354 size_t MCDwarfLineStr::addString(StringRef Path) { in addString() function in MCDwarfLineStr
361 size_t Offset = addString(Path); in emitRef()
/freebsd/contrib/llvm-project/llvm/lib/ObjCopy/ELF/
H A DELFObject.cpp592 void StringTableSection::addString(StringRef Name) { StrTabBuilder.add(Name); } in addString() function in StringTableSection
831 SymbolNames->addString(Sym->Name); in prepareForLayout()
2630 Obj.SectionNames->addString(Sec.Name); in finalize()
H A DELFObject.h720 void addString(StringRef Name);
/freebsd/contrib/llvm-project/lld/ELF/Arch/
H A DARM.cpp1472 osec->shName = shstrtab->addString(osec->name); in writeARMCmseImportLib()