Home
last modified time | relevance | path

Searched refs:BasicType (Results 1 – 25 of 28) sorted by relevance

12

/freebsd/contrib/llvm-project/llvm/lib/Demangle/
H A DRustDemangle.cpp40 enum class BasicType { enum
137 void printBasicType(BasicType);
386 static bool parseBasicType(char C, BasicType &Type) { in parseBasicType()
389 Type = BasicType::I8; in parseBasicType()
392 Type = BasicType::Bool; in parseBasicType()
395 Type = BasicType::Char; in parseBasicType()
398 Type = BasicType::F64; in parseBasicType()
401 Type = BasicType::Str; in parseBasicType()
404 Type = BasicType::F32; in parseBasicType()
407 Type = BasicType::U8; in parseBasicType()
[all …]
/freebsd/contrib/llvm-project/clang/utils/TableGen/
H A DRISCVVEmitter.cpp133 static BasicType ParseBasicType(char c) { in ParseBasicType()
136 return BasicType::Int8; in ParseBasicType()
139 return BasicType::Int16; in ParseBasicType()
142 return BasicType::Int32; in ParseBasicType()
145 return BasicType::Int64; in ParseBasicType()
148 return BasicType::Float16; in ParseBasicType()
151 return BasicType::Float32; in ParseBasicType()
154 return BasicType::Float64; in ParseBasicType()
157 return BasicType::BFloat16; in ParseBasicType()
160 return BasicType::Unknown; in ParseBasicType()
[all …]
/freebsd/contrib/llvm-project/clang/lib/Support/
H A DRISCVVIntrinsicUtils.cpp74 RVVType::RVVType(BasicType BT, int Log2LMUL, in RVVType()
369 case BasicType::Int8: in applyBasicType()
373 case BasicType::Int16: in applyBasicType()
377 case BasicType::Int32: in applyBasicType()
381 case BasicType::Int64: in applyBasicType()
385 case BasicType::Float16: in applyBasicType()
389 case BasicType::Float32: in applyBasicType()
393 case BasicType::Float64: in applyBasicType()
397 case BasicType::BFloat16: in applyBasicType()
922 RVVTypeCache::computeTypes(BasicType BT, int Log2LMUL, unsigned NF, in computeTypes()
[all …]
/freebsd/contrib/llvm-project/clang/include/clang/Support/
H A DRISCVVIntrinsicUtils.h205 enum class BasicType : uint8_t { enum
254 BasicType BT;
275 RVVType(BasicType BT, int Log2LMUL, const PrototypeDescriptor &Profile);
366 computeTypes(BasicType BT, int Log2LMUL, unsigned NF,
368 std::optional<RVVTypePtr> computeType(BasicType BT, int Log2LMUL,
464 getSuffixStr(RVVTypeCache &TypeCache, BasicType Type, int Log2LMUL,
/freebsd/contrib/llvm-project/lldb/include/lldb/API/
H A DSBType.h199 lldb::BasicType GetBasicType();
202 lldb::SBType GetBasicType(lldb::BasicType type);
H A DSBModule.h223 lldb::SBType GetBasicType(lldb::BasicType type);
H A DSBTarget.h863 lldb::SBType GetBasicType(lldb::BasicType type);
/freebsd/contrib/llvm-project/lldb/include/lldb/Utility/
H A DScalar.h194 llvm::APFloat CreateAPFloatFromAPSInt(lldb::BasicType basic_type);
196 llvm::APFloat CreateAPFloatFromAPFloat(lldb::BasicType basic_type);
/freebsd/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h377 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) const;
405 lldb::BasicType GetBasicTypeEnumeration() const;
H A DTypeSystem.h327 virtual lldb::BasicType
457 virtual CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) = 0;
/freebsd/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h209 CompilerType GetBasicType(lldb::BasicType type);
211 static lldb::BasicType GetBasicTypeEnumeration(llvm::StringRef name);
823 CompilerType GetBasicTypeFromAST(lldb::BasicType basic_type) override;
859 lldb::BasicType
1118 GetOpaqueCompilerType(clang::ASTContext *ast, lldb::BasicType basic_type);
H A DTypeSystemClang.cpp805 lldb::BasicType TypeSystemClang::GetBasicTypeEnumeration(llvm::StringRef name) { in GetBasicTypeEnumeration()
806 static const llvm::StringMap<lldb::BasicType> g_type_map = { in GetBasicTypeEnumeration()
875 CompilerType TypeSystemClang::GetBasicType(lldb::BasicType basic_type) { in GetBasicType()
2001 lldb::BasicType basic_type) { in GetOpaqueCompilerType()
4691 CompilerType TypeSystemClang::GetBasicTypeFromAST(lldb::BasicType basic_type) { in GetBasicTypeFromAST()
5496 lldb::BasicType
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DPdbUtil.h147 lldb::BasicType
H A DPdbAstBuilder.h75 clang::QualType GetBasicType(lldb::BasicType type);
H A DUdtRecordCompleter.cpp200 lldb::BasicType basic_type_enum = member_ct.GetBasicTypeEnumeration(); in visitKnownMember()
H A DPdbAstBuilder.cpp510 lldb::BasicType bt = GetCompilerTypeForSimpleKind(ti.getSimpleKind()); in CreateSimpleType()
749 clang::QualType PdbAstBuilder::GetBasicType(lldb::BasicType type) { in GetBasicType()
H A DPdbUtil.cpp921 lldb::BasicType
/freebsd/contrib/llvm-project/clang/lib/Sema/
H A DSemaRISCV.cpp238 BasicType BaseType = BasicType::Unknown; in ConstructRVVIntrinsics()
275 TypeRangeMaskShift <= static_cast<unsigned int>(BasicType::MaxOffset); in ConstructRVVIntrinsics()
278 BaseType = static_cast<BasicType>(BaseTypeI); in ConstructRVVIntrinsics()
283 if (BaseType == BasicType::Float16) { in ConstructRVVIntrinsics()
/freebsd/contrib/llvm-project/lldb/source/API/
H A DSBType.cpp445 lldb::BasicType SBType::GetBasicType() { in GetBasicType()
453 SBType SBType::GetBasicType(lldb::BasicType basic_type) { in GetBasicType()
H A DSBModule.cpp462 lldb::SBType SBModule::GetBasicType(lldb::BasicType type) {
/freebsd/contrib/llvm-project/lldb/source/Utility/
H A DScalar.cpp814 llvm::APFloat Scalar::CreateAPFloatFromAPSInt(lldb::BasicType basic_type) { in CreateAPFloatFromAPSInt()
834 llvm::APFloat Scalar::CreateAPFloatFromAPFloat(lldb::BasicType basic_type) { in CreateAPFloatFromAPFloat()
/freebsd/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp756 CompilerType::GetBasicTypeFromAST(lldb::BasicType basic_type) const { in GetBasicTypeFromAST()
811 lldb::BasicType CompilerType::GetBasicTypeEnumeration() const { in GetBasicTypeEnumeration()
/freebsd/contrib/llvm-project/lldb/include/lldb/
H A Dlldb-enumerations.h795 enum BasicType { enum
/freebsd/contrib/llvm-project/lldb/source/Plugins/SymbolFile/CTF/
H A DSymbolFileCTF.cpp334 lldb::BasicType basic_type = in CreateInteger()
/freebsd/contrib/llvm-project/lldb/source/Target/
H A DStackFrame.cpp1360 ts->GetBasicTypeFromAST(lldb::BasicType::eBasicTypeChar) in GuessValueForAddress()

12