| /openbsd-src/gnu/llvm/llvm/lib/MC/MCParser/ |
| H A D | ELFAsmParser.cpp | 156 bool maybeParseSectionType(StringRef &TypeName); 402 bool ELFAsmParser::maybeParseSectionType(StringRef &TypeName) { in maybeParseSectionType() argument 417 TypeName = getTok().getString(); in maybeParseSectionType() 419 } else if (getParser().parseIdentifier(TypeName)) in maybeParseSectionType() 531 StringRef TypeName; in ParseSectionArguments() local 589 if (maybeParseSectionType(TypeName)) in ParseSectionArguments() 593 if (TypeName.empty()) { in ParseSectionArguments() 622 if (TypeName.empty()) { in ParseSectionArguments() 636 if (TypeName == "init_array") in ParseSectionArguments() 638 else if (TypeName == "fini_array") in ParseSectionArguments() [all …]
|
| H A D | WasmAsmParser.cpp | 247 auto TypeName = Lexer->getTok().getString(); in parseDirectiveType() local 248 if (TypeName == "function") { in parseDirectiveType() 254 } else if (TypeName == "global") in parseDirectiveType() 256 else if (TypeName == "object") in parseDirectiveType()
|
| /openbsd-src/gnu/llvm/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
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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 | 116 class TypeName { 119 TypeName(const char *Name) : Name(Name) {} in TypeName() function 163 Arg(TypeName TN) : Kind(AK_TypeName), String(TN.getName()) {} in Arg() 214 Diag &operator<<(TypeName TN) { return AddArg(TN); } 259 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()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/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()
|
| H A D | ItaniumMangle.cpp | 3601 std::string TypeName = in mangleAArch64NeonVectorType() local 3603 Out << TypeName.length() << TypeName; in mangleAArch64NeonVectorType() 3646 StringRef TypeName; in mangleAArch64FixedSveVectorType() local 3649 TypeName = "__SVInt8_t"; in mangleAArch64FixedSveVectorType() 3653 TypeName = "__SVUint8_t"; in mangleAArch64FixedSveVectorType() 3655 TypeName = "__SVBool_t"; in mangleAArch64FixedSveVectorType() 3659 TypeName = "__SVInt16_t"; in mangleAArch64FixedSveVectorType() 3662 TypeName = "__SVUint16_t"; in mangleAArch64FixedSveVectorType() 3665 TypeName = "__SVInt32_t"; in mangleAArch64FixedSveVectorType() 3668 TypeName = "__SVUint32_t"; in mangleAArch64FixedSveVectorType() [all …]
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/utils/TableGen/ |
| H A D | DFAEmitter.cpp | 224 std::string TypeName; member in __anon1cdffbd70211::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 | 666 StringRef TypeName; variable 669 : Matcher(CheckValueType), TypeName(type_name) {} in CheckValueTypeMatcher() 671 StringRef getTypeName() const { return TypeName; } in getTypeName() 680 return cast<CheckValueTypeMatcher>(M)->TypeName == TypeName; in isEqualImpl()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/ |
| H A D | AMDGPUHSAMetadataStreamer.cpp | 300 StringRef TypeName; in emitKernelArg() local 303 TypeName = cast<MDString>(Node->getOperand(ArgNo))->getString(); in emitKernelArg() 341 TypeName, BaseTypeName, AccQual, TypeQual); in emitKernelArg() 346 MaybeAlign PointeeAlign, StringRef Name, StringRef TypeName, in emitKernelArg() argument 352 Arg.mTypeName = std::string(TypeName); in emitKernelArg() 709 StringRef TypeName; in emitKernelArg() local 712 TypeName = cast<MDString>(Node->getOperand(ArgNo))->getString(); in emitKernelArg() 752 PointeeAlign, Name, TypeName, BaseTypeName, AccQual, TypeQual); in emitKernelArg() 758 StringRef Name, StringRef TypeName, StringRef BaseTypeName, in emitKernelArg() argument 764 if (!TypeName.empty()) in emitKernelArg() [all …]
|
| H A D | AMDGPUHSAMetadataStreamer.h | 106 StringRef Name = "", StringRef TypeName = "", 201 StringRef Name = "", StringRef TypeName = "",
|
| /openbsd-src/gnu/llvm/clang/include/clang/AST/ |
| H A D | QualTypeNames.h | 66 namespace TypeName {
|
| /openbsd-src/gnu/usr.bin/gcc/gcc/testsuite/g++.old-deja/g++.brendan/ |
| H A D | template7.C | 43 X TypeName; member
|
| /openbsd-src/gnu/llvm/llvm/lib/ObjectYAML/ |
| H A D | CodeViewYAMLSymbols.cpp | 65 LLVM_YAML_STRONG_TYPEDEF(StringRef, TypeName) in LLVM_YAML_IS_SEQUENCE_VECTOR() 67 LLVM_YAML_DECLARE_SCALAR_TRAITS(TypeName, QuotingType::Single) in LLVM_YAML_IS_SEQUENCE_VECTOR() 69 StringRef ScalarTraits<TypeName>::input(StringRef S, void *V, TypeName &T) { in LLVM_YAML_IS_SEQUENCE_VECTOR() 73 void ScalarTraits<TypeName>::output(const TypeName &T, void *V, in output()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/clang/lib/Analysis/FlowSensitive/Models/ |
| H A D | UncheckedOptionalAccessModel.cpp | 255 auto TypeName = Type->getAsCXXRecordDecl()->getQualifiedNameAsString(); in isOptionalType() local 256 return TypeName == "std::optional" || TypeName == "absl::optional" || in isOptionalType() 257 TypeName == "base::Optional"; in isOptionalType()
|
| /openbsd-src/gnu/llvm/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()
|
| /openbsd-src/gnu/llvm/llvm/lib/Target/BPF/ |
| H A D | BPFAbstractMemberAccess.cpp | 857 std::string TypeName; in computeBaseAndAccessKey() local 895 TypeName = std::string(PossibleTypeDef->getName()); in computeBaseAndAccessKey() 946 TypeName = std::string(CTy->getName()); in computeBaseAndAccessKey() 957 assert(TypeName.size()); in computeBaseAndAccessKey() 1002 AccessKey = "llvm." + TypeName + ":" + std::to_string(InfoKind) + ":" + in computeBaseAndAccessKey()
|
| H A D | BTFDebug.cpp | 126 uint32_t OffsetInBits, StringRef TypeName) in BTFTypeInt() argument 127 : Name(TypeName) { in BTFTypeInt() 428 BTFTypeFloat::BTFTypeFloat(uint32_t SizeInBits, StringRef TypeName) in BTFTypeFloat() argument 429 : Name(TypeName) { in BTFTypeFloat() 1595 StringRef TypeName = CTy->getName(); in endModule() local 1601 if (StructType->getName() == TypeName) { in endModule() 1608 auto FwdTypeEntry = std::make_unique<BTFTypeFwd>(TypeName, IsUnion); in endModule()
|
| /openbsd-src/gnu/llvm/llvm/include/llvm/DebugInfo/Symbolize/ |
| H A D | MarkupFilter.h | 129 void reportTypeError(StringRef Str, StringRef TypeName) const;
|