LLDB mainline
lldb_private::IRExecutionUnit::JittedEntity Struct Reference

#include <IRExecutionUnit.h>

Inheritance diagram for lldb_private::IRExecutionUnit::JittedEntity:
[legend]

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.

Detailed Description

Definition at line 116 of file IRExecutionUnit.h.

Constructor & Destructor Documentation

◆ JittedEntity()

lldb_private::IRExecutionUnit::JittedEntity::JittedEntity ( const char * name,
lldb::addr_t local_addr = LLDB_INVALID_ADDRESS,
lldb::addr_t remote_addr = LLDB_INVALID_ADDRESS )
inline

Constructor.

Initializes class variabes.

Parameters
[in]nameThe name of the function.
[in]local_addrThe address of the function in LLDB, or LLDB_INVALID_ADDRESS if it is not present in LLDB's memory.
[in]remote_addrThe 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().

Member Data Documentation

◆ m_local_addr

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().

◆ m_name

ConstString lldb_private::IRExecutionUnit::JittedEntity::m_name

The function's name.

Definition at line 117 of file IRExecutionUnit.h.

Referenced by JittedEntity().

◆ m_remote_addr

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().


The documentation for this struct was generated from the following file: