Home
last modified time | relevance | path

Searched refs:builtin_type (Results 1 – 2 of 2) sorted by relevance

/llvm-project-15.0.7/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.cpp491 CompilerType builtin_type; in CreateLLDBTypeFromPDBType() local
493 builtin_type = GetBuiltinTypeForPDBEncodingAndBitSize( in CreateLLDBTypeFromPDBType()
496 builtin_type = m_ast.GetBasicType(eBasicTypeInt); in CreateLLDBTypeFromPDBType()
504 builtin_type, isScoped); in CreateLLDBTypeFromPDBType()
703 auto *builtin_type = llvm::dyn_cast<PDBSymbolTypeBuiltin>(&type); in CreateLLDBTypeFromPDBType() local
704 assert(builtin_type); in CreateLLDBTypeFromPDBType()
705 PDB_BuiltinType builtin_kind = builtin_type->getBuiltinType(); in CreateLLDBTypeFromPDBType()
710 if (uint64_t size = builtin_type->getLength()) in CreateLLDBTypeFromPDBType()
714 m_ast, *builtin_type, encoding, bytes.value_or(0) * 8); in CreateLLDBTypeFromPDBType()
716 if (builtin_type->isConstType()) in CreateLLDBTypeFromPDBType()
[all …]
/llvm-project-15.0.7/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.cpp3214 const clang::BuiltinType *builtin_type = in IsIntegerType() local
3217 if (builtin_type) { in IsIntegerType()
3218 if (builtin_type->isInteger()) { in IsIntegerType()
3219 is_signed = builtin_type->isSignedInteger(); in IsIntegerType()
3827 const clang::BuiltinType *builtin_type = in GetTypeInfo() local
3831 switch (builtin_type->getKind()) { in GetTypeInfo()
3870 if (builtin_type->isInteger()) { in GetTypeInfo()
3872 if (builtin_type->isSignedInteger()) in GetTypeInfo()
3874 } else if (builtin_type->isFloatingPoint()) in GetTypeInfo()