| /llvm-project-15.0.7/llvm/lib/Demangle/ |
| H A D | RustDemangle.cpp | 39 enum class BasicType { enum 470 case BasicType::I8: in printBasicType() 473 case BasicType::I16: in printBasicType() 476 case BasicType::I32: in printBasicType() 479 case BasicType::I64: in printBasicType() 488 case BasicType::U8: in printBasicType() 491 case BasicType::U16: in printBasicType() 494 case BasicType::U32: in printBasicType() 497 case BasicType::U64: in printBasicType() 551 BasicType Type; in demangleType() [all …]
|
| /llvm-project-15.0.7/clang/utils/TableGen/ |
| H A D | RISCVVEmitter.cpp | 123 static BasicType ParseBasicType(char c) { in ParseBasicType() 126 return BasicType::Int8; in ParseBasicType() 129 return BasicType::Int16; in ParseBasicType() 132 return BasicType::Int32; in ParseBasicType() 135 return BasicType::Int64; in ParseBasicType() 138 return BasicType::Float16; in ParseBasicType() 141 return BasicType::Float32; in ParseBasicType() 144 return BasicType::Float64; in ParseBasicType() 148 return BasicType::Unknown; in ParseBasicType() 338 BasicType BT = ParseBasicType(I); in createHeader() [all …]
|
| /llvm-project-15.0.7/clang/lib/Sema/ |
| H A D | SemaRISCVVectorLookup.cpp | 180 BasicType BaseType = BasicType::Unknown; in InitIntrinsicList() 199 TypeRangeMaskShift <= static_cast<unsigned int>(BasicType::MaxOffset); in InitIntrinsicList() 202 BaseType = static_cast<BasicType>(BaseTypeI); in InitIntrinsicList() 208 if (BaseType == BasicType::Float16 && !HasZvfh) in InitIntrinsicList() 211 if (BaseType == BasicType::Float32 && !HasVectorFloat32) in InitIntrinsicList() 214 if (BaseType == BasicType::Float64 && !HasVectorFloat64) in InitIntrinsicList() 221 if ((BaseType == BasicType::Int64) && in InitIntrinsicList()
|
| /llvm-project-15.0.7/clang/include/clang/Support/ |
| H A D | RISCVVIntrinsicUtils.h | 130 enum class BasicType : uint8_t { enum 173 BasicType BT; 193 RVVType() : BT(BasicType::Unknown), LMUL(0), Valid(false) {} in RVVType() 194 RVVType(BasicType BT, int Log2LMUL, const PrototypeDescriptor &Profile); 270 computeTypes(BasicType BT, int Log2LMUL, unsigned NF, 272 static llvm::Optional<RVVTypePtr> computeType(BasicType BT, int Log2LMUL, 342 getSuffixStr(BasicType Type, int Log2LMUL,
|
| /llvm-project-15.0.7/clang/lib/Support/ |
| H A D | RISCVVIntrinsicUtils.cpp | 76 RVVType::RVVType(BasicType BT, int Log2LMUL, in RVVType() 333 case BasicType::Int8: in applyBasicType() 337 case BasicType::Int16: in applyBasicType() 341 case BasicType::Int32: in applyBasicType() 345 case BasicType::Int64: in applyBasicType() 349 case BasicType::Float16: in applyBasicType() 353 case BasicType::Float32: in applyBasicType() 357 case BasicType::Float64: in applyBasicType() 789 RVVType::computeTypes(BasicType BT, int Log2LMUL, unsigned NF, in computeTypes() 807 static uint64_t computeRVVTypeHashValue(BasicType BT, int Log2LMUL, in computeRVVTypeHashValue() [all …]
|
| /llvm-project-15.0.7/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 261 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const; 283 lldb::BasicType GetBasicTypeEnumeration() const; 285 static lldb::BasicType GetBasicTypeEnumeration(ConstString name);
|
| H A D | TypeSystem.h | 292 virtual lldb::BasicType 428 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
|
| /llvm-project-15.0.7/lldb/include/lldb/API/ |
| H A D | SBType.h | 162 lldb::BasicType GetBasicType(); 165 lldb::SBType GetBasicType(lldb::BasicType type);
|
| H A D | SBModule.h | 223 lldb::SBType GetBasicType(lldb::BasicType type);
|
| H A D | SBTarget.h | 789 lldb::SBType GetBasicType(lldb::BasicType type);
|
| /llvm-project-15.0.7/lldb/unittests/TestingSupport/Symbol/ |
| H A D | ClangTestUtils.h | 63 *ast, "Source", ast->GetBasicType(lldb::BasicType::eBasicTypeChar), in SourceASTWithRecord()
|
| /llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.h | 207 CompilerType GetBasicType(lldb::BasicType type); 209 static lldb::BasicType GetBasicTypeEnumeration(ConstString name); 721 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override; 753 lldb::BasicType 756 static lldb::BasicType 1018 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
|
| /llvm-project-15.0.7/lldb/bindings/interface/ |
| H A D | SBType.i | 559 lldb::BasicType 563 GetBasicType (lldb::BasicType type);
|
| H A D | SBModule.i | 279 GetBasicType(lldb::BasicType type);
|
| H A D | SBTarget.i | 461 GetBasicType(lldb::BasicType type);
|
| /llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | PdbUtil.h | 149 lldb::BasicType
|
| H A D | PdbAstBuilder.h | 73 clang::QualType GetBasicType(lldb::BasicType type);
|
| H A D | UdtRecordCompleter.cpp | 186 lldb::BasicType basic_type_enum = member_ct.GetBasicTypeEnumeration(); in visitKnownMember()
|
| H A D | PdbAstBuilder.cpp | 799 lldb::BasicType bt = GetCompilerTypeForSimpleKind(ti.getSimpleKind()); in CreateSimpleType() 1028 clang::QualType PdbAstBuilder::GetBasicType(lldb::BasicType type) { in GetBasicType()
|
| H A D | PdbUtil.cpp | 823 lldb::BasicType
|
| /llvm-project-15.0.7/lldb/unittests/Symbol/ |
| H A D | TestTypeSystemClang.cpp | 39 QualType GetBasicQualType(BasicType type) const { in GetBasicQualType() 250 const std::vector<lldb::BasicType> types_to_test = { in TEST_F() 257 for (lldb::BasicType basic_type : types_to_test) { in TEST_F() 277 CompilerType basic_compiler_type = ast.GetBasicType(BasicType::eBasicTypeInt); in TEST_F()
|
| /llvm-project-15.0.7/lldb/source/API/ |
| H A D | SBType.cpp | 355 lldb::BasicType SBType::GetBasicType() { in GetBasicType() 363 SBType SBType::GetBasicType(lldb::BasicType basic_type) { in GetBasicType()
|
| H A D | SBModule.cpp | 461 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) { in GetBasicType()
|
| /llvm-project-15.0.7/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 474 CompilerType::GetBasicTypeFromAST(lldb::BasicType basic_type) const { in GetBasicTypeFromAST() 523 lldb::BasicType CompilerType::GetBasicTypeEnumeration() const { in GetBasicTypeEnumeration()
|
| /llvm-project-15.0.7/lldb/include/lldb/ |
| H A D | lldb-enumerations.h | 749 enum BasicType { enum
|