Home
last modified time | relevance | path

Searched refs:CompilerType (Results 1 – 25 of 215) sorted by relevance

123456789

/openbsd-src/gnu/llvm/lldb/source/Symbol/
H A DCompilerType.cpp32 bool CompilerType::IsAggregateType() const { in IsAggregateType()
39 bool CompilerType::IsAnonymousType() const { in IsAnonymousType()
46 bool CompilerType::IsScopedEnumerationType() const { in IsScopedEnumerationType()
53 bool CompilerType::IsArrayType(CompilerType *element_type_ptr, uint64_t *size, in IsArrayType()
69 bool CompilerType::IsVectorType(CompilerType *element_type, in IsVectorType()
77 bool CompilerType::IsRuntimeGeneratedType() const { in IsRuntimeGeneratedType()
84 bool CompilerType::IsCharType() const { in IsCharType()
91 bool CompilerType::IsCompleteType() const { in IsCompleteType()
98 bool CompilerType::IsForcefullyCompleted() const { in IsForcefullyCompleted()
105 bool CompilerType::IsConst() const { in IsConst()
[all …]
H A DTypeSystem.cpp72 CompilerType TypeSystem::GetArrayType(lldb::opaque_compiler_type_t type, in GetArrayType()
74 return CompilerType(); in GetArrayType()
77 CompilerType
79 return CompilerType(); in GetLValueReferenceType()
82 CompilerType
84 return CompilerType(); in GetRValueReferenceType()
87 CompilerType TypeSystem::GetAtomicType(lldb::opaque_compiler_type_t type) { in GetAtomicType()
88 return CompilerType(); in GetAtomicType()
91 CompilerType TypeSystem::AddConstModifier(lldb::opaque_compiler_type_t type) { in AddConstModifier()
92 return CompilerType(); in AddConstModifier()
[all …]
H A DType.cpp147 const Declaration &decl, const CompilerType &compiler_type, in Type()
490 CompilerType encoding_compiler_type = in ResolveCompilerType()
552 CompilerType void_compiler_type; in ResolveCompilerType()
657 CompilerType Type::GetFullCompilerType() { in GetFullCompilerType()
662 CompilerType Type::GetLayoutCompilerType() { in GetLayoutCompilerType()
667 CompilerType Type::GetForwardCompilerType() { in GetForwardCompilerType()
800 void TypeAndOrName::SetCompilerType(CompilerType compiler_type) { in SetCompilerType()
826 TypeImpl::TypeImpl(const CompilerType &compiler_type) in TypeImpl()
831 TypeImpl::TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic) in TypeImpl()
836 TypeImpl::TypeImpl(const CompilerType &static_type, in TypeImpl()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Symbol/
H A DCompilerType.h36 class CompilerType {
44 CompilerType(lldb::TypeSystemWP type_system, in CompilerType() function
91 CompilerType(TypeSystemSPWrapper type_system, lldb::opaque_compiler_type_t type) in CompilerType() function
96 CompilerType(const CompilerType &rhs) in CompilerType() function
99 CompilerType() = default;
103 const CompilerType &operator=(const CompilerType &rhs) {
109 bool operator<(const CompilerType &rhs) const {
126 bool IsArrayType(CompilerType *element_type = nullptr,
130 bool IsVectorType(CompilerType *element_type = nullptr,
157 uint32_t IsHomogeneousAggregate(CompilerType *base_type_ptr) const;
[all …]
H A DTypeSystem.h110 virtual CompilerType DeclGetFunctionReturnType(void *opaque_decl);
114 virtual CompilerType DeclGetFunctionArgumentType(void *opaque_decl,
117 virtual CompilerType GetTypeForDecl(void *opaque_decl) = 0;
145 CompilerType *element_type, uint64_t *size,
166 virtual CompilerType
173 CompilerType *function_pointer_type_ptr) = 0;
187 CompilerType *target_type, // Can pass NULL
191 CompilerType *pointee_type) = 0;
197 virtual bool CanPassInRegisters(const CompilerType &type) = 0;
223 CompilerType *pointee_or_element_compiler_type) = 0;
[all …]
H A DType.h180 CompilerType GetFullCompilerType();
185 CompilerType GetLayoutCompilerType();
189 CompilerType GetForwardCompilerType();
220 CompilerType m_compiler_type;
238 const Declaration &decl, const CompilerType &compiler_qual_type,
265 TypeImpl(const CompilerType &compiler_type);
267 TypeImpl(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
269 TypeImpl(const CompilerType &compiler_type, const CompilerType &dynamic);
273 void SetType(const CompilerType &compiler_type);
275 void SetType(const lldb::TypeSP &type_sp, const CompilerType &dynamic);
[all …]
H A DTaggedASTType.h18 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);
/openbsd-src/gnu/llvm/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h205 CompilerType GetBuiltinTypeForEncodingAndBitSize(lldb::Encoding encoding,
208 CompilerType GetBasicType(lldb::BasicType type);
212 CompilerType
216 CompilerType GetCStringType(bool is_const);
220 static clang::DeclContext *GetDeclContextForType(const CompilerType &type);
228 static bool AreTypesSame(CompilerType type1, CompilerType type2,
238 CompilerType GetType(clang::QualType qt) { in GetType()
240 return CompilerType(); in GetType()
244 return CompilerType(weak_from_this(), qt.getAsOpaquePtr()); in GetType()
247 CompilerType GetTypeForDecl(clang::NamedDecl *decl);
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/ExpressionParser/Clang/
H A DClangUtil.h25 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 DClangUtil.cpp17 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 DNameSearchContext.h40 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);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/NetBSD/
H A DPlatformNetBSD.cpp208 CompilerType PlatformNetBSD::GetSiginfoType(const llvm::Triple &triple) { in GetSiginfoType()
217 CompilerType int_type = ast->GetBasicType(eBasicTypeInt); in GetSiginfoType()
218 CompilerType uint_type = ast->GetBasicType(eBasicTypeUnsignedInt); in GetSiginfoType()
219 CompilerType long_type = ast->GetBasicType(eBasicTypeLong); in GetSiginfoType()
220 CompilerType long_long_type = ast->GetBasicType(eBasicTypeLongLong); in GetSiginfoType()
221 CompilerType voidp_type = ast->GetBasicType(eBasicTypeVoid).GetPointerType(); 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()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/PDB/
H A DPDBASTParser.h27 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 DPDBASTParser.cpp105 static CompilerType
115 return CompilerType(); in GetBuiltinTypeForPDBEncodingAndBitSize()
124 return CompilerType(clang_ast.weak_from_this(), in GetBuiltinTypeForPDBEncodingAndBitSize()
127 return CompilerType(clang_ast.weak_from_this(), in GetBuiltinTypeForPDBEncodingAndBitSize()
132 return CompilerType(clang_ast.weak_from_this(), in GetBuiltinTypeForPDBEncodingAndBitSize()
135 return CompilerType(clang_ast.weak_from_this(), in GetBuiltinTypeForPDBEncodingAndBitSize()
140 return CompilerType(clang_ast.weak_from_this(), in GetBuiltinTypeForPDBEncodingAndBitSize()
144 return CompilerType(clang_ast.weak_from_this(), in GetBuiltinTypeForPDBEncodingAndBitSize()
147 return CompilerType(clang_ast.weak_from_this(), in GetBuiltinTypeForPDBEncodingAndBitSize()
162 CompilerType &compiler_type) { in GetPDBBuiltinTypeName()
[all …]
/openbsd-src/gnu/llvm/lldb/include/lldb/Core/
H A DValueObjectConstResult.h43 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 Cast(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 DValueObjectCast.h32 const CompilerType &cast_type);
52 const CompilerType &cast_type);
56 CompilerType GetCompilerTypeImpl() override;
58 CompilerType m_cast_type;
H A DValueObjectConstResultCast.h31 const CompilerType &cast_type,
41 virtual CompilerType GetCompilerType() { in GetCompilerType()
46 uint32_t offset, const CompilerType &type, bool can_create,
54 lldb::ValueObjectSP Cast(const CompilerType &compiler_type) override;
H A DValueObjectMemory.h42 const CompilerType &ast_type);
61 CompilerType GetCompilerTypeImpl() override;
65 CompilerType m_compiler_type;
74 const Address &address, const CompilerType &ast_type);
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/FreeBSD/
H A DPlatformFreeBSD.cpp189 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()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Platform/Linux/
H A DPlatformLinux.cpp314 CompilerType PlatformLinux::GetSiginfoType(const llvm::Triple &triple) { in GetSiginfoType()
337 CompilerType int_type = ast->GetBasicType(eBasicTypeInt); in GetSiginfoType()
338 CompilerType uint_type = ast->GetBasicType(eBasicTypeUnsignedInt); in GetSiginfoType()
339 CompilerType short_type = ast->GetBasicType(eBasicTypeShort); in GetSiginfoType()
340 CompilerType long_type = ast->GetBasicType(eBasicTypeLong); in GetSiginfoType()
341 CompilerType voidp_type = ast->GetBasicType(eBasicTypeVoid).GetPointerType(); in GetSiginfoType()
344 CompilerType &pid_type = int_type; in GetSiginfoType()
345 CompilerType &uid_type = uint_type; in GetSiginfoType()
346 CompilerType &clock_type = long_type; in GetSiginfoType()
347 CompilerType &band_type = long_type; in GetSiginfoType()
[all …]
/openbsd-src/gnu/llvm/lldb/source/Plugins/Language/CPlusPlus/
H A DBlockPointer.cpp34 CompilerType block_pointer_type(m_backend.GetCompilerType()); in BlockPointerSyntheticFrontEnd()
35 CompilerType function_pointer_type; in BlockPointerSyntheticFrontEnd()
70 const CompilerType isa_type = in BlockPointerSyntheticFrontEnd()
73 const CompilerType flags_type = in BlockPointerSyntheticFrontEnd()
76 const CompilerType reserved_type = in BlockPointerSyntheticFrontEnd()
120 const CompilerType child_type = in GetChildAtIndex()
166 CompilerType m_block_struct_type;
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/DWARF/
H A DDWARFASTParserClang.h60 lldb_private::CompilerType &compiler_type) override;
89 ExtractIntFromFormValue(const lldb_private::CompilerType &int_type,
147 const DWARFDIE &die, lldb_private::CompilerType &class_compiler_type,
159 std::vector<lldb_private::CompilerType> &function_args,
163 size_t ParseChildEnumerators(lldb_private::CompilerType &compiler_type,
241 const lldb_private::CompilerType &class_clang_type,
246 const lldb_private::CompilerType &class_clang_type,
252 lldb_private::CompilerType &clang_type);
254 lldb_private::CompilerType &clang_type);
284 const lldb_private::CompilerType class_clang_type,
/openbsd-src/gnu/llvm/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h123 bool CompleteType(CompilerType &compiler_type) override;
202 CompilerType ct);
205 CompilerType ct);
206 lldb::TypeSP CreateSimpleType(llvm::codeview::TypeIndex ti, CompilerType ct);
209 CompilerType ct);
212 CompilerType ct);
215 CompilerType ct);
218 CompilerType ct);
221 CompilerType ct);
224 CompilerType ct);
[all …]
/openbsd-src/gnu/llvm/lldb/source/DataFormatters/
H A DVectorType.cpp25 static CompilerType GetCompilerTypeForFormat(lldb::Format format, in GetCompilerTypeForFormat()
26 CompilerType element_type, in GetCompilerTypeForFormat()
126 CompilerType element_type) { in GetItemFormatForFormat()
173 CompilerType container_type, CompilerType element_type, in CalculateNumChildren()
222 CompilerType parent_type(m_backend.GetCompilerType()); in Update()
223 CompilerType element_type; in Update()
246 CompilerType m_child_type;
/openbsd-src/gnu/llvm/lldb/source/Core/
H A DValueObjectConstResult.cpp53 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::Cast(const CompilerType &compiler_type) { in Cast()

123456789