diff options
Diffstat (limited to 'lldb/source/Target')
| -rw-r--r-- | lldb/source/Target/ThreadPlanRunToAddress.cpp | 6 | ||||
| -rw-r--r-- | lldb/source/Target/ThreadPlanStepInRange.cpp | 4 | ||||
| -rw-r--r-- | lldb/source/Target/ThreadPlanStepInstruction.cpp | 16 | ||||
| -rw-r--r-- | lldb/source/Target/ThreadPlanStepOverRange.cpp | 4 | ||||
| -rw-r--r-- | lldb/source/Target/ThreadPlanStepThrough.cpp | 4 |
5 files changed, 18 insertions, 16 deletions
diff --git a/lldb/source/Target/ThreadPlanRunToAddress.cpp b/lldb/source/Target/ThreadPlanRunToAddress.cpp index 160743a9f3f..32ea2e67527 100644 --- a/lldb/source/Target/ThreadPlanRunToAddress.cpp +++ b/lldb/source/Target/ThreadPlanRunToAddress.cpp @@ -97,7 +97,7 @@ void ThreadPlanRunToAddress::GetDescription(Stream *s, s->Printf("run to addresses: "); for (size_t i = 0; i < num_addresses; i++) { - s->Address(m_addresses[i], sizeof(addr_t)); + DumpAddress(s->AsRawOstream(), m_addresses[i], sizeof(addr_t)); s->Printf(" "); } } else { @@ -116,7 +116,7 @@ void ThreadPlanRunToAddress::GetDescription(Stream *s, s->Indent(); } - s->Address(m_addresses[i], sizeof(addr_t)); + DumpAddress(s->AsRawOstream(), m_addresses[i], sizeof(addr_t)); s->Printf(" using breakpoint: %d - ", m_break_ids[i]); Breakpoint *breakpoint = m_thread.CalculateTarget()->GetBreakpointByID(m_break_ids[i]).get(); @@ -143,7 +143,7 @@ bool ThreadPlanRunToAddress::ValidatePlan(Stream *error) { all_bps_good = false; if (error) { error->Printf("Could not set breakpoint for address: "); - error->Address(m_addresses[i], sizeof(addr_t)); + DumpAddress(error->AsRawOstream(), m_addresses[i], sizeof(addr_t)); error->Printf("\n"); } } diff --git a/lldb/source/Target/ThreadPlanStepInRange.cpp b/lldb/source/Target/ThreadPlanStepInRange.cpp index fdb2782bc51..ab1f6a21a86 100644 --- a/lldb/source/Target/ThreadPlanStepInRange.cpp +++ b/lldb/source/Target/ThreadPlanStepInRange.cpp @@ -145,8 +145,8 @@ bool ThreadPlanStepInRange::ShouldStop(Event *event_ptr) { if (log) { StreamString s; - s.Address( - m_thread.GetRegisterContext()->GetPC(), + DumpAddress( + s.AsRawOstream(), m_thread.GetRegisterContext()->GetPC(), m_thread.CalculateTarget()->GetArchitecture().GetAddressByteSize()); LLDB_LOGF(log, "ThreadPlanStepInRange reached %s.", s.GetData()); } diff --git a/lldb/source/Target/ThreadPlanStepInstruction.cpp b/lldb/source/Target/ThreadPlanStepInstruction.cpp index 0c75cb81115..afcc9d608b2 100644 --- a/lldb/source/Target/ThreadPlanStepInstruction.cpp +++ b/lldb/source/Target/ThreadPlanStepInstruction.cpp @@ -65,7 +65,7 @@ void ThreadPlanStepInstruction::GetDescription(Stream *s, PrintFailureIfAny(); } else { s->Printf("Stepping one instruction past "); - s->Address(m_instruction_addr, sizeof(addr_t)); + DumpAddress(s->AsRawOstream(), m_instruction_addr, sizeof(addr_t)); if (!m_start_has_symbol) s->Printf(" which has no symbol"); @@ -182,14 +182,16 @@ bool ThreadPlanStepInstruction::ShouldStop(Event *event_ptr) { s.PutCString("Stepped in to: "); addr_t stop_addr = m_thread.GetStackFrameAtIndex(0)->GetRegisterContext()->GetPC(); - s.Address(stop_addr, m_thread.CalculateTarget() - ->GetArchitecture() - .GetAddressByteSize()); + DumpAddress(s.AsRawOstream(), stop_addr, + m_thread.CalculateTarget() + ->GetArchitecture() + .GetAddressByteSize()); s.PutCString(" stepping out to: "); addr_t return_addr = return_frame->GetRegisterContext()->GetPC(); - s.Address(return_addr, m_thread.CalculateTarget() - ->GetArchitecture() - .GetAddressByteSize()); + DumpAddress(s.AsRawOstream(), return_addr, + m_thread.CalculateTarget() + ->GetArchitecture() + .GetAddressByteSize()); LLDB_LOGF(log, "%s.", s.GetData()); } diff --git a/lldb/source/Target/ThreadPlanStepOverRange.cpp b/lldb/source/Target/ThreadPlanStepOverRange.cpp index 2de678597c8..3dc1967e6d4 100644 --- a/lldb/source/Target/ThreadPlanStepOverRange.cpp +++ b/lldb/source/Target/ThreadPlanStepOverRange.cpp @@ -128,8 +128,8 @@ bool ThreadPlanStepOverRange::ShouldStop(Event *event_ptr) { if (log) { StreamString s; - s.Address( - m_thread.GetRegisterContext()->GetPC(), + DumpAddress( + s.AsRawOstream(), m_thread.GetRegisterContext()->GetPC(), m_thread.CalculateTarget()->GetArchitecture().GetAddressByteSize()); LLDB_LOGF(log, "ThreadPlanStepOverRange reached %s.", s.GetData()); } diff --git a/lldb/source/Target/ThreadPlanStepThrough.cpp b/lldb/source/Target/ThreadPlanStepThrough.cpp index 92b7fce1bc9..8c7b180fce2 100644 --- a/lldb/source/Target/ThreadPlanStepThrough.cpp +++ b/lldb/source/Target/ThreadPlanStepThrough.cpp @@ -119,11 +119,11 @@ void ThreadPlanStepThrough::GetDescription(Stream *s, s->Printf("Step through"); else { s->PutCString("Stepping through trampoline code from: "); - s->Address(m_start_address, sizeof(addr_t)); + DumpAddress(s->AsRawOstream(), m_start_address, sizeof(addr_t)); if (m_backstop_bkpt_id != LLDB_INVALID_BREAK_ID) { s->Printf(" with backstop breakpoint ID: %d at address: ", m_backstop_bkpt_id); - s->Address(m_backstop_addr, sizeof(addr_t)); + DumpAddress(s->AsRawOstream(), m_backstop_addr, sizeof(addr_t)); } else s->PutCString(" unable to set a backstop breakpoint."); } |

