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 115 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 135 of file IRExecutionUnit.h.
lldb::addr_t lldb_private::IRExecutionUnit::JittedEntity::m_local_addr |
The address of the function in LLDB's memory.
Definition at line 117 of file IRExecutionUnit.h.
ConstString lldb_private::IRExecutionUnit::JittedEntity::m_name |
The function's name.
Definition at line 116 of file IRExecutionUnit.h.
lldb::addr_t lldb_private::IRExecutionUnit::JittedEntity::m_remote_addr |
The address of the function in the target's memory.
Definition at line 119 of file IRExecutionUnit.h.