Home
last modified time | relevance | path

Searched refs:TypeName (Results 1 – 25 of 52) sorted by relevance

123

/freebsd-13.1/contrib/llvm-project/clang/lib/Headers/
H A D__clang_cuda_builtin_vars.h46 #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-13.1/contrib/llvm-project/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp415 TypeName = getTok().getString(); in maybeParseSectionType()
511 StringRef TypeName; in ParseSectionArguments() local
574 if (TypeName.empty()) { in ParseSectionArguments()
603 if (TypeName.empty()) { in ParseSectionArguments()
617 if (TypeName == "init_array") in ParseSectionArguments()
619 else if (TypeName == "fini_array") in ParseSectionArguments()
623 else if (TypeName == "nobits") in ParseSectionArguments()
625 else if (TypeName == "progbits") in ParseSectionArguments()
627 else if (TypeName == "note") in ParseSectionArguments()
629 else if (TypeName == "unwind") in ParseSectionArguments()
[all …]
H A DWasmAsmParser.cpp234 auto TypeName = Lexer->getTok().getString(); in parseDirectiveType() local
235 if (TypeName == "function") { in parseDirectiveType()
241 } else if (TypeName == "global") in parseDirectiveType()
243 else if (TypeName == "object") in parseDirectiveType()
/freebsd-13.1/contrib/llvm-project/llvm/lib/DebugInfo/CodeView/
H A DTypeIndex.cpp94 StringRef TypeName; in printTypeIndex() local
97 TypeName = TypeIndex::simpleTypeName(TI); in printTypeIndex()
99 TypeName = Types.getTypeName(TI); in printTypeIndex()
102 if (!TypeName.empty()) in printTypeIndex()
103 Printer.printHex(FieldName, TypeName, TI.getIndex()); in printTypeIndex()
/freebsd-13.1/sys/contrib/dev/acpica/compiler/
H A Daslpredef.c726 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-13.1/contrib/llvm-project/compiler-rt/lib/ubsan/
H A Dubsan_handlers_cxx.cpp61 << 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 Dubsan_diag.h116 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 Dubsan_value.h93 char TypeName[1]; variable
110 const char *getTypeName() const { return TypeName; } in getTypeName()
H A Dubsan_diag.cpp416 bool __ubsan::IsVptrCheckSuppressed(const char *TypeName) { in IsVptrCheckSuppressed() argument
420 return suppression_ctx->Match(TypeName, kVptrCheck, &s); in IsVptrCheckSuppressed()
/freebsd-13.1/contrib/llvm-project/clang/lib/AST/
H A DInheritViz.cpp79 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 DQualTypeNames.cpp20 namespace TypeName { namespace
219 return TypeName::createNestedNameSpecifier( in getFullyQualifiedNestedNameSpecifier()
226 return TypeName::createNestedNameSpecifier( in getFullyQualifiedNestedNameSpecifier()
248 return TypeName::createNestedNameSpecifier(Ctx, TD, in getFullyQualifiedNestedNameSpecifier()
252 return TypeName::createNestedNameSpecifier(Ctx, TDD->getDecl(), in getFullyQualifiedNestedNameSpecifier()
H A DItaniumMangle.cpp3527 std::string TypeName = in mangleAArch64NeonVectorType() local
3529 Out << TypeName.length() << TypeName; in mangleAArch64NeonVectorType()
3572 StringRef TypeName; in mangleAArch64FixedSveVectorType() local
3575 TypeName = "__SVInt8_t"; in mangleAArch64FixedSveVectorType()
3581 TypeName = "__SVBool_t"; in mangleAArch64FixedSveVectorType()
3585 TypeName = "__SVInt16_t"; in mangleAArch64FixedSveVectorType()
3588 TypeName = "__SVUint16_t"; in mangleAArch64FixedSveVectorType()
3591 TypeName = "__SVInt32_t"; in mangleAArch64FixedSveVectorType()
3594 TypeName = "__SVUint32_t"; in mangleAArch64FixedSveVectorType()
3597 TypeName = "__SVInt64_t"; in mangleAArch64FixedSveVectorType()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/utils/TableGen/
H A DDFAEmitter.cpp246 std::string TypeName; member in __anonfc3bf0940211::CustomDfaEmitter
249 CustomDfaEmitter(const UniqueVector<ActionTuple> &Actions, StringRef TypeName) in CustomDfaEmitter() argument
250 : Actions(Actions), TypeName(TypeName) {} in CustomDfaEmitter()
374 void CustomDfaEmitter::printActionType(raw_ostream &OS) { OS << TypeName; } in printActionType()
H A DDAGISelMatcher.h666 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()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AMDGPU/
H A DAMDGPUHSAMetadataStreamer.cpp301 StringRef TypeName; in emitKernelArg() local
304 TypeName = cast<MDString>(Node->getOperand(ArgNo))->getString(); in emitKernelArg()
343 TypeName, BaseTypeName, AccQual, TypeQual); in emitKernelArg()
349 StringRef TypeName, in emitKernelArg() argument
356 Arg.mTypeName = std::string(TypeName); in emitKernelArg()
695 StringRef TypeName; in emitKernelArg() local
698 TypeName = cast<MDString>(Node->getOperand(ArgNo))->getString(); in emitKernelArg()
740 PointeeAlign, Name, TypeName, BaseTypeName, AccQual, TypeQual); in emitKernelArg()
746 StringRef Name, StringRef TypeName, StringRef BaseTypeName, in emitKernelArg() argument
752 if (!TypeName.empty()) in emitKernelArg()
[all …]
H A DAMDGPUHSAMetadataStreamer.h93 StringRef Name = "", StringRef TypeName = "",
178 StringRef Name = "", StringRef TypeName = "",
/freebsd-13.1/contrib/llvm-project/clang/include/clang/AST/
H A DQualTypeNames.h66 namespace TypeName {
/freebsd-13.1/contrib/llvm-project/llvm/lib/ObjectYAML/
H A DCodeViewYAMLSymbols.cpp63 LLVM_YAML_STRONG_TYPEDEF(StringRef, TypeName) in LLVM_YAML_IS_SEQUENCE_VECTOR()
65 LLVM_YAML_DECLARE_SCALAR_TRAITS(TypeName, QuotingType::Single) in LLVM_YAML_IS_SEQUENCE_VECTOR()
67 StringRef ScalarTraits<TypeName>::input(StringRef S, void *V, TypeName &T) { in LLVM_YAML_IS_SEQUENCE_VECTOR()
71 void ScalarTraits<TypeName>::output(const TypeName &T, void *V, in output()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/BPF/
H A DBTFDebug.cpp115 uint32_t OffsetInBits, StringRef TypeName) in BTFTypeInt() argument
116 : Name(TypeName) { in BTFTypeInt()
374 BTFTypeFloat::BTFTypeFloat(uint32_t SizeInBits, StringRef TypeName) in BTFTypeFloat() argument
375 : Name(TypeName) { in BTFTypeFloat()
1338 StringRef TypeName = Fixup.first; in endModule() local
1344 if (StructType->getName() == TypeName) { in endModule()
1351 auto FwdTypeEntry = std::make_unique<BTFTypeFwd>(TypeName, IsUnion); in endModule()
H A DBPFAbstractMemberAccess.cpp766 std::string TypeName; in computeBaseAndAccessKey() local
804 TypeName = std::string(PossibleTypeDef->getName()); in computeBaseAndAccessKey()
855 TypeName = std::string(CTy->getName()); in computeBaseAndAccessKey()
866 assert(TypeName.size()); in computeBaseAndAccessKey()
911 AccessKey = "llvm." + TypeName + ":" + std::to_string(InfoKind) + ":" + in computeBaseAndAccessKey()
H A DBTFDebug.h92 StringRef TypeName);
203 BTFTypeFloat(uint32_t SizeInBits, StringRef TypeName);
/freebsd-13.1/contrib/llvm-project/llvm/tools/llvm-pdbutil/
H A DLinePrinter.cpp270 bool LinePrinter::IsTypeExcluded(llvm::StringRef TypeName, uint32_t Size) { in IsTypeExcluded() argument
271 if (IsItemExcluded(TypeName, IncludeTypeFilters, ExcludeTypeFilters)) in IsTypeExcluded()
H A DLinePrinter.h69 bool IsTypeExcluded(llvm::StringRef TypeName, uint32_t Size);
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Sema/
H A DDeclSpec.h1767 TypeName, // Abstract declarator for types. enumerator
2006 case DeclaratorContext::TypeName: in mayOmitIdentifier()
2051 case DeclaratorContext::TypeName: in mayHaveIdentifier()
2091 case DeclaratorContext::TypeName: in mayHaveDecompositionDeclarator()
2152 case DeclaratorContext::TypeName: in mayBeFollowedByCXXDirectInit()
2366 case DeclaratorContext::TypeName: in isFunctionDeclarationContext()
2400 case DeclaratorContext::TypeName: in isExpressionContext()
/freebsd-13.1/contrib/llvm-project/clang/include/clang/Analysis/Analyses/
H A DConsumed.h100 StringRef TypeName) {} in warnReturnTypestateForUnconsumableType() argument

123