CORE_ADDR m_address;
linetable_entry_flags m_flags;
- unsigned int m_discriminator;
+ unsigned int m_discriminator = 0;
/* Additional bits of state we need to track. */
bool m_stmt_at_address = false;
/* When true, record the lines we decode. */
- bool m_currently_recording_lines = false;
+ bool m_currently_recording_lines = true;
/* The last line number that was recorded, used to coalesce
consecutive entries for the same line. This can happen, for
lnp_state_machine::lnp_state_machine (struct dwarf2_cu *cu, gdbarch *arch,
line_header *lh)
+ : m_cu (cu),
+ m_gdbarch (arch),
+ m_line_header (lh),
+ /* Call `gdbarch_adjust_dwarf2_line' on the initial 0 address as
+ if there was a line entry for it so that the backend has a
+ chance to adjust it and also record it in case it needs it.
+ This is currently used by MIPS code,
+ cf. `mips_adjust_dwarf2_line'. */
+ m_address (gdbarch_adjust_dwarf2_line (arch, 0, 0)),
+ m_flags (lh->default_is_stmt ? LEF_IS_STMT : (linetable_entry_flags) 0),
+ m_last_address (m_address)
{
- m_cu = cu;
- m_gdbarch = arch;
- m_line_header = lh;
-
- m_currently_recording_lines = true;
-
- /* Call `gdbarch_adjust_dwarf2_line' on the initial 0 address as if there
- was a line entry for it so that the backend has a chance to adjust it
- and also record it in case it needs it. This is currently used by MIPS
- code, cf. `mips_adjust_dwarf2_line'. */
- m_address = gdbarch_adjust_dwarf2_line (arch, 0, 0);
- m_flags = 0;
- if (lh->default_is_stmt)
- m_flags |= LEF_IS_STMT;
- m_discriminator = 0;
-
- m_last_address = m_address;
- m_stmt_at_address = false;
}
void