LLDB mainline
CompilerDecl.cpp
Go to the documentation of this file.
1//===-- CompilerDecl.cpp --------------------------------------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
12
13using namespace lldb_private;
14
17}
18
21}
22
25}
26
29}
30
33}
34
37}
38
40 const lldb_private::CompilerDecl &rhs) {
41 return lhs.GetTypeSystem() == rhs.GetTypeSystem() &&
42 lhs.GetOpaqueDecl() == rhs.GetOpaqueDecl();
43}
44
46 const lldb_private::CompilerDecl &rhs) {
47 return lhs.GetTypeSystem() != rhs.GetTypeSystem() ||
48 lhs.GetOpaqueDecl() != rhs.GetOpaqueDecl();
49}
50
51std::vector<lldb_private::CompilerContext>
54}
Represents a generic declaration context in a program.
Represents a generic declaration such as a function declaration.
Definition: CompilerDecl.h:28
void * GetOpaqueDecl() const
Definition: CompilerDecl.h:58
ConstString GetMangledName() const
CompilerType GetFunctionArgumentType(size_t arg_idx) const
CompilerType GetFunctionReturnType() const
CompilerDeclContext GetDeclContext() const
size_t GetNumFunctionArguments() const
ConstString GetName() const
TypeSystem * GetTypeSystem() const
Definition: CompilerDecl.h:56
std::vector< lldb_private::CompilerContext > GetCompilerContext() const
Populate a valid compiler context from the current declaration.
Generic representation of a type in a programming language.
Definition: CompilerType.h:36
A uniqued constant string class.
Definition: ConstString.h:40
virtual ConstString DeclGetName(void *opaque_decl)=0
virtual CompilerType DeclGetFunctionReturnType(void *opaque_decl)
Definition: TypeSystem.cpp:163
virtual CompilerType DeclGetFunctionArgumentType(void *opaque_decl, size_t arg_idx)
Definition: TypeSystem.cpp:169
virtual std::vector< lldb_private::CompilerContext > DeclGetCompilerContext(void *opaque_decl)
Definition: TypeSystem.cpp:175
virtual ConstString DeclGetMangledName(void *opaque_decl)
Definition: TypeSystem.cpp:155
virtual size_t DeclGetFunctionNumArguments(void *opaque_decl)
Definition: TypeSystem.cpp:167
virtual CompilerDeclContext DeclGetDeclContext(void *opaque_decl)
Definition: TypeSystem.cpp:159
A class that represents a running process on the host machine.
Definition: SBAttachInfo.h:14
bool operator!=(const Address &lhs, const Address &rhs)
Definition: Address.cpp:1028
bool operator==(const Address &lhs, const Address &rhs)
Definition: Address.cpp:1022