Home
last modified time | relevance | path

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

12345678

/freebsd-13.1/contrib/llvm-project/lldb/source/Symbol/
H A DCompilerType.cpp64 bool CompilerType::IsVectorType(CompilerType *element_type, in IsVectorType()
121 CompilerType
326 CompilerType
341 CompilerType CompilerType::GetCanonicalType() const { in GetCanonicalType()
400 CompilerType CompilerType::GetPointeeType() const { in GetPointeeType()
407 CompilerType CompilerType::GetPointerType() const { in GetPointerType()
428 CompilerType CompilerType::GetAtomicType() const { in GetAtomicType()
434 CompilerType CompilerType::AddConstModifier() const { in AddConstModifier()
464 CompilerType CompilerType::GetTypedefedType() const { in GetTypedefedType()
473 CompilerType
[all …]
H A DTypeSystem.cpp75 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 DType.cpp479 CompilerType encoding_compiler_type = in ResolveCompilerType()
543 CompilerType void_compiler_type = in ResolveCompilerType()
646 CompilerType Type::GetFullCompilerType() { in GetFullCompilerType()
651 CompilerType Type::GetLayoutCompilerType() { in GetLayoutCompilerType()
656 CompilerType Type::GetForwardCompilerType() { in GetForwardCompilerType()
812 TypeImpl::TypeImpl(const CompilerType &compiler_type) in TypeImpl()
822 TypeImpl::TypeImpl(const CompilerType &static_type, in TypeImpl()
823 const CompilerType &dynamic_type) in TypeImpl()
845 const CompilerType &dynamic) { in SetType()
851 const CompilerType &dynamic) { in SetType()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Symbol/
H A DCompilerType.h33 class CompilerType {
46 CompilerType(const CompilerType &rhs) in CompilerType() function
49 CompilerType() = default;
53 const CompilerType &operator=(const CompilerType &rhs) {
189 CompilerType GetCanonicalType() const;
214 CompilerType GetPointeeType() const;
217 CompilerType GetPointerType() const;
242 CompilerType GetAtomicType() const;
412 bool operator==(const CompilerType &lhs, const CompilerType &rhs);
413 bool operator!=(const CompilerType &lhs, const CompilerType &rhs);
[all …]
H A DTypeSystem.h160 virtual CompilerType
221 virtual CompilerType
230 virtual CompilerType
237 virtual CompilerType
241 virtual CompilerType
253 virtual CompilerType
256 virtual CompilerType
316 virtual CompilerType
320 virtual CompilerType
421 virtual CompilerType
[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()
24 : CompilerType(type_system, type) {} in TaggedASTType()
26 TaggedASTType(const TaggedASTType<C> &tw) : CompilerType(tw) {} in TaggedASTType()
28 TaggedASTType() : CompilerType() {} in TaggedASTType()
33 CompilerType::operator=(tw);
H A DType.h185 CompilerType GetFullCompilerType();
190 CompilerType GetLayoutCompilerType();
225 CompilerType m_compiler_type;
250 TypeImpl(const CompilerType &compiler_type, const CompilerType &dynamic);
258 void SetType(const CompilerType &compiler_type, const CompilerType &dynamic);
305 CompilerType m_static_type;
306 CompilerType m_dynamic_type;
431 CompilerType m_compiler_type;
450 CompilerType GetType() const;
452 CompilerType GetReturnType() const;
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/TypeSystem/Clang/
H A DTypeSystemClang.h209 CompilerType
225 static bool AreTypesSame(CompilerType type1, CompilerType type2,
251 CompilerType
362 CompilerType
425 CompilerType CreateArrayType(const CompilerType &element_type,
675 CompilerType
678 CompilerType
688 CompilerType
703 CompilerType
706 CompilerType
[all …]
H A DTypeSystemClang.cpp804 CompilerType
2166 CompilerType
2229 CompilerType
3107 CompilerType
4205 CompilerType
4239 CompilerType
4259 CompilerType
4267 CompilerType
4299 CompilerType
4488 CompilerType
[all …]
/freebsd-13.1/contrib/llvm-project/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);
/freebsd-13.1/contrib/llvm-project/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.cpp102 static CompilerType
112 return CompilerType(); in GetBuiltinTypeForPDBEncodingAndBitSize()
489 CompilerType builtin_type; in CreateLLDBTypeFromPDBType()
551 CompilerType ast_typedef = in CreateLLDBTypeFromPDBType()
606 std::vector<CompilerType> arg_list; in CreateLLDBTypeFromPDBType()
650 CompilerType func_sig_ast_type = in CreateLLDBTypeFromPDBType()
746 CompilerType pointer_ast_type; in CreateLLDBTypeFromPDBType()
759 CompilerType pointer_ast_type; in CreateLLDBTypeFromPDBType()
790 lldb_private::CompilerType &compiler_type) { in CompleteTypeFromPDB()
1193 lldb_private::CompilerType &compiler_type, in CompleteTypeFromUDT()
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Core/
H A DValueObjectConstResult.h42 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
47 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
53 Create(ExecutionContextScope *exe_scope, const CompilerType &compiler_type,
85 uint32_t offset, const CompilerType &type, bool can_create,
108 lldb::ValueObjectSP Cast(const CompilerType &compiler_type) override;
113 CompilerType GetCompilerTypeImpl() override;
130 const CompilerType &compiler_type, ConstString name,
135 const CompilerType &compiler_type, ConstString name,
142 const CompilerType &compiler_type, ConstString name,
H A DValueObjectCast.h31 const CompilerType &cast_type);
51 const CompilerType &cast_type);
55 CompilerType GetCompilerTypeImpl() override;
57 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.h41 const CompilerType &ast_type);
60 CompilerType GetCompilerTypeImpl() override;
64 CompilerType m_compiler_type;
73 const Address &address, const CompilerType &ast_type);
H A DValueObjectConstResultChild.h32 const CompilerType &compiler_type,
47 virtual CompilerType GetCompilerType() { in GetCompilerType()
52 uint32_t offset, const CompilerType &type, bool can_create,
63 lldb::ValueObjectSP Cast(const CompilerType &compiler_type) override;
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/SymbolFile/NativePDB/
H A DSymbolFileNativePDB.h119 bool CompleteType(CompilerType &compiler_type) override;
173 CompilerType ct);
176 CompilerType ct);
180 CompilerType ct);
183 CompilerType ct);
186 CompilerType ct);
189 CompilerType ct);
192 CompilerType ct);
195 CompilerType ct);
198 size_t size, CompilerType ct);
[all …]
/freebsd-13.1/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/
H A DBlockPointer.cpp33 CompilerType block_pointer_type(m_backend.GetCompilerType()); in BlockPointerSyntheticFrontEnd()
34 CompilerType function_pointer_type; in BlockPointerSyntheticFrontEnd()
68 const CompilerType isa_type = in BlockPointerSyntheticFrontEnd()
71 const CompilerType flags_type = in BlockPointerSyntheticFrontEnd()
74 const CompilerType reserved_type = in BlockPointerSyntheticFrontEnd()
118 const CompilerType child_type = in GetChildAtIndex()
164 CompilerType m_block_struct_type;
/freebsd-13.1/contrib/llvm-project/lldb/source/DataFormatters/
H A DVectorType.cpp24 static CompilerType GetCompilerTypeForFormat(lldb::Format format, in GetCompilerTypeForFormat()
25 CompilerType element_type, in GetCompilerTypeForFormat()
123 CompilerType element_type) { in GetItemFormatForFormat()
170 CompilerType container_type, CompilerType element_type, in CalculateNumChildren()
220 CompilerType parent_type(m_backend.GetCompilerType()); in Update()
221 CompilerType element_type; in Update()
243 CompilerType m_child_type;
/freebsd-13.1/contrib/llvm-project/lldb/source/Core/
H A DValueObjectConstResult.cpp52 const CompilerType &compiler_type, in Create()
64 const CompilerType &compiler_type, ConstString name, in ValueObjectConstResult()
85 const CompilerType &compiler_type, in Create()
110 const CompilerType &compiler_type, ConstString name, in ValueObjectConstResult()
127 const CompilerType &compiler_type, in Create()
141 const CompilerType &compiler_type, ConstString name, lldb::addr_t address, in ValueObjectConstResult()
198 CompilerType ValueObjectConstResult::GetCompilerTypeImpl() { in GetCompilerTypeImpl()
251 uint32_t offset, const CompilerType &type, bool can_create, in GetSyntheticChildAtOffset()
296 ValueObjectConstResult::Cast(const CompilerType &compiler_type) { in Cast()
H A DValueObjectCast.cpp26 const CompilerType &cast_type) { in Create()
33 const CompilerType &cast_type) in ValueObjectCast()
41 CompilerType ValueObjectCast::GetCompilerTypeImpl() { return m_cast_type; } in GetCompilerTypeImpl()
68 CompilerType compiler_type(GetCompilerType()); in UpdateValue()
/freebsd-13.1/contrib/llvm-project/lldb/include/lldb/Target/
H A DLanguageRuntime.h84 virtual CompilerType GetConcreteType(ExecutionContextScope *exe_scope, in GetConcreteType()
86 return CompilerType(); in GetConcreteType()
139 virtual bool GetTypeBitSize(const CompilerType &compiler_type, in GetTypeBitSize()
153 virtual llvm::Optional<CompilerType> GetRuntimeType(CompilerType base_type) { in GetRuntimeType()

12345678