diff options
author | Raphael Isemann <teemperor@gmail.com> | 2019-12-05 14:41:09 +0100 |
---|---|---|
committer | Raphael Isemann <teemperor@gmail.com> | 2019-12-05 14:41:33 +0100 |
commit | 1462f5a4c138bb20f38a579a29d12ab4e5fb6191 (patch) | |
tree | 38e08e27e5d8ec3843f65f9e09940d3635f69428 /lldb/source/Target/ThreadPlanStepThrough.cpp | |
parent | 18b72d337ef31bc4f1b898ceb17796ffe12dd104 (diff) | |
download | bcm5719-llvm-1462f5a4c138bb20f38a579a29d12ab4e5fb6191.tar.gz bcm5719-llvm-1462f5a4c138bb20f38a579a29d12ab4e5fb6191.zip |
[lldb][NFC] Move Address and AddressRange functions out of Stream and let them take raw_ostream
Summary:
Yet another step on the long road towards getting rid of lldb's Stream class.
We probably should just make this some kind of member of Address/AddressRange, but it seems quite often we just push
in random integers in there and this is just about getting rid of Stream and not improving arbitrary APIs.
I had to rename another `DumpAddress` function in FormatEntity that is dumping the content of an address to make Clang happy.
Reviewers: labath
Reviewed By: labath
Subscribers: JDevlieghere, lldb-commits
Tags: #lldb
Differential Revision: https://reviews.llvm.org/D71052
Diffstat (limited to 'lldb/source/Target/ThreadPlanStepThrough.cpp')
-rw-r--r-- | lldb/source/Target/ThreadPlanStepThrough.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
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."); } |