reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
   46   m_pc_reg_info.name = "pc";
   47   m_pc_reg_info.alt_name = "pc";
   48   m_pc_reg_info.byte_offset = 0;
   49   m_pc_reg_info.byte_size = address_byte_size;
   50   m_pc_reg_info.encoding = eEncodingUint;
   51   m_pc_reg_info.format = eFormatPointer;
   52   m_pc_reg_info.invalidate_regs = nullptr;
   53   m_pc_reg_info.value_regs = nullptr;
   54   m_pc_reg_info.kinds[eRegisterKindEHFrame] = LLDB_INVALID_REGNUM;
   55   m_pc_reg_info.kinds[eRegisterKindDWARF] = LLDB_INVALID_REGNUM;
   56   m_pc_reg_info.kinds[eRegisterKindGeneric] = LLDB_REGNUM_GENERIC_PC;
   57   m_pc_reg_info.kinds[eRegisterKindProcessPlugin] = LLDB_INVALID_REGNUM;
   58   m_pc_reg_info.kinds[eRegisterKindLLDB] = LLDB_INVALID_REGNUM;
   63   delete m_pc_reg_info.invalidate_regs;
   64   delete m_pc_reg_info.value_regs;
   75   return &m_pc_reg_info;