Skip to content

[lldb] Remove broken comments originally written as table headers (NFC) #116089

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 0 additions & 6 deletions lldb/source/Plugins/ABI/ARM/ABIMacOSX_arm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,6 @@ using namespace lldb;
using namespace lldb_private;

static const RegisterInfo g_register_infos[] = {
// NAME ALT SZ OFF ENCODING FORMAT EH_FRAME
// DWARF GENERIC PROCESS PLUGIN
// LLDB NATIVE
// ========== ======= == === ============= ============
// ======================= =================== ===========================
// ======================= ======================
{"r0",
nullptr,
4,
Expand Down
7 changes: 0 additions & 7 deletions lldb/source/Plugins/ABI/ARM/ABISysV_arm.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,13 +38,6 @@ using namespace lldb_private;
LLDB_PLUGIN_DEFINE(ABISysV_arm)

static const RegisterInfo g_register_infos[] = {
// NAME ALT SZ OFF ENCODING FORMAT EH_FRAME
// DWARF GENERIC PROCESS PLUGIN
// LLDB NATIVE VALUE REGS INVALIDATE REGS
// ========== ======= == === ============= ============
// ======================= =================== ===========================
// ======================= ====================== ==========
// ===============
{"r0",
nullptr,
4,
Expand Down
6 changes: 0 additions & 6 deletions lldb/source/Plugins/ABI/Mips/ABISysV_mips.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,6 @@ enum dwarf_regnums {
};

static const RegisterInfo g_register_infos[] = {
// NAME ALT SZ OFF ENCODING FORMAT EH_FRAME
// DWARF GENERIC PROCESS PLUGINS
// LLDB NATIVE VALUE REGS INVALIDATE REGS
// ======== ====== == === ============= =========== ============
// ============== ============ =================
// =================== ========== =================
{"r0",
"zero",
4,
Expand Down
6 changes: 0 additions & 6 deletions lldb/source/Plugins/ABI/Mips/ABISysV_mips64.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,6 @@ enum dwarf_regnums {
};

static const RegisterInfo g_register_infos_mips64[] = {
// NAME ALT SZ OFF ENCODING FORMAT EH_FRAME
// DWARF GENERIC PROCESS PLUGIN
// LLDB NATIVE
// ======== ====== == === ============= ========== =============
// ================= ==================== =================
// ====================
{"r0",
"zero",
8,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,13 +184,6 @@ enum {
sizeof(RegisterContextDarwin_arm::EXC))

static RegisterInfo g_register_infos[] = {
// General purpose registers
// NAME ALT SZ OFFSET ENCODING FORMAT
// EH_FRAME DWARF GENERIC
// PROCESS PLUGIN LLDB NATIVE
// ====== ======= == ============= ============= ============
// =============== =============== =========================
// ===================== =============
{"r0",
nullptr,
4,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -165,11 +165,6 @@ enum {
sizeof(RegisterContextDarwin_i386::EXC))

static RegisterInfo g_register_infos[] = {
// Macro auto defines most stuff eh_frame DWARF
// GENERIC PROCESS PLUGIN LLDB
// =============================== =======================
// =================== ========================= ==================
// =================
{DEFINE_GPR(eax, nullptr),
{ehframe_eax, dwarf_eax, LLDB_INVALID_REGNUM, LLDB_INVALID_REGNUM,
gpr_eax},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -184,11 +184,6 @@ enum ehframe_dwarf_regnums {

// General purpose registers for 64 bit
static RegisterInfo g_register_infos[] = {
// Macro auto defines most stuff EH_FRAME DWARF
// GENERIC PROCESS PLUGIN LLDB
// =============================== ======================
// =================== ========================== ====================
// ===================
{DEFINE_GPR(rax, nullptr),
{ehframe_dwarf_gpr_rax, ehframe_dwarf_gpr_rax, LLDB_INVALID_REGNUM,
LLDB_INVALID_REGNUM, gpr_rax},
Expand Down
7 changes: 0 additions & 7 deletions lldb/source/Plugins/Process/Utility/RegisterInfos_arm.h
Original file line number Diff line number Diff line change
Expand Up @@ -363,13 +363,6 @@ static uint32_t g_q15_contained[] = {fpu_q15, LLDB_INVALID_REGNUM};
}

static RegisterInfo g_register_infos_arm[] = {
// NAME ALT SZ OFFSET ENCODING FORMAT
// EH_FRAME DWARF GENERIC
// PROCESS PLUGIN LLDB NATIVE VALUE REGS INVALIDATE REGS
// =========== ======= == ============== ================
// ==================== =================== ===================
// ========================== =================== =============
// ============== =================
{
"r0",
nullptr,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -163,12 +163,6 @@ enum RegisterIndex {

// Array of all register information supported by Windows x86
RegisterInfo g_register_infos[] = {
// Macro auto defines most stuff eh_frame DWARF
// GENERIC
// GDB LLDB VALUE REGS INVALIDATE REGS
// ================================ =========================
// ====================== =========================
// =================== ================= ========== ===============
DEFINE_GPR(rax, nullptr, LLDB_INVALID_REGNUM),
DEFINE_GPR(rbx, nullptr, LLDB_INVALID_REGNUM),
DEFINE_GPR(rcx, nullptr, LLDB_REGNUM_GENERIC_ARG1),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,6 @@ enum RegisterIndex {

// Array of all register information supported by Windows x86
RegisterInfo g_register_infos[] = {
// Macro auto defines most stuff eh_frame DWARF
// GENERIC GDB LLDB
// VALUE REGS INVALIDATE REGS
// ============================== =======================
// =================== ========================= ===================
// ================= ========== ===============
{DEFINE_GPR(eax, nullptr),
{ehframe_eax_i386, dwarf_eax_i386, LLDB_INVALID_REGNUM,
LLDB_INVALID_REGNUM, lldb_eax_i386},
Expand Down
Loading