| /freebsd-14.2/contrib/llvm-project/llvm/lib/MC/MCParser/ |
| H A D | ELFAsmParser.cpp | 431 TypeName = getTok().getString(); in maybeParseSectionType() 545 StringRef TypeName; in ParseSectionArguments() local 607 if (TypeName.empty()) { in ParseSectionArguments() 636 if (TypeName.empty()) { in ParseSectionArguments() 650 if (TypeName == "init_array") in ParseSectionArguments() 652 else if (TypeName == "fini_array") in ParseSectionArguments() 656 else if (TypeName == "nobits") in ParseSectionArguments() 658 else if (TypeName == "progbits") in ParseSectionArguments() 660 else if (TypeName == "note") in ParseSectionArguments() 662 else if (TypeName == "unwind") in ParseSectionArguments() [all …]
|
| H A D | WasmAsmParser.cpp | 248 auto TypeName = Lexer->getTok().getString(); in parseDirectiveType() local 249 if (TypeName == "function") { in parseDirectiveType() 255 } else if (TypeName == "global") in parseDirectiveType() 257 else if (TypeName == "object") in parseDirectiveType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DWARFLinker/Parallel/ |
| H A D | OutputSections.cpp | 39 TypeEntry *TypeName, in DebugType2TypeDieRefPatch() argument 41 : SectionPatch({PatchOffset}), Die(Die), TypeName(TypeName), in DebugType2TypeDieRefPatch() 46 : SectionPatch({PatchOffset}), Die(Die), TypeName(TypeName), in DebugTypeStrPatch() 50 TypeEntry *TypeName, in DebugTypeLineStrPatch() argument 52 : SectionPatch({PatchOffset}), Die(Die), TypeName(TypeName), in DebugTypeLineStrPatch() 58 : Die(Die), TypeName(TypeName), Directory(Directory), FilePath(FilePath) {} in DebugTypeDeclFilePatch() 317 TypeEntryBody *TypeEntry = Patch.TypeName->getValue().load(); in applyPatches() 319 formatv("No data for type {0}", Patch.TypeName->getKey()) in applyPatches() 345 TypeEntryBody *TypeEntry = Patch.TypeName->getValue().load(); in applyPatches() 347 formatv("No data for type {0}", Patch.TypeName->getKey()) in applyPatches() [all …]
|
| H A D | OutputSections.h | 105 DebugType2TypeDieRefPatch(uint64_t PatchOffset, DIE *Die, TypeEntry *TypeName, 109 TypeEntry *TypeName = nullptr; member 114 DebugTypeStrPatch(uint64_t PatchOffset, DIE *Die, TypeEntry *TypeName, 118 TypeEntry *TypeName = nullptr; member 123 DebugTypeLineStrPatch(uint64_t PatchOffset, DIE *Die, TypeEntry *TypeName, 127 TypeEntry *TypeName = nullptr; member 132 DebugTypeDeclFilePatch(DIE *Die, TypeEntry *TypeName, StringEntry *Directory, 136 TypeEntry *TypeName = nullptr; member
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/Headers/ |
| H A D | __clang_cuda_builtin_vars.h | 46 #define __CUDA_DISALLOW_BUILTINVAR_ACCESS(TypeName) \ argument 47 __attribute__((device)) TypeName() __DELETE; \ 48 __attribute__((device)) TypeName(const TypeName &) __DELETE; \ 49 __attribute__((device)) void operator=(const TypeName &) const __DELETE; \ 50 __attribute__((device)) TypeName *operator&() const __DELETE
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/ |
| H A D | TypeIndex.cpp | 95 StringRef TypeName; in printTypeIndex() local 98 TypeName = TypeIndex::simpleTypeName(TI); in printTypeIndex() 100 TypeName = Types.getTypeName(TI); in printTypeIndex() 103 if (!TypeName.empty()) in printTypeIndex() 104 Printer.printHex(FieldName, TypeName, TI.getIndex()); in printTypeIndex()
|
| /freebsd-14.2/contrib/llvm-project/compiler-rt/lib/ubsan/ |
| H A D | ubsan_handlers_cxx.cpp | 61 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 65 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 70 << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 77 << DTI.getOffset() << TypeName(DTI.getMostDerivedTypeName()) in HandleDynamicTypeCacheMiss() 78 << TypeName(DTI.getSubobjectTypeName()) in HandleDynamicTypeCacheMiss() 143 << TypeName(DTI.getMostDerivedTypeName()); in __ubsan_handle_cfi_bad_type()
|
| H A D | ubsan_diag.h | 96 class TypeName { 99 TypeName(const char *Name) : Name(Name) {} in TypeName() function 143 Arg(TypeName TN) : Kind(AK_TypeName), String(TN.getName()) {} in Arg() 194 Diag &operator<<(TypeName TN) { return AddArg(TN); } 239 bool IsVptrCheckSuppressed(const char *TypeName);
|
| H A D | ubsan_value.h | 93 char TypeName[1]; variable 110 const char *getTypeName() const { return TypeName; } in getTypeName()
|
| /freebsd-14.2/sys/contrib/dev/acpica/compiler/ |
| H A D | aslpredef.c | 726 char *TypeName; in ApCheckObjectType() local 744 TypeName = "Integer"; in ApCheckObjectType() 750 TypeName = "String"; in ApCheckObjectType() 756 TypeName = "Buffer"; in ApCheckObjectType() 763 TypeName = "Package"; in ApCheckObjectType() 784 TypeName = "Reference"; in ApCheckObjectType() 791 TypeName = UtGetOpName (Op->Asl.ParseOpcode); in ApCheckObjectType() 812 PredefinedName, TypeName, AslGbl_StringBuffer); in ApCheckObjectType() 817 PredefinedName, TypeName, PackageIndex, AslGbl_StringBuffer); in ApCheckObjectType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/ExtractAPI/ |
| H A D | TypedefUnderlyingTypeResolver.cpp | 49 std::string TypeName = Type.getAsString(); in getSymbolReferenceForType() local 56 TypeName = TypeDecl->getName().str(); in getSymbolReferenceForType() 63 return {API.copyString(TypeName), API.copyString(TypeUSR)}; in getSymbolReferenceForType()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/AST/ |
| H A D | InheritViz.cpp | 79 std::string TypeName = Type.getAsString(); in WriteNode() local 80 Out << " [ shape=\"box\", label=\"" << llvm::DOT::EscapeString(TypeName); in WriteNode() 85 if (TypeName != CanonType.getAsString()) { in WriteNode()
|
| H A D | QualTypeNames.cpp | 20 namespace TypeName { namespace 221 return TypeName::createNestedNameSpecifier( in getFullyQualifiedNestedNameSpecifier() 228 return TypeName::createNestedNameSpecifier( in getFullyQualifiedNestedNameSpecifier() 250 return TypeName::createNestedNameSpecifier(Ctx, TD, in getFullyQualifiedNestedNameSpecifier() 254 return TypeName::createNestedNameSpecifier(Ctx, TDD->getDecl(), in getFullyQualifiedNestedNameSpecifier()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/DirectX/ |
| H A D | DXILOpBuilder.cpp | 159 StringRef TypeName) { in constructOverloadTypeName() argument 161 return TypeName.str(); in constructOverloadTypeName() 164 return (Twine(TypeName) + getOverloadTypeName(Kind)).str(); in constructOverloadTypeName() 179 std::string TypeName = constructOverloadTypeName(Kind, "dx.types.ResRet."); in getResRetType() local 182 return getOrCreateStructType(TypeName, FieldTypes, Ctx); in getResRetType()
|
| /freebsd-14.2/contrib/llvm-project/llvm/utils/TableGen/ |
| H A D | DFAEmitter.cpp | 224 std::string TypeName; member in __anon4755e2d60211::CustomDfaEmitter 227 CustomDfaEmitter(const UniqueVector<ActionTuple> &Actions, StringRef TypeName) in CustomDfaEmitter() argument 228 : Actions(Actions), TypeName(TypeName) {} in CustomDfaEmitter() 353 void CustomDfaEmitter::printActionType(raw_ostream &OS) { OS << TypeName; } in printActionType()
|
| H A D | DAGISelMatcher.h | 699 StringRef TypeName; variable 702 : Matcher(CheckValueType), TypeName(type_name) {} in CheckValueTypeMatcher() 704 StringRef getTypeName() const { return TypeName; } in getTypeName() 713 return cast<CheckValueTypeMatcher>(M)->TypeName == TypeName; in isEqualImpl()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUHSAMetadataStreamer.cpp | 284 StringRef TypeName; in emitKernelArg() local 287 TypeName = cast<MDString>(Node->getOperand(ArgNo))->getString(); in emitKernelArg() 331 PointeeAlign, Name, TypeName, BaseTypeName, ActAccQual, in emitKernelArg() 338 StringRef Name, StringRef TypeName, StringRef BaseTypeName, in emitKernelArg() argument 344 if (!TypeName.empty()) in emitKernelArg() 345 Arg[".type_name"] = Arg.getDocument()->getNode(TypeName, /*Copy=*/true); in emitKernelArg()
|
| /freebsd-14.2/contrib/llvm-project/clang/include/clang/AST/ |
| H A D | QualTypeNames.h | 66 namespace TypeName {
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/SPIRV/ |
| H A D | SPIRVBuiltins.h | 49 parseBuiltinTypeNameToTargetExtType(std::string TypeName,
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFTypePrinter.cpp | 161 StringRef TypeName = D.getShortName(); in appendUnqualifiedNameBefore() local 162 if (TypeName == "decltype(nullptr)") in appendUnqualifiedNameBefore() 163 TypeName = "std::nullptr_t"; in appendUnqualifiedNameBefore() 165 OS << TypeName; in appendUnqualifiedNameBefore()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLSymbols.cpp | 66 LLVM_YAML_STRONG_TYPEDEF(StringRef, TypeName) in LLVM_YAML_IS_SEQUENCE_VECTOR() 68 LLVM_YAML_DECLARE_SCALAR_TRAITS(TypeName, QuotingType::Single) in LLVM_YAML_IS_SEQUENCE_VECTOR() 70 StringRef ScalarTraits<TypeName>::input(StringRef S, void *V, TypeName &T) { in LLVM_YAML_IS_SEQUENCE_VECTOR() 74 void ScalarTraits<TypeName>::output(const TypeName &T, void *V, in output()
|
| /freebsd-14.2/contrib/llvm-project/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | StdVariantChecker.cpp | 79 bool isStdType(const Type *Type, llvm::StringRef TypeName) { in isStdType() argument 83 return (Decl->getName() == TypeName) && Decl->isInStdNamespace(); in isStdType()
|
| H A D | TaggedUnionModeling.h | 31 bool isStdType(const Type *Type, const std::string &TypeName);
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/DebugInfo/PDB/Native/ |
| H A D | LinePrinter.cpp | 277 bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName, uint64_t Size) { in IsTypeExcluded() argument 278 if (IsItemExcluded(TypeName, IncludeTypeFilters, ExcludeTypeFilters)) in IsTypeExcluded()
|
| /freebsd-14.2/contrib/llvm-project/llvm/lib/Target/BPF/ |
| H A D | BPFAbstractMemberAccess.cpp | 839 std::string TypeName; in computeBaseAndAccessKey() local 877 TypeName = std::string(PossibleTypeDef->getName()); in computeBaseAndAccessKey() 928 TypeName = std::string(CTy->getName()); in computeBaseAndAccessKey() 939 assert(TypeName.size()); in computeBaseAndAccessKey() 984 AccessKey = "llvm." + TypeName + ":" + std::to_string(InfoKind) + ":" + in computeBaseAndAccessKey()
|