| /freebsd-14.2/contrib/llvm-project/lldb/source/Symbol/ |
| H A D | CompilerType.cpp | 68 bool CompilerType::IsVectorType(CompilerType *element_type, in IsVectorType() 134 CompilerType 566 CompilerType 583 CompilerType CompilerType::GetCanonicalType() const { in GetCanonicalType() 651 CompilerType CompilerType::GetPointeeType() const { in GetPointeeType() 659 CompilerType CompilerType::GetPointerType() const { in GetPointerType() 681 CompilerType CompilerType::GetAtomicType() const { in GetAtomicType() 688 CompilerType CompilerType::AddConstModifier() const { in AddConstModifier() 718 CompilerType CompilerType::GetTypedefedType() const { in GetTypedefedType() 727 CompilerType [all …]
|
| H A D | TypeSystem.cpp | 75 return CompilerType(); in GetArrayType() 78 CompilerType 80 return CompilerType(); in GetLValueReferenceType() 83 CompilerType 85 return CompilerType(); in GetRValueReferenceType() 89 return CompilerType(); in GetAtomicType() 93 return CompilerType(); in AddConstModifier() 96 CompilerType 98 return CompilerType(); in AddVolatileModifier() 101 CompilerType [all …]
|
| H A D | Type.cpp | 573 CompilerType encoding_compiler_type = in ResolveCompilerType() 636 CompilerType void_compiler_type; in ResolveCompilerType() 741 CompilerType Type::GetFullCompilerType() { in GetFullCompilerType() 746 CompilerType Type::GetLayoutCompilerType() { in GetLayoutCompilerType() 751 CompilerType Type::GetForwardCompilerType() { in GetForwardCompilerType() 928 TypeImpl::TypeImpl(const CompilerType &static_type, in TypeImpl() 1145 return CompilerType(); in GetCompilerType() 1178 return CompilerType(); in FindDirectNestedType() 1182 return CompilerType(); in FindDirectNestedType() 1185 return CompilerType(); in FindDirectNestedType() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Symbol/ |
| H A D | CompilerType.h | 36 class CompilerType { 91 CompilerType(const CompilerType &rhs) in CompilerType() function 94 CompilerType() = default; 98 const CompilerType &operator=(const CompilerType &rhs) { 234 bool IsVirtualBase(CompilerType target_base, CompilerType *virtual_base, 324 CompilerType GetPointeeType() const; 327 CompilerType GetPointerType() const; 352 CompilerType GetAtomicType() const; 524 bool operator==(const CompilerType &lhs, const CompilerType &rhs); 525 bool operator!=(const CompilerType &lhs, const CompilerType &rhs); [all …]
|
| H A D | TypeSystem.h | 168 virtual CompilerType 237 virtual CompilerType 246 virtual CompilerType 253 virtual CompilerType 257 virtual CompilerType 269 virtual CompilerType 272 virtual CompilerType 332 virtual CompilerType 336 virtual CompilerType 373 virtual CompilerType [all …]
|
| H A D | TaggedASTType.h | 18 template <unsigned int C> class TaggedASTType : public CompilerType { 20 TaggedASTType(const CompilerType &compiler_type) in TaggedASTType() 21 : CompilerType(compiler_type) {} in TaggedASTType() 25 : CompilerType(type_system, type) {} in TaggedASTType() 27 TaggedASTType(const TaggedASTType<C> &tw) : CompilerType(tw) {} in TaggedASTType() 29 TaggedASTType() : CompilerType() {} in TaggedASTType() 34 CompilerType::operator=(tw);
|
| H A D | Type.h | 480 CompilerType GetFullCompilerType(); 485 CompilerType GetLayoutCompilerType(); 520 CompilerType m_compiler_type; 569 TypeImpl(const CompilerType &compiler_type, const CompilerType &dynamic); 577 void SetType(const CompilerType &compiler_type, const CompilerType &dynamic); 626 CompilerType m_static_type; 627 CompilerType m_dynamic_type; 751 CompilerType m_compiler_type; 770 CompilerType GetType() const; 772 CompilerType GetReturnType() const; [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/ |
| H A D | TypeSystemClang.h | 210 CompilerType 229 static bool AreTypesSame(CompilerType type1, CompilerType type2, 255 CompilerType 436 CompilerType 476 CompilerType 755 CompilerType 758 CompilerType 768 CompilerType 783 CompilerType 786 CompilerType [all …]
|
| H A D | TypeSystemClang.cpp | 805 CompilerType 2274 CompilerType 3082 CompilerType 4205 CompilerType 4239 CompilerType 4265 CompilerType 4273 CompilerType 4305 CompilerType 4494 CompilerType 4501 CompilerType [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/ExpressionParser/Clang/ |
| H A D | ClangUtil.h | 25 static bool IsClangType(const CompilerType &ct); 31 static clang::QualType GetQualType(const CompilerType &ct); 33 static clang::QualType GetCanonicalQualType(const CompilerType &ct); 35 static CompilerType RemoveFastQualifiers(const CompilerType &ct); 37 static clang::TagDecl *GetAsTagDecl(const CompilerType &type); 46 static std::string ToString(const CompilerType &c);
|
| H A D | ClangUtil.cpp | 17 bool ClangUtil::IsClangType(const CompilerType &ct) { in IsClangType() 36 QualType ClangUtil::GetQualType(const CompilerType &ct) { in GetQualType() 44 QualType ClangUtil::GetCanonicalQualType(const CompilerType &ct) { in GetCanonicalQualType() 51 CompilerType ClangUtil::RemoveFastQualifiers(const CompilerType &ct) { in RemoveFastQualifiers() 57 return CompilerType(ct.GetTypeSystem(), qual_type.getAsOpaquePtr()); in RemoveFastQualifiers() 60 clang::TagDecl *ClangUtil::GetAsTagDecl(const CompilerType &type) { in GetAsTagDecl() 85 std::string ClangUtil::ToString(const CompilerType &c) { in ToString()
|
| H A D | NameSearchContext.h | 40 llvm::SmallSet<CompilerType, 5> m_function_types; 78 clang::NamedDecl *AddVarDecl(const CompilerType &type); 88 clang::NamedDecl *AddFunDecl(const CompilerType &type, bool extern_c = false); 99 clang::NamedDecl *AddTypeDecl(const CompilerType &compiler_type);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Platform/NetBSD/ |
| H A D | PlatformNetBSD.cpp | 217 CompilerType int_type = ast->GetBasicType(eBasicTypeInt); in GetSiginfoType() 219 CompilerType long_type = ast->GetBasicType(eBasicTypeLong); in GetSiginfoType() 224 CompilerType &pid_type = int_type; in GetSiginfoType() 225 CompilerType &uid_type = uint_type; in GetSiginfoType() 226 CompilerType &clock_type = uint_type; in GetSiginfoType() 227 CompilerType &lwpid_type = int_type; in GetSiginfoType() 229 CompilerType sigval_type = ast->CreateRecordType( in GetSiginfoType() 239 CompilerType ptrace_option_type = ast->CreateRecordType( in GetSiginfoType() 250 CompilerType siginfo_type = ast->CreateRecordType( in GetSiginfoType() 256 CompilerType ksiginfo_type = ast->CreateRecordType( in GetSiginfoType() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/PDB/ |
| H A D | PDBASTParser.h | 27 class CompilerType; variable 49 bool CompleteTypeFromPDB(lldb_private::CompilerType &compiler_type); 83 bool AddEnumValue(lldb_private::CompilerType enum_type, 86 lldb_private::CompilerType &compiler_type, 90 lldb_private::CompilerType &record_type, 95 lldb_private::CompilerType &record_type, int record_kind, 99 lldb_private::CompilerType &record_type, 103 lldb_private::CompilerType &record_type,
|
| H A D | PDBASTParser.cpp | 105 static CompilerType 115 return CompilerType(); in GetBuiltinTypeForPDBEncodingAndBitSize() 410 CompilerType clang_type = in CreateLLDBTypeFromPDBType() 482 CompilerType ast_enum = in CreateLLDBTypeFromPDBType() 497 CompilerType builtin_type; in CreateLLDBTypeFromPDBType() 559 CompilerType ast_typedef = in CreateLLDBTypeFromPDBType() 612 std::vector<CompilerType> arg_list; in CreateLLDBTypeFromPDBType() 656 CompilerType func_sig_ast_type = in CreateLLDBTypeFromPDBType() 751 CompilerType pointer_ast_type; in CreateLLDBTypeFromPDBType() 764 CompilerType pointer_ast_type; in CreateLLDBTypeFromPDBType() [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/include/lldb/Core/ |
| H A D | ValueObjectConstResult.h | 43 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 48 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 54 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type, 86 uint32_t offset, const CompilerType &type, bool can_create, 109 lldb::ValueObjectSP DoCast(const CompilerType &compiler_type) override; 114 CompilerType GetCompilerTypeImpl() override; 131 const CompilerType &compiler_type, ConstString name, 136 const CompilerType &compiler_type, ConstString name, 143 const CompilerType &compiler_type, ConstString name,
|
| H A D | ValueObjectCast.h | 32 const CompilerType &cast_type); 52 const CompilerType &cast_type); 56 CompilerType GetCompilerTypeImpl() override; 58 CompilerType m_cast_type;
|
| H A D | ValueObjectConstResultCast.h | 31 const CompilerType &cast_type, 41 virtual CompilerType GetCompilerType() { in GetCompilerType() 46 uint32_t offset, const CompilerType &type, bool can_create, 54 lldb::ValueObjectSP DoCast(const CompilerType &compiler_type) override;
|
| H A D | ValueObjectMemory.h | 42 const CompilerType &ast_type); 61 CompilerType GetCompilerTypeImpl() override; 65 CompilerType m_compiler_type; 74 const Address &address, const CompilerType &ast_type);
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Platform/FreeBSD/ |
| H A D | PlatformFreeBSD.cpp | 189 CompilerType PlatformFreeBSD::GetSiginfoType(const llvm::Triple &triple) { in GetSiginfoType() 198 CompilerType int_type = ast->GetBasicType(eBasicTypeInt); in GetSiginfoType() 199 CompilerType uint_type = ast->GetBasicType(eBasicTypeUnsignedInt); in GetSiginfoType() 200 CompilerType long_type = ast->GetBasicType(eBasicTypeLong); in GetSiginfoType() 201 CompilerType voidp_type = ast->GetBasicType(eBasicTypeVoid).GetPointerType(); in GetSiginfoType() 204 CompilerType &pid_type = int_type; in GetSiginfoType() 205 CompilerType &uid_type = uint_type; in GetSiginfoType() 207 CompilerType sigval_type = ast->CreateRecordType( in GetSiginfoType() 218 CompilerType siginfo_type = ast->CreateRecordType( in GetSiginfoType() 240 CompilerType union_type = ast->CreateRecordType( in GetSiginfoType()
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
| H A D | BlockPointer.cpp | 34 CompilerType block_pointer_type(m_backend.GetCompilerType()); in BlockPointerSyntheticFrontEnd() 35 CompilerType function_pointer_type; in BlockPointerSyntheticFrontEnd() 58 const CompilerType isa_type = in BlockPointerSyntheticFrontEnd() 61 const CompilerType flags_type = in BlockPointerSyntheticFrontEnd() 64 const CompilerType reserved_type = in BlockPointerSyntheticFrontEnd() 108 const CompilerType child_type = in GetChildAtIndex() 154 CompilerType m_block_struct_type;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/ |
| H A D | SymbolFileNativePDB.h | 123 bool CompleteType(CompilerType &compiler_type) override; 196 CompilerType ct); 199 CompilerType ct); 203 CompilerType ct); 206 CompilerType ct); 209 CompilerType ct); 212 CompilerType ct); 215 CompilerType ct); 218 CompilerType ct); 221 size_t size, CompilerType ct); [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/DataFormatters/ |
| H A D | VectorType.cpp | 25 static CompilerType GetCompilerTypeForFormat(lldb::Format format, in GetCompilerTypeForFormat() 26 CompilerType element_type, in GetCompilerTypeForFormat() 126 CompilerType element_type) { in GetItemFormatForFormat() 197 CalculateNumChildren(CompilerType container_elem_type, uint64_t num_elements, in CalculateNumChildren() 198 CompilerType element_type) { in CalculateNumChildren() 250 CompilerType parent_type(m_backend.GetCompilerType()); in Update() 251 CompilerType element_type; in Update() 277 CompilerType m_child_type;
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Plugins/SymbolFile/DWARF/ |
| H A D | DWARFASTParserClang.h | 66 lldb_private::CompilerType &compiler_type) override; 95 const lldb_private::CompilerType &int_type, 175 lldb_private::CompilerType &class_compiler_type, 193 lldb_private::CompilerType &compiler_type, bool is_signed, 330 const lldb_private::CompilerType &class_clang_type, 336 const lldb_private::CompilerType &class_clang_type, 355 const lldb_private::CompilerType &class_clang_type); 359 lldb_private::CompilerType &clang_type); 362 lldb_private::CompilerType &clang_type); 396 const lldb_private::CompilerType class_clang_type, [all …]
|
| /freebsd-14.2/contrib/llvm-project/lldb/source/Core/ |
| H A D | ValueObjectConstResult.cpp | 53 const CompilerType &compiler_type, in Create() 65 const CompilerType &compiler_type, ConstString name, in ValueObjectConstResult() 86 const CompilerType &compiler_type, in Create() 111 const CompilerType &compiler_type, ConstString name, in ValueObjectConstResult() 128 const CompilerType &compiler_type, in Create() 142 const CompilerType &compiler_type, ConstString name, lldb::addr_t address, in ValueObjectConstResult() 199 CompilerType ValueObjectConstResult::GetCompilerTypeImpl() { in GetCompilerTypeImpl() 252 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset() 297 ValueObjectConstResult::DoCast(const CompilerType &compiler_type) { in DoCast()
|