|
LLDB mainline
|
#include <IRExecutionUnit.h>
Public Member Functions | |
| JittedEntity (const char *name, lldb::addr_t local_addr=LLDB_INVALID_ADDRESS, lldb::addr_t remote_addr=LLDB_INVALID_ADDRESS) | |
| Constructor. | |
Public Attributes | |
| ConstString | m_name |
| The function's name. | |
| lldb::addr_t | m_local_addr |
| The address of the function in LLDB's memory. | |
| lldb::addr_t | m_remote_addr |
| The address of the function in the target's memory. | |
Definition at line 116 of file IRExecutionUnit.h.
|
inline |
Constructor.
Initializes class variabes.
| [in] | name | The name of the function. |
| [in] | local_addr | The address of the function in LLDB, or LLDB_INVALID_ADDRESS if it is not present in LLDB's memory. |
| [in] | remote_addr | The address of the function in the target, or LLDB_INVALID_ADDRESS if it is not present in the target's memory. |
Definition at line 136 of file IRExecutionUnit.h.
References LLDB_INVALID_ADDRESS, m_local_addr, m_name, and m_remote_addr.
Referenced by lldb_private::IRExecutionUnit::JittedFunction::JittedFunction(), and lldb_private::IRExecutionUnit::JittedGlobalVariable::JittedGlobalVariable().
| lldb::addr_t lldb_private::IRExecutionUnit::JittedEntity::m_local_addr |
The address of the function in LLDB's memory.
Definition at line 118 of file IRExecutionUnit.h.
Referenced by JittedEntity().
| ConstString lldb_private::IRExecutionUnit::JittedEntity::m_name |
The function's name.
Definition at line 117 of file IRExecutionUnit.h.
Referenced by JittedEntity().
| lldb::addr_t lldb_private::IRExecutionUnit::JittedEntity::m_remote_addr |
The address of the function in the target's memory.
Definition at line 120 of file IRExecutionUnit.h.
Referenced by JittedEntity().