2010-06-09 00:52:24 +08:00
|
|
|
|
//===-- StackFrame.cpp ------------------------------------------*- C++ -*-===//
|
|
|
|
|
//
|
2019-01-19 16:50:56 +08:00
|
|
|
|
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
|
|
|
|
|
// See https://llvm.org/LICENSE.txt for license information.
|
|
|
|
|
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
|
2010-06-09 00:52:24 +08:00
|
|
|
|
//
|
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
2016-02-19 02:52:47 +08:00
|
|
|
|
#include "lldb/Target/StackFrame.h"
|
2010-10-04 09:05:56 +08:00
|
|
|
|
#include "lldb/Core/Debugger.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
#include "lldb/Core/Disassembler.h"
|
2015-02-05 06:00:53 +08:00
|
|
|
|
#include "lldb/Core/FormatEntity.h"
|
2016-03-16 05:50:51 +08:00
|
|
|
|
#include "lldb/Core/Mangled.h"
|
|
|
|
|
#include "lldb/Core/Module.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
#include "lldb/Core/Value.h"
|
2010-12-15 13:08:08 +08:00
|
|
|
|
#include "lldb/Core/ValueObjectConstResult.h"
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
#include "lldb/Core/ValueObjectMemory.h"
|
2016-09-07 04:57:50 +08:00
|
|
|
|
#include "lldb/Core/ValueObjectVariable.h"
|
<rdar://problem/11757916>
Make breakpoint setting by file and line much more efficient by only looking for inlined breakpoint locations if we are setting a breakpoint in anything but a source implementation file. Implementing this complex for a many reasons. Turns out that parsing compile units lazily had some issues with respect to how we need to do things with DWARF in .o files. So the fixes in the checkin for this makes these changes:
- Add a new setting called "target.inline-breakpoint-strategy" which can be set to "never", "always", or "headers". "never" will never try and set any inlined breakpoints (fastest). "always" always looks for inlined breakpoint locations (slowest, but most accurate). "headers", which is the default setting, will only look for inlined breakpoint locations if the breakpoint is set in what are consudered to be header files, which is realy defined as "not in an implementation source file".
- modify the breakpoint setting by file and line to check the current "target.inline-breakpoint-strategy" setting and act accordingly
- Modify compile units to be able to get their language and other info lazily. This allows us to create compile units from the debug map and not have to fill all of the details in, and then lazily discover this information as we go on debuggging. This is needed to avoid parsing all .o files when setting breakpoints in implementation only files (no inlines). Otherwise we would need to parse the .o file, the object file (mach-o in our case) and the symbol file (DWARF in the object file) just to see what the compile unit was.
- modify the "SymbolFileDWARFDebugMap" to subclass lldb_private::Module so that the virtual "GetObjectFile()" and "GetSymbolVendor()" functions can be intercepted when the .o file contenst are later lazilly needed. Prior to this fix, when we first instantiated the "SymbolFileDWARFDebugMap" class, we would also make modules, object files and symbol files for every .o file in the debug map because we needed to fix up the sections in the .o files with information that is in the executable debug map. Now we lazily do this in the DebugMapModule::GetObjectFile()
Cleaned up header includes a bit as well.
llvm-svn: 162860
2012-08-30 05:13:06 +08:00
|
|
|
|
#include "lldb/Symbol/CompileUnit.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
#include "lldb/Symbol/Function.h"
|
<rdar://problem/11757916>
Make breakpoint setting by file and line much more efficient by only looking for inlined breakpoint locations if we are setting a breakpoint in anything but a source implementation file. Implementing this complex for a many reasons. Turns out that parsing compile units lazily had some issues with respect to how we need to do things with DWARF in .o files. So the fixes in the checkin for this makes these changes:
- Add a new setting called "target.inline-breakpoint-strategy" which can be set to "never", "always", or "headers". "never" will never try and set any inlined breakpoints (fastest). "always" always looks for inlined breakpoint locations (slowest, but most accurate). "headers", which is the default setting, will only look for inlined breakpoint locations if the breakpoint is set in what are consudered to be header files, which is realy defined as "not in an implementation source file".
- modify the breakpoint setting by file and line to check the current "target.inline-breakpoint-strategy" setting and act accordingly
- Modify compile units to be able to get their language and other info lazily. This allows us to create compile units from the debug map and not have to fill all of the details in, and then lazily discover this information as we go on debuggging. This is needed to avoid parsing all .o files when setting breakpoints in implementation only files (no inlines). Otherwise we would need to parse the .o file, the object file (mach-o in our case) and the symbol file (DWARF in the object file) just to see what the compile unit was.
- modify the "SymbolFileDWARFDebugMap" to subclass lldb_private::Module so that the virtual "GetObjectFile()" and "GetSymbolVendor()" functions can be intercepted when the .o file contenst are later lazilly needed. Prior to this fix, when we first instantiated the "SymbolFileDWARFDebugMap" class, we would also make modules, object files and symbol files for every .o file in the debug map because we needed to fix up the sections in the .o files with information that is in the executable debug map. Now we lazily do this in the DebugMapModule::GetObjectFile()
Cleaned up header includes a bit as well.
llvm-svn: 162860
2012-08-30 05:13:06 +08:00
|
|
|
|
#include "lldb/Symbol/Symbol.h"
|
|
|
|
|
#include "lldb/Symbol/SymbolContextScope.h"
|
2015-11-20 06:28:58 +08:00
|
|
|
|
#include "lldb/Symbol/Type.h"
|
2010-09-02 10:59:18 +08:00
|
|
|
|
#include "lldb/Symbol/VariableList.h"
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
#include "lldb/Target/ABI.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
#include "lldb/Target/ExecutionContext.h"
|
|
|
|
|
#include "lldb/Target/Process.h"
|
|
|
|
|
#include "lldb/Target/RegisterContext.h"
|
2018-10-31 12:00:22 +08:00
|
|
|
|
#include "lldb/Target/StackFrameRecognizer.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
#include "lldb/Target/Target.h"
|
|
|
|
|
#include "lldb/Target/Thread.h"
|
2019-07-31 06:12:34 +08:00
|
|
|
|
#include "lldb/Utility/Log.h"
|
2018-08-07 19:07:21 +08:00
|
|
|
|
#include "lldb/Utility/RegisterValue.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
2018-10-26 04:45:19 +08:00
|
|
|
|
#include "lldb/lldb-enumerations.h"
|
|
|
|
|
|
2019-02-12 07:13:08 +08:00
|
|
|
|
#include <memory>
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
|
using namespace lldb;
|
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
|
|
// The first bits in the flags are reserved for the SymbolContext::Scope bits
|
|
|
|
|
// so we know if we have tried to look up information in our internal symbol
|
|
|
|
|
// context (m_sc) already.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
#define RESOLVED_FRAME_CODE_ADDR (uint32_t(eSymbolContextEverything + 1))
|
|
|
|
|
#define RESOLVED_FRAME_ID_SYMBOL_SCOPE (RESOLVED_FRAME_CODE_ADDR << 1)
|
|
|
|
|
#define GOT_FRAME_BASE (RESOLVED_FRAME_ID_SYMBOL_SCOPE << 1)
|
|
|
|
|
#define RESOLVED_VARIABLES (GOT_FRAME_BASE << 1)
|
|
|
|
|
#define RESOLVED_GLOBAL_VARIABLES (RESOLVED_VARIABLES << 1)
|
|
|
|
|
|
|
|
|
|
StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx,
|
|
|
|
|
user_id_t unwind_frame_index, addr_t cfa,
|
2018-10-06 07:23:15 +08:00
|
|
|
|
bool cfa_is_valid, addr_t pc, StackFrame::Kind kind,
|
2019-08-03 00:53:42 +08:00
|
|
|
|
bool behaves_like_zeroth_frame,
|
2016-05-19 13:13:57 +08:00
|
|
|
|
const SymbolContext *sc_ptr)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
: m_thread_wp(thread_sp), m_frame_index(frame_idx),
|
|
|
|
|
m_concrete_frame_index(unwind_frame_index), m_reg_context_sp(),
|
|
|
|
|
m_id(pc, cfa, nullptr), m_frame_code_addr(pc), m_sc(), m_flags(),
|
|
|
|
|
m_frame_base(), m_frame_base_error(), m_cfa_is_valid(cfa_is_valid),
|
2019-08-03 00:53:42 +08:00
|
|
|
|
m_stack_frame_kind(kind),
|
|
|
|
|
m_behaves_like_zeroth_frame(behaves_like_zeroth_frame),
|
|
|
|
|
m_variable_list_sp(), m_variable_list_value_objects(),
|
|
|
|
|
m_recognized_frame_sp(), m_disassembly(), m_mutex() {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
// If we don't have a CFA value, use the frame index for our StackID so that
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// recursive functions properly aren't confused with one another on a history
|
|
|
|
|
// stack.
|
2018-10-06 07:23:15 +08:00
|
|
|
|
if (IsHistorical() && !m_cfa_is_valid) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
m_id.SetCFA(m_frame_index);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (sc_ptr != nullptr) {
|
|
|
|
|
m_sc = *sc_ptr;
|
|
|
|
|
m_flags.Set(m_sc.GetResolvedMask());
|
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx,
|
|
|
|
|
user_id_t unwind_frame_index,
|
|
|
|
|
const RegisterContextSP ®_context_sp, addr_t cfa,
|
2019-08-03 00:53:42 +08:00
|
|
|
|
addr_t pc, bool behaves_like_zeroth_frame,
|
|
|
|
|
const SymbolContext *sc_ptr)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
: m_thread_wp(thread_sp), m_frame_index(frame_idx),
|
2016-05-19 13:13:57 +08:00
|
|
|
|
m_concrete_frame_index(unwind_frame_index),
|
2016-09-07 04:57:50 +08:00
|
|
|
|
m_reg_context_sp(reg_context_sp), m_id(pc, cfa, nullptr),
|
|
|
|
|
m_frame_code_addr(pc), m_sc(), m_flags(), m_frame_base(),
|
2018-10-06 07:23:15 +08:00
|
|
|
|
m_frame_base_error(), m_cfa_is_valid(true),
|
2019-08-03 00:53:42 +08:00
|
|
|
|
m_stack_frame_kind(StackFrame::Kind::Regular),
|
|
|
|
|
m_behaves_like_zeroth_frame(behaves_like_zeroth_frame),
|
|
|
|
|
m_variable_list_sp(), m_variable_list_value_objects(),
|
|
|
|
|
m_recognized_frame_sp(), m_disassembly(), m_mutex() {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (sc_ptr != nullptr) {
|
|
|
|
|
m_sc = *sc_ptr;
|
|
|
|
|
m_flags.Set(m_sc.GetResolvedMask());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (reg_context_sp && !m_sc.target_sp) {
|
|
|
|
|
m_sc.target_sp = reg_context_sp->CalculateTarget();
|
|
|
|
|
if (m_sc.target_sp)
|
|
|
|
|
m_flags.Set(eSymbolContextTarget);
|
|
|
|
|
}
|
Added support for inlined stack frames being represented as real stack frames
which is now on by default. Frames are gotten from the unwinder as concrete
frames, then if inline frames are to be shown, extra information to track
and reconstruct these frames is cached with each Thread and exanded as needed.
I added an inline height as part of the lldb_private::StackID class, the class
that helps us uniquely identify stack frames. This allows for two frames to
shared the same call frame address, yet differ only in inline height.
Fixed setting breakpoint by address to not require addresses to resolve.
A quick example:
% cat main.cpp
% ./build/Debug/lldb test/stl/a.out
Current executable set to 'test/stl/a.out' (x86_64).
(lldb) breakpoint set --address 0x0000000100000d31
Breakpoint created: 1: address = 0x0000000100000d31, locations = 1
(lldb) r
Launching 'a.out' (x86_64)
(lldb) Process 38031 Stopped
* thread #1: tid = 0x2e03, pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280, stop reason = breakpoint 1.1, queue = com.apple.main-thread
277
278 _CharT*
279 _M_data() const
280 -> { return _M_dataplus._M_p; }
281
282 _CharT*
283 _M_data(_CharT* __p)
(lldb) bt
thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
frame #0: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280
frame #1: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_rep() const at /usr/include/c++/4.2.1/bits/basic_string.h:288
frame #2: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::size() const at /usr/include/c++/4.2.1/bits/basic_string.h:606
frame #3: pc = 0x0000000100000d31, where = a.out`main [inlined] operator<< <char, std::char_traits<char>, std::allocator<char> > at /usr/include/c++/4.2.1/bits/basic_string.h:2414
frame #4: pc = 0x0000000100000d31, where = a.out`main + 33 at /Volumes/work/gclayton/Documents/src/lldb/test/stl/main.cpp:14
frame #5: pc = 0x0000000100000d08, where = a.out`start + 52
Each inline frame contains only the variables that they contain and each inlined
stack frame is treated as a single entity.
llvm-svn: 111877
2010-08-24 08:45:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
StackFrame::StackFrame(const ThreadSP &thread_sp, user_id_t frame_idx,
|
|
|
|
|
user_id_t unwind_frame_index,
|
|
|
|
|
const RegisterContextSP ®_context_sp, addr_t cfa,
|
2019-08-03 00:53:42 +08:00
|
|
|
|
const Address &pc_addr, bool behaves_like_zeroth_frame,
|
|
|
|
|
const SymbolContext *sc_ptr)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
: m_thread_wp(thread_sp), m_frame_index(frame_idx),
|
2016-05-19 13:13:57 +08:00
|
|
|
|
m_concrete_frame_index(unwind_frame_index),
|
|
|
|
|
m_reg_context_sp(reg_context_sp),
|
2016-09-07 04:57:50 +08:00
|
|
|
|
m_id(pc_addr.GetLoadAddress(thread_sp->CalculateTarget().get()), cfa,
|
|
|
|
|
nullptr),
|
|
|
|
|
m_frame_code_addr(pc_addr), m_sc(), m_flags(), m_frame_base(),
|
2018-10-06 07:23:15 +08:00
|
|
|
|
m_frame_base_error(), m_cfa_is_valid(true),
|
2019-08-03 00:53:42 +08:00
|
|
|
|
m_stack_frame_kind(StackFrame::Kind::Regular),
|
|
|
|
|
m_behaves_like_zeroth_frame(behaves_like_zeroth_frame),
|
|
|
|
|
m_variable_list_sp(), m_variable_list_value_objects(),
|
|
|
|
|
m_recognized_frame_sp(), m_disassembly(), m_mutex() {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (sc_ptr != nullptr) {
|
|
|
|
|
m_sc = *sc_ptr;
|
|
|
|
|
m_flags.Set(m_sc.GetResolvedMask());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!m_sc.target_sp && reg_context_sp) {
|
|
|
|
|
m_sc.target_sp = reg_context_sp->CalculateTarget();
|
|
|
|
|
if (m_sc.target_sp)
|
|
|
|
|
m_flags.Set(eSymbolContextTarget);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ModuleSP pc_module_sp(pc_addr.GetModule());
|
|
|
|
|
if (!m_sc.module_sp || m_sc.module_sp != pc_module_sp) {
|
|
|
|
|
if (pc_module_sp) {
|
|
|
|
|
m_sc.module_sp = pc_module_sp;
|
|
|
|
|
m_flags.Set(eSymbolContextModule);
|
|
|
|
|
} else {
|
|
|
|
|
m_sc.module_sp.reset();
|
Added support for inlined stack frames being represented as real stack frames
which is now on by default. Frames are gotten from the unwinder as concrete
frames, then if inline frames are to be shown, extra information to track
and reconstruct these frames is cached with each Thread and exanded as needed.
I added an inline height as part of the lldb_private::StackID class, the class
that helps us uniquely identify stack frames. This allows for two frames to
shared the same call frame address, yet differ only in inline height.
Fixed setting breakpoint by address to not require addresses to resolve.
A quick example:
% cat main.cpp
% ./build/Debug/lldb test/stl/a.out
Current executable set to 'test/stl/a.out' (x86_64).
(lldb) breakpoint set --address 0x0000000100000d31
Breakpoint created: 1: address = 0x0000000100000d31, locations = 1
(lldb) r
Launching 'a.out' (x86_64)
(lldb) Process 38031 Stopped
* thread #1: tid = 0x2e03, pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280, stop reason = breakpoint 1.1, queue = com.apple.main-thread
277
278 _CharT*
279 _M_data() const
280 -> { return _M_dataplus._M_p; }
281
282 _CharT*
283 _M_data(_CharT* __p)
(lldb) bt
thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
frame #0: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280
frame #1: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_rep() const at /usr/include/c++/4.2.1/bits/basic_string.h:288
frame #2: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::size() const at /usr/include/c++/4.2.1/bits/basic_string.h:606
frame #3: pc = 0x0000000100000d31, where = a.out`main [inlined] operator<< <char, std::char_traits<char>, std::allocator<char> > at /usr/include/c++/4.2.1/bits/basic_string.h:2414
frame #4: pc = 0x0000000100000d31, where = a.out`main + 33 at /Volumes/work/gclayton/Documents/src/lldb/test/stl/main.cpp:14
frame #5: pc = 0x0000000100000d08, where = a.out`start + 52
Each inline frame contains only the variables that they contain and each inlined
stack frame is treated as a single entity.
llvm-svn: 111877
2010-08-24 08:45:41 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-02-19 02:52:47 +08:00
|
|
|
|
StackFrame::~StackFrame() = default;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
StackID &StackFrame::GetStackID() {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Make sure we have resolved the StackID object's symbol context scope if we
|
|
|
|
|
// already haven't looked it up.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
|
if (m_flags.IsClear(RESOLVED_FRAME_ID_SYMBOL_SCOPE)) {
|
|
|
|
|
if (m_id.GetSymbolContextScope()) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// We already have a symbol context scope, we just don't have our flag
|
|
|
|
|
// bit set.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
m_flags.Set(RESOLVED_FRAME_ID_SYMBOL_SCOPE);
|
|
|
|
|
} else {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Calculate the frame block and use this for the stack ID symbol context
|
|
|
|
|
// scope if we have one.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
SymbolContextScope *scope = GetFrameBlock();
|
|
|
|
|
if (scope == nullptr) {
|
|
|
|
|
// We don't have a block, so use the symbol
|
|
|
|
|
if (m_flags.IsClear(eSymbolContextSymbol))
|
|
|
|
|
GetSymbolContext(eSymbolContextSymbol);
|
|
|
|
|
|
|
|
|
|
// It is ok if m_sc.symbol is nullptr here
|
|
|
|
|
scope = m_sc.symbol;
|
|
|
|
|
}
|
|
|
|
|
// Set the symbol context scope (the accessor will set the
|
|
|
|
|
// RESOLVED_FRAME_ID_SYMBOL_SCOPE bit in m_flags).
|
|
|
|
|
SetSymbolContextScope(scope);
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
return m_id;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
uint32_t StackFrame::GetFrameIndex() const {
|
|
|
|
|
ThreadSP thread_sp = GetThread();
|
|
|
|
|
if (thread_sp)
|
|
|
|
|
return thread_sp->GetStackFrameList()->GetVisibleStackFrameIndex(
|
|
|
|
|
m_frame_index);
|
|
|
|
|
else
|
|
|
|
|
return m_frame_index;
|
2012-09-01 09:02:41 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
void StackFrame::SetSymbolContextScope(SymbolContextScope *symbol_scope) {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
m_flags.Set(RESOLVED_FRAME_ID_SYMBOL_SCOPE);
|
|
|
|
|
m_id.SetSymbolContextScope(symbol_scope);
|
2010-08-31 02:11:35 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
const Address &StackFrame::GetFrameCodeAddress() {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
if (m_flags.IsClear(RESOLVED_FRAME_CODE_ADDR) &&
|
|
|
|
|
!m_frame_code_addr.IsSectionOffset()) {
|
|
|
|
|
m_flags.Set(RESOLVED_FRAME_CODE_ADDR);
|
|
|
|
|
|
|
|
|
|
// Resolve the PC into a temporary address because if ResolveLoadAddress
|
|
|
|
|
// fails to resolve the address, it will clear the address object...
|
|
|
|
|
ThreadSP thread_sp(GetThread());
|
|
|
|
|
if (thread_sp) {
|
|
|
|
|
TargetSP target_sp(thread_sp->CalculateTarget());
|
|
|
|
|
if (target_sp) {
|
2017-06-08 21:26:35 +08:00
|
|
|
|
const bool allow_section_end = true;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (m_frame_code_addr.SetOpcodeLoadAddress(
|
|
|
|
|
m_frame_code_addr.GetOffset(), target_sp.get(),
|
2018-06-26 21:06:54 +08:00
|
|
|
|
AddressClass::eCode, allow_section_end)) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ModuleSP module_sp(m_frame_code_addr.GetModule());
|
|
|
|
|
if (module_sp) {
|
|
|
|
|
m_sc.module_sp = module_sp;
|
|
|
|
|
m_flags.Set(eSymbolContextModule);
|
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
return m_frame_code_addr;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
bool StackFrame::ChangePC(addr_t pc) {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
// We can't change the pc value of a history stack frame - it is immutable.
|
2018-10-06 07:23:15 +08:00
|
|
|
|
if (IsHistorical())
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return false;
|
|
|
|
|
m_frame_code_addr.SetRawAddress(pc);
|
|
|
|
|
m_sc.Clear(false);
|
|
|
|
|
m_flags.Reset(0);
|
|
|
|
|
ThreadSP thread_sp(GetThread());
|
|
|
|
|
if (thread_sp)
|
|
|
|
|
thread_sp->ClearStackFrames();
|
|
|
|
|
return true;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
const char *StackFrame::Disassemble() {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
2017-03-01 01:59:59 +08:00
|
|
|
|
if (m_disassembly.Empty()) {
|
|
|
|
|
ExecutionContext exe_ctx(shared_from_this());
|
|
|
|
|
Target *target = exe_ctx.GetTargetPtr();
|
|
|
|
|
if (target) {
|
|
|
|
|
const char *plugin_name = nullptr;
|
|
|
|
|
const char *flavor = nullptr;
|
|
|
|
|
Disassembler::Disassemble(target->GetDebugger(),
|
|
|
|
|
target->GetArchitecture(), plugin_name, flavor,
|
|
|
|
|
exe_ctx, 0, false, 0, 0, m_disassembly);
|
|
|
|
|
}
|
|
|
|
|
if (m_disassembly.Empty())
|
|
|
|
|
return nullptr;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2017-03-01 01:59:59 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return m_disassembly.GetData();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
Block *StackFrame::GetFrameBlock() {
|
|
|
|
|
if (m_sc.block == nullptr && m_flags.IsClear(eSymbolContextBlock))
|
|
|
|
|
GetSymbolContext(eSymbolContextBlock);
|
|
|
|
|
|
|
|
|
|
if (m_sc.block) {
|
|
|
|
|
Block *inline_block = m_sc.block->GetContainingInlinedBlock();
|
|
|
|
|
if (inline_block) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Use the block with the inlined function info as the frame block we
|
|
|
|
|
// want this frame to have only the variables for the inlined function
|
|
|
|
|
// and its non-inlined block child blocks.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return inline_block;
|
|
|
|
|
} else {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// This block is not contained within any inlined function blocks with so
|
|
|
|
|
// we want to use the top most function block.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return &m_sc.function->GetBlock(false);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
return nullptr;
|
2010-09-07 12:20:48 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-06-09 00:52:24 +08:00
|
|
|
|
// Get the symbol context if we already haven't done so by resolving the
|
|
|
|
|
// PC address as much as possible. This way when we pass around a
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// StackFrame object, everyone will have as much information as possible and no
|
|
|
|
|
// one will ever have to look things up manually.
|
2018-10-26 04:45:19 +08:00
|
|
|
|
const SymbolContext &
|
|
|
|
|
StackFrame::GetSymbolContext(SymbolContextItem resolve_scope) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
// Copy our internal symbol context into "sc".
|
|
|
|
|
if ((m_flags.Get() & resolve_scope) != resolve_scope) {
|
|
|
|
|
uint32_t resolved = 0;
|
|
|
|
|
|
|
|
|
|
// If the target was requested add that:
|
|
|
|
|
if (!m_sc.target_sp) {
|
|
|
|
|
m_sc.target_sp = CalculateTarget();
|
|
|
|
|
if (m_sc.target_sp)
|
|
|
|
|
resolved |= eSymbolContextTarget;
|
|
|
|
|
}
|
2014-11-08 13:38:17 +08:00
|
|
|
|
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Resolve our PC to section offset if we haven't already done so and if we
|
|
|
|
|
// don't have a module. The resolved address section will contain the
|
|
|
|
|
// module to which it belongs
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (!m_sc.module_sp && m_flags.IsClear(RESOLVED_FRAME_CODE_ADDR))
|
|
|
|
|
GetFrameCodeAddress();
|
|
|
|
|
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// If this is not frame zero, then we need to subtract 1 from the PC value
|
|
|
|
|
// when doing address lookups since the PC will be on the instruction
|
|
|
|
|
// following the function call instruction...
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
|
Address lookup_addr(GetFrameCodeAddress());
|
2019-08-03 00:53:42 +08:00
|
|
|
|
if (!m_behaves_like_zeroth_frame && lookup_addr.IsValid()) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
addr_t offset = lookup_addr.GetOffset();
|
|
|
|
|
if (offset > 0) {
|
|
|
|
|
lookup_addr.SetOffset(offset - 1);
|
|
|
|
|
|
|
|
|
|
} else {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// lookup_addr is the start of a section. We need do the math on the
|
|
|
|
|
// actual load address and re-compute the section. We're working with
|
|
|
|
|
// a 'noreturn' function at the end of a section.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ThreadSP thread_sp(GetThread());
|
|
|
|
|
if (thread_sp) {
|
|
|
|
|
TargetSP target_sp(thread_sp->CalculateTarget());
|
|
|
|
|
if (target_sp) {
|
|
|
|
|
addr_t addr_minus_one =
|
|
|
|
|
lookup_addr.GetLoadAddress(target_sp.get()) - 1;
|
|
|
|
|
lookup_addr.SetLoadAddress(addr_minus_one, target_sp.get());
|
|
|
|
|
} else {
|
|
|
|
|
lookup_addr.SetOffset(offset - 1);
|
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (m_sc.module_sp) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// We have something in our stack frame symbol context, lets check if we
|
|
|
|
|
// haven't already tried to lookup one of those things. If we haven't
|
|
|
|
|
// then we will do the query.
|
Added support for inlined stack frames being represented as real stack frames
which is now on by default. Frames are gotten from the unwinder as concrete
frames, then if inline frames are to be shown, extra information to track
and reconstruct these frames is cached with each Thread and exanded as needed.
I added an inline height as part of the lldb_private::StackID class, the class
that helps us uniquely identify stack frames. This allows for two frames to
shared the same call frame address, yet differ only in inline height.
Fixed setting breakpoint by address to not require addresses to resolve.
A quick example:
% cat main.cpp
% ./build/Debug/lldb test/stl/a.out
Current executable set to 'test/stl/a.out' (x86_64).
(lldb) breakpoint set --address 0x0000000100000d31
Breakpoint created: 1: address = 0x0000000100000d31, locations = 1
(lldb) r
Launching 'a.out' (x86_64)
(lldb) Process 38031 Stopped
* thread #1: tid = 0x2e03, pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280, stop reason = breakpoint 1.1, queue = com.apple.main-thread
277
278 _CharT*
279 _M_data() const
280 -> { return _M_dataplus._M_p; }
281
282 _CharT*
283 _M_data(_CharT* __p)
(lldb) bt
thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
frame #0: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280
frame #1: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_rep() const at /usr/include/c++/4.2.1/bits/basic_string.h:288
frame #2: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::size() const at /usr/include/c++/4.2.1/bits/basic_string.h:606
frame #3: pc = 0x0000000100000d31, where = a.out`main [inlined] operator<< <char, std::char_traits<char>, std::allocator<char> > at /usr/include/c++/4.2.1/bits/basic_string.h:2414
frame #4: pc = 0x0000000100000d31, where = a.out`main + 33 at /Volumes/work/gclayton/Documents/src/lldb/test/stl/main.cpp:14
frame #5: pc = 0x0000000100000d08, where = a.out`start + 52
Each inline frame contains only the variables that they contain and each inlined
stack frame is treated as a single entity.
llvm-svn: 111877
2010-08-24 08:45:41 +08:00
|
|
|
|
|
2018-10-26 04:45:19 +08:00
|
|
|
|
SymbolContextItem actual_resolve_scope = SymbolContextItem(0);
|
Added support for inlined stack frames being represented as real stack frames
which is now on by default. Frames are gotten from the unwinder as concrete
frames, then if inline frames are to be shown, extra information to track
and reconstruct these frames is cached with each Thread and exanded as needed.
I added an inline height as part of the lldb_private::StackID class, the class
that helps us uniquely identify stack frames. This allows for two frames to
shared the same call frame address, yet differ only in inline height.
Fixed setting breakpoint by address to not require addresses to resolve.
A quick example:
% cat main.cpp
% ./build/Debug/lldb test/stl/a.out
Current executable set to 'test/stl/a.out' (x86_64).
(lldb) breakpoint set --address 0x0000000100000d31
Breakpoint created: 1: address = 0x0000000100000d31, locations = 1
(lldb) r
Launching 'a.out' (x86_64)
(lldb) Process 38031 Stopped
* thread #1: tid = 0x2e03, pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280, stop reason = breakpoint 1.1, queue = com.apple.main-thread
277
278 _CharT*
279 _M_data() const
280 -> { return _M_dataplus._M_p; }
281
282 _CharT*
283 _M_data(_CharT* __p)
(lldb) bt
thread #1: tid = 0x2e03, stop reason = breakpoint 1.1, queue = com.apple.main-thread
frame #0: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_data() const at /usr/include/c++/4.2.1/bits/basic_string.h:280
frame #1: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::_M_rep() const at /usr/include/c++/4.2.1/bits/basic_string.h:288
frame #2: pc = 0x0000000100000d31, where = a.out`main [inlined] std::string::size() const at /usr/include/c++/4.2.1/bits/basic_string.h:606
frame #3: pc = 0x0000000100000d31, where = a.out`main [inlined] operator<< <char, std::char_traits<char>, std::allocator<char> > at /usr/include/c++/4.2.1/bits/basic_string.h:2414
frame #4: pc = 0x0000000100000d31, where = a.out`main + 33 at /Volumes/work/gclayton/Documents/src/lldb/test/stl/main.cpp:14
frame #5: pc = 0x0000000100000d08, where = a.out`start + 52
Each inline frame contains only the variables that they contain and each inlined
stack frame is treated as a single entity.
llvm-svn: 111877
2010-08-24 08:45:41 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (resolve_scope & eSymbolContextCompUnit) {
|
|
|
|
|
if (m_flags.IsClear(eSymbolContextCompUnit)) {
|
|
|
|
|
if (m_sc.comp_unit)
|
|
|
|
|
resolved |= eSymbolContextCompUnit;
|
|
|
|
|
else
|
|
|
|
|
actual_resolve_scope |= eSymbolContextCompUnit;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (resolve_scope & eSymbolContextFunction) {
|
|
|
|
|
if (m_flags.IsClear(eSymbolContextFunction)) {
|
|
|
|
|
if (m_sc.function)
|
|
|
|
|
resolved |= eSymbolContextFunction;
|
|
|
|
|
else
|
|
|
|
|
actual_resolve_scope |= eSymbolContextFunction;
|
2010-08-25 05:05:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (resolve_scope & eSymbolContextBlock) {
|
|
|
|
|
if (m_flags.IsClear(eSymbolContextBlock)) {
|
|
|
|
|
if (m_sc.block)
|
|
|
|
|
resolved |= eSymbolContextBlock;
|
|
|
|
|
else
|
|
|
|
|
actual_resolve_scope |= eSymbolContextBlock;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (resolve_scope & eSymbolContextSymbol) {
|
|
|
|
|
if (m_flags.IsClear(eSymbolContextSymbol)) {
|
|
|
|
|
if (m_sc.symbol)
|
|
|
|
|
resolved |= eSymbolContextSymbol;
|
|
|
|
|
else
|
|
|
|
|
actual_resolve_scope |= eSymbolContextSymbol;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (resolve_scope & eSymbolContextLineEntry) {
|
|
|
|
|
if (m_flags.IsClear(eSymbolContextLineEntry)) {
|
|
|
|
|
if (m_sc.line_entry.IsValid())
|
|
|
|
|
resolved |= eSymbolContextLineEntry;
|
|
|
|
|
else
|
|
|
|
|
actual_resolve_scope |= eSymbolContextLineEntry;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (actual_resolve_scope) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// We might be resolving less information than what is already in our
|
|
|
|
|
// current symbol context so resolve into a temporary symbol context
|
|
|
|
|
// "sc" so we don't clear out data we have already found in "m_sc"
|
2016-09-07 04:57:50 +08:00
|
|
|
|
SymbolContext sc;
|
|
|
|
|
// Set flags that indicate what we have tried to resolve
|
|
|
|
|
resolved |= m_sc.module_sp->ResolveSymbolContextForAddress(
|
|
|
|
|
lookup_addr, actual_resolve_scope, sc);
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Only replace what we didn't already have as we may have information
|
|
|
|
|
// for an inlined function scope that won't match what a standard
|
|
|
|
|
// lookup by address would match
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if ((resolved & eSymbolContextCompUnit) && m_sc.comp_unit == nullptr)
|
|
|
|
|
m_sc.comp_unit = sc.comp_unit;
|
|
|
|
|
if ((resolved & eSymbolContextFunction) && m_sc.function == nullptr)
|
|
|
|
|
m_sc.function = sc.function;
|
|
|
|
|
if ((resolved & eSymbolContextBlock) && m_sc.block == nullptr)
|
|
|
|
|
m_sc.block = sc.block;
|
|
|
|
|
if ((resolved & eSymbolContextSymbol) && m_sc.symbol == nullptr)
|
|
|
|
|
m_sc.symbol = sc.symbol;
|
|
|
|
|
if ((resolved & eSymbolContextLineEntry) &&
|
|
|
|
|
!m_sc.line_entry.IsValid()) {
|
|
|
|
|
m_sc.line_entry = sc.line_entry;
|
|
|
|
|
m_sc.line_entry.ApplyFileMappings(m_sc.target_sp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
// If we don't have a module, then we can't have the compile unit,
|
|
|
|
|
// function, block, line entry or symbol, so we can safely call
|
|
|
|
|
// ResolveSymbolContextForAddress with our symbol context member m_sc.
|
|
|
|
|
if (m_sc.target_sp) {
|
|
|
|
|
resolved |= m_sc.target_sp->GetImages().ResolveSymbolContextForAddress(
|
|
|
|
|
lookup_addr, resolve_scope, m_sc);
|
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
// Update our internal flags so we remember what we have tried to locate so
|
|
|
|
|
// we don't have to keep trying when more calls to this function are made.
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// We might have dug up more information that was requested (for example if
|
|
|
|
|
// we were asked to only get the block, we will have gotten the compile
|
|
|
|
|
// unit, and function) so set any additional bits that we resolved
|
2016-09-07 04:57:50 +08:00
|
|
|
|
m_flags.Set(resolve_scope | resolved);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Return the symbol context with everything that was possible to resolve
|
|
|
|
|
// resolved.
|
|
|
|
|
return m_sc;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
VariableList *StackFrame::GetVariableList(bool get_file_globals) {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
if (m_flags.IsClear(RESOLVED_VARIABLES)) {
|
|
|
|
|
m_flags.Set(RESOLVED_VARIABLES);
|
|
|
|
|
|
|
|
|
|
Block *frame_block = GetFrameBlock();
|
|
|
|
|
|
|
|
|
|
if (frame_block) {
|
|
|
|
|
const bool get_child_variables = true;
|
|
|
|
|
const bool can_create = true;
|
|
|
|
|
const bool stop_if_child_block_is_inlined_function = true;
|
2019-02-12 07:13:08 +08:00
|
|
|
|
m_variable_list_sp = std::make_shared<VariableList>();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
frame_block->AppendBlockVariables(can_create, get_child_variables,
|
|
|
|
|
stop_if_child_block_is_inlined_function,
|
2017-03-02 08:05:25 +08:00
|
|
|
|
[](Variable *v) { return true; },
|
2016-09-07 04:57:50 +08:00
|
|
|
|
m_variable_list_sp.get());
|
2010-11-01 12:38:59 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_flags.IsClear(RESOLVED_GLOBAL_VARIABLES) && get_file_globals) {
|
|
|
|
|
m_flags.Set(RESOLVED_GLOBAL_VARIABLES);
|
|
|
|
|
|
|
|
|
|
if (m_flags.IsClear(eSymbolContextCompUnit))
|
|
|
|
|
GetSymbolContext(eSymbolContextCompUnit);
|
|
|
|
|
|
|
|
|
|
if (m_sc.comp_unit) {
|
|
|
|
|
VariableListSP global_variable_list_sp(
|
|
|
|
|
m_sc.comp_unit->GetVariableList(true));
|
|
|
|
|
if (m_variable_list_sp)
|
|
|
|
|
m_variable_list_sp->AddVariables(global_variable_list_sp.get());
|
|
|
|
|
else
|
|
|
|
|
m_variable_list_sp = global_variable_list_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return m_variable_list_sp.get();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2011-08-03 07:35:43 +08:00
|
|
|
|
VariableListSP
|
2016-09-07 04:57:50 +08:00
|
|
|
|
StackFrame::GetInScopeVariableList(bool get_file_globals,
|
|
|
|
|
bool must_have_valid_location) {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
// We can't fetch variable information for a history stack frame.
|
2018-10-06 07:23:15 +08:00
|
|
|
|
if (IsHistorical())
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return VariableListSP();
|
|
|
|
|
|
|
|
|
|
VariableListSP var_list_sp(new VariableList);
|
|
|
|
|
GetSymbolContext(eSymbolContextCompUnit | eSymbolContextBlock);
|
|
|
|
|
|
|
|
|
|
if (m_sc.block) {
|
|
|
|
|
const bool can_create = true;
|
|
|
|
|
const bool get_parent_variables = true;
|
|
|
|
|
const bool stop_if_block_is_inlined_function = true;
|
|
|
|
|
m_sc.block->AppendVariables(
|
|
|
|
|
can_create, get_parent_variables, stop_if_block_is_inlined_function,
|
|
|
|
|
[this, must_have_valid_location](Variable *v) {
|
|
|
|
|
return v->IsInScope(this) && (!must_have_valid_location ||
|
|
|
|
|
v->LocationIsValidForFrame(this));
|
|
|
|
|
},
|
|
|
|
|
var_list_sp.get());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_sc.comp_unit && get_file_globals) {
|
|
|
|
|
VariableListSP global_variable_list_sp(
|
|
|
|
|
m_sc.comp_unit->GetVariableList(true));
|
|
|
|
|
if (global_variable_list_sp)
|
|
|
|
|
var_list_sp->AddVariables(global_variable_list_sp.get());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return var_list_sp;
|
2011-08-03 07:35:43 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ValueObjectSP StackFrame::GetValueForVariableExpressionPath(
|
2016-11-17 13:14:32 +08:00
|
|
|
|
llvm::StringRef var_expr, DynamicValueType use_dynamic, uint32_t options,
|
2017-05-12 12:51:55 +08:00
|
|
|
|
VariableSP &var_sp, Status &error) {
|
2016-11-17 13:14:32 +08:00
|
|
|
|
llvm::StringRef original_var_expr = var_expr;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
// We can't fetch variable information for a history stack frame.
|
2018-10-06 07:23:15 +08:00
|
|
|
|
if (IsHistorical())
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return ValueObjectSP();
|
2010-12-15 13:08:08 +08:00
|
|
|
|
|
2016-11-17 13:14:32 +08:00
|
|
|
|
if (var_expr.empty()) {
|
|
|
|
|
error.SetErrorStringWithFormat("invalid variable path '%s'",
|
|
|
|
|
var_expr.str().c_str());
|
2016-11-17 09:37:52 +08:00
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
const bool check_ptr_vs_member =
|
|
|
|
|
(options & eExpressionPathOptionCheckPtrVsMember) != 0;
|
|
|
|
|
const bool no_fragile_ivar =
|
|
|
|
|
(options & eExpressionPathOptionsNoFragileObjcIvar) != 0;
|
|
|
|
|
const bool no_synth_child =
|
|
|
|
|
(options & eExpressionPathOptionsNoSyntheticChildren) != 0;
|
|
|
|
|
// const bool no_synth_array = (options &
|
|
|
|
|
// eExpressionPathOptionsNoSyntheticArrayRange) != 0;
|
|
|
|
|
error.Clear();
|
|
|
|
|
bool deref = false;
|
|
|
|
|
bool address_of = false;
|
|
|
|
|
ValueObjectSP valobj_sp;
|
|
|
|
|
const bool get_file_globals = true;
|
|
|
|
|
// When looking up a variable for an expression, we need only consider the
|
|
|
|
|
// variables that are in scope.
|
|
|
|
|
VariableListSP var_list_sp(GetInScopeVariableList(get_file_globals));
|
|
|
|
|
VariableList *variable_list = var_list_sp.get();
|
|
|
|
|
|
|
|
|
|
if (!variable_list)
|
|
|
|
|
return ValueObjectSP();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
// If first character is a '*', then show pointer contents
|
|
|
|
|
std::string var_expr_storage;
|
|
|
|
|
if (var_expr[0] == '*') {
|
|
|
|
|
deref = true;
|
|
|
|
|
var_expr = var_expr.drop_front(); // Skip the '*'
|
|
|
|
|
} else if (var_expr[0] == '&') {
|
|
|
|
|
address_of = true;
|
|
|
|
|
var_expr = var_expr.drop_front(); // Skip the '&'
|
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
size_t separator_idx = var_expr.find_first_of(".-[=+~|&^%#@!/?,<>{}");
|
|
|
|
|
StreamString var_expr_path_strm;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
ConstString name_const_string(var_expr.substr(0, separator_idx));
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
var_sp = variable_list->FindVariable(name_const_string, false);
|
|
|
|
|
|
|
|
|
|
bool synthetically_added_instance_object = false;
|
|
|
|
|
|
|
|
|
|
if (var_sp) {
|
|
|
|
|
var_expr = var_expr.drop_front(name_const_string.GetLength());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!var_sp && (options & eExpressionPathOptionsAllowDirectIVarAccess)) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Check for direct ivars access which helps us with implicit access to
|
|
|
|
|
// ivars with the "this->" or "self->"
|
2016-11-17 09:37:52 +08:00
|
|
|
|
GetSymbolContext(eSymbolContextFunction | eSymbolContextBlock);
|
|
|
|
|
lldb::LanguageType method_language = eLanguageTypeUnknown;
|
|
|
|
|
bool is_instance_method = false;
|
|
|
|
|
ConstString method_object_name;
|
|
|
|
|
if (m_sc.GetFunctionMethodInfo(method_language, is_instance_method,
|
|
|
|
|
method_object_name)) {
|
|
|
|
|
if (is_instance_method && method_object_name) {
|
|
|
|
|
var_sp = variable_list->FindVariable(method_object_name);
|
|
|
|
|
if (var_sp) {
|
|
|
|
|
separator_idx = 0;
|
|
|
|
|
var_expr_storage = "->";
|
|
|
|
|
var_expr_storage += var_expr;
|
|
|
|
|
var_expr = var_expr_storage;
|
|
|
|
|
synthetically_added_instance_object = true;
|
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
if (!var_sp && (options & eExpressionPathOptionsInspectAnonymousUnions)) {
|
|
|
|
|
// Check if any anonymous unions are there which contain a variable with
|
|
|
|
|
// the name we need
|
|
|
|
|
for (size_t i = 0; i < variable_list->GetSize(); i++) {
|
|
|
|
|
VariableSP variable_sp = variable_list->GetVariableAtIndex(i);
|
|
|
|
|
if (!variable_sp)
|
|
|
|
|
continue;
|
|
|
|
|
if (!variable_sp->GetName().IsEmpty())
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
Type *var_type = variable_sp->GetType();
|
|
|
|
|
if (!var_type)
|
|
|
|
|
continue;
|
|
|
|
|
|
|
|
|
|
if (!var_type->GetForwardCompilerType().IsAnonymousType())
|
|
|
|
|
continue;
|
|
|
|
|
valobj_sp = GetValueObjectForFrameVariable(variable_sp, use_dynamic);
|
|
|
|
|
if (!valobj_sp)
|
|
|
|
|
return valobj_sp;
|
|
|
|
|
valobj_sp = valobj_sp->GetChildMemberWithName(name_const_string, true);
|
|
|
|
|
if (valobj_sp)
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (var_sp && !valobj_sp) {
|
|
|
|
|
valobj_sp = GetValueObjectForFrameVariable(var_sp, use_dynamic);
|
|
|
|
|
if (!valobj_sp)
|
|
|
|
|
return valobj_sp;
|
|
|
|
|
}
|
|
|
|
|
if (!valobj_sp) {
|
|
|
|
|
error.SetErrorStringWithFormat("no variable named '%s' found in this frame",
|
|
|
|
|
name_const_string.GetCString());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We are dumping at least one child
|
|
|
|
|
while (separator_idx != std::string::npos) {
|
|
|
|
|
// Calculate the next separator index ahead of time
|
|
|
|
|
ValueObjectSP child_valobj_sp;
|
|
|
|
|
const char separator_type = var_expr[0];
|
2017-04-01 04:23:22 +08:00
|
|
|
|
bool expr_is_ptr = false;
|
2016-11-17 09:37:52 +08:00
|
|
|
|
switch (separator_type) {
|
|
|
|
|
case '-':
|
2017-04-01 04:23:22 +08:00
|
|
|
|
expr_is_ptr = true;
|
2016-11-17 09:37:52 +08:00
|
|
|
|
if (var_expr.size() >= 2 && var_expr[1] != '>')
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
|
|
|
|
|
if (no_fragile_ivar) {
|
|
|
|
|
// Make sure we aren't trying to deref an objective
|
|
|
|
|
// C ivar if this is not allowed
|
|
|
|
|
const uint32_t pointer_type_flags =
|
|
|
|
|
valobj_sp->GetCompilerType().GetTypeInfo(nullptr);
|
|
|
|
|
if ((pointer_type_flags & eTypeIsObjC) &&
|
|
|
|
|
(pointer_type_flags & eTypeIsPointer)) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// This was an objective C object pointer and it was requested we
|
|
|
|
|
// skip any fragile ivars so return nothing here
|
2016-11-17 09:37:52 +08:00
|
|
|
|
return ValueObjectSP();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2017-04-01 04:23:22 +08:00
|
|
|
|
|
|
|
|
|
// If we have a non pointer type with a sythetic value then lets check if
|
|
|
|
|
// we have an sythetic dereference specified.
|
|
|
|
|
if (!valobj_sp->IsPointerType() && valobj_sp->HasSyntheticValue()) {
|
2017-05-12 12:51:55 +08:00
|
|
|
|
Status deref_error;
|
2017-04-01 04:23:22 +08:00
|
|
|
|
if (valobj_sp->GetCompilerType().IsReferenceType()) {
|
|
|
|
|
valobj_sp = valobj_sp->GetSyntheticValue()->Dereference(deref_error);
|
|
|
|
|
if (error.Fail()) {
|
|
|
|
|
error.SetErrorStringWithFormatv(
|
|
|
|
|
"Failed to dereference reference type: %s", deref_error);
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
valobj_sp = valobj_sp->Dereference(deref_error);
|
|
|
|
|
if (error.Fail()) {
|
|
|
|
|
error.SetErrorStringWithFormatv(
|
2019-03-12 02:16:20 +08:00
|
|
|
|
"Failed to dereference sythetic value: {0}", deref_error);
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
// Some synthetic plug-ins fail to set the error in Dereference
|
|
|
|
|
if (!valobj_sp) {
|
|
|
|
|
error.SetErrorString("Failed to dereference sythetic value");
|
2017-04-01 04:23:22 +08:00
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
expr_is_ptr = false;
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
var_expr = var_expr.drop_front(); // Remove the '-'
|
|
|
|
|
LLVM_FALLTHROUGH;
|
|
|
|
|
case '.': {
|
|
|
|
|
var_expr = var_expr.drop_front(); // Remove the '.' or '>'
|
|
|
|
|
separator_idx = var_expr.find_first_of(".-[");
|
|
|
|
|
ConstString child_name(var_expr.substr(0, var_expr.find_first_of(".-[")));
|
|
|
|
|
|
|
|
|
|
if (check_ptr_vs_member) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// We either have a pointer type and need to verify valobj_sp is a
|
|
|
|
|
// pointer, or we have a member of a class/union/struct being accessed
|
|
|
|
|
// with the . syntax and need to verify we don't have a pointer.
|
2016-11-17 09:37:52 +08:00
|
|
|
|
const bool actual_is_ptr = valobj_sp->IsPointerType();
|
|
|
|
|
|
|
|
|
|
if (actual_is_ptr != expr_is_ptr) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Incorrect use of "." with a pointer, or "->" with a
|
|
|
|
|
// class/union/struct instance or reference.
|
2016-11-17 09:37:52 +08:00
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
if (actual_is_ptr)
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"\"%s\" is a pointer and . was used to attempt to access "
|
|
|
|
|
"\"%s\". Did you mean \"%s->%s\"?",
|
|
|
|
|
var_expr_path_strm.GetData(), child_name.GetCString(),
|
|
|
|
|
var_expr_path_strm.GetData(), var_expr.str().c_str());
|
|
|
|
|
else
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"\"%s\" is not a pointer and -> was used to attempt to "
|
|
|
|
|
"access \"%s\". Did you mean \"%s.%s\"?",
|
|
|
|
|
var_expr_path_strm.GetData(), child_name.GetCString(),
|
|
|
|
|
var_expr_path_strm.GetData(), var_expr.str().c_str());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
child_valobj_sp = valobj_sp->GetChildMemberWithName(child_name, true);
|
|
|
|
|
if (!child_valobj_sp) {
|
|
|
|
|
if (!no_synth_child) {
|
|
|
|
|
child_valobj_sp = valobj_sp->GetSyntheticValue();
|
|
|
|
|
if (child_valobj_sp)
|
|
|
|
|
child_valobj_sp =
|
|
|
|
|
child_valobj_sp->GetChildMemberWithName(child_name, true);
|
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
if (no_synth_child || !child_valobj_sp) {
|
|
|
|
|
// No child member with name "child_name"
|
|
|
|
|
if (synthetically_added_instance_object) {
|
|
|
|
|
// We added a "this->" or "self->" to the beginning of the
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// expression and this is the first pointer ivar access, so just
|
|
|
|
|
// return the normal error
|
2016-11-17 09:37:52 +08:00
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"no variable or instance variable named '%s' found in "
|
|
|
|
|
"this frame",
|
|
|
|
|
name_const_string.GetCString());
|
|
|
|
|
} else {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
if (child_name) {
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"\"%s\" is not a member of \"(%s) %s\"",
|
|
|
|
|
child_name.GetCString(),
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
} else {
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"incomplete expression path after \"%s\" in \"%s\"",
|
2016-11-17 13:14:32 +08:00
|
|
|
|
var_expr_path_strm.GetData(),
|
|
|
|
|
original_var_expr.str().c_str());
|
2010-12-15 13:08:08 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
return ValueObjectSP();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
synthetically_added_instance_object = false;
|
|
|
|
|
// Remove the child name from the path
|
|
|
|
|
var_expr = var_expr.drop_front(child_name.GetLength());
|
|
|
|
|
if (use_dynamic != eNoDynamicValues) {
|
|
|
|
|
ValueObjectSP dynamic_value_sp(
|
|
|
|
|
child_valobj_sp->GetDynamicValue(use_dynamic));
|
|
|
|
|
if (dynamic_value_sp)
|
|
|
|
|
child_valobj_sp = dynamic_value_sp;
|
|
|
|
|
}
|
|
|
|
|
} break;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
case '[': {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Array member access, or treating pointer as an array Need at least two
|
|
|
|
|
// brackets and a number
|
2016-11-17 09:37:52 +08:00
|
|
|
|
if (var_expr.size() <= 2) {
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"invalid square bracket encountered after \"%s\" in \"%s\"",
|
|
|
|
|
var_expr_path_strm.GetData(), var_expr.str().c_str());
|
|
|
|
|
return ValueObjectSP();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
|
|
|
|
|
// Drop the open brace.
|
|
|
|
|
var_expr = var_expr.drop_front();
|
|
|
|
|
long child_index = 0;
|
|
|
|
|
|
|
|
|
|
// If there's no closing brace, this is an invalid expression.
|
|
|
|
|
size_t end_pos = var_expr.find_first_of(']');
|
|
|
|
|
if (end_pos == llvm::StringRef::npos) {
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"missing closing square bracket in expression \"%s\"",
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
llvm::StringRef index_expr = var_expr.take_front(end_pos);
|
|
|
|
|
llvm::StringRef original_index_expr = index_expr;
|
|
|
|
|
// Drop all of "[index_expr]"
|
|
|
|
|
var_expr = var_expr.drop_front(end_pos + 1);
|
|
|
|
|
|
|
|
|
|
if (index_expr.consumeInteger(0, child_index)) {
|
|
|
|
|
// If there was no integer anywhere in the index expression, this is
|
|
|
|
|
// erroneous expression.
|
|
|
|
|
error.SetErrorStringWithFormat("invalid index expression \"%s\"",
|
|
|
|
|
index_expr.str().c_str());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (index_expr.empty()) {
|
|
|
|
|
// The entire index expression was a single integer.
|
|
|
|
|
|
|
|
|
|
if (valobj_sp->GetCompilerType().IsPointerToScalarType() && deref) {
|
|
|
|
|
// what we have is *ptr[low]. the most similar C++ syntax is to deref
|
|
|
|
|
// ptr and extract bit low out of it. reading array item low would be
|
|
|
|
|
// done by saying ptr[low], without a deref * sign
|
2017-05-12 12:51:55 +08:00
|
|
|
|
Status error;
|
2016-11-17 09:37:52 +08:00
|
|
|
|
ValueObjectSP temp(valobj_sp->Dereference(error));
|
|
|
|
|
if (error.Fail()) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"could not dereference \"(%s) %s\"",
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
valobj_sp = temp;
|
|
|
|
|
deref = false;
|
|
|
|
|
} else if (valobj_sp->GetCompilerType().IsArrayOfScalarType() &&
|
|
|
|
|
deref) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// what we have is *arr[low]. the most similar C++ syntax is to get
|
|
|
|
|
// arr[0] (an operation that is equivalent to deref-ing arr) and
|
|
|
|
|
// extract bit low out of it. reading array item low would be done by
|
|
|
|
|
// saying arr[low], without a deref * sign
|
2017-05-12 12:51:55 +08:00
|
|
|
|
Status error;
|
2016-11-17 09:37:52 +08:00
|
|
|
|
ValueObjectSP temp(valobj_sp->GetChildAtIndex(0, true));
|
|
|
|
|
if (error.Fail()) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"could not get item 0 for \"(%s) %s\"",
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
valobj_sp = temp;
|
|
|
|
|
deref = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool is_incomplete_array = false;
|
|
|
|
|
if (valobj_sp->IsPointerType()) {
|
|
|
|
|
bool is_objc_pointer = true;
|
|
|
|
|
|
|
|
|
|
if (valobj_sp->GetCompilerType().GetMinimumLanguage() !=
|
|
|
|
|
eLanguageTypeObjC)
|
|
|
|
|
is_objc_pointer = false;
|
|
|
|
|
else if (!valobj_sp->GetCompilerType().IsPointerType())
|
|
|
|
|
is_objc_pointer = false;
|
|
|
|
|
|
|
|
|
|
if (no_synth_child && is_objc_pointer) {
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"\"(%s) %s\" is an Objective-C pointer, and cannot be "
|
|
|
|
|
"subscripted",
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
} else if (is_objc_pointer) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// dereferencing ObjC variables is not valid.. so let's try and
|
|
|
|
|
// recur to synthetic children
|
2016-11-17 09:37:52 +08:00
|
|
|
|
ValueObjectSP synthetic = valobj_sp->GetSyntheticValue();
|
|
|
|
|
if (!synthetic /* no synthetic */
|
|
|
|
|
|| synthetic == valobj_sp) /* synthetic is the same as
|
|
|
|
|
the original object */
|
|
|
|
|
{
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"\"(%s) %s\" is not an array type",
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
} else if (
|
|
|
|
|
static_cast<uint32_t>(child_index) >=
|
|
|
|
|
synthetic
|
|
|
|
|
->GetNumChildren() /* synthetic does not have that many values */) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"array index %ld is not valid for \"(%s) %s\"", child_index,
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
} else {
|
|
|
|
|
child_valobj_sp = synthetic->GetChildAtIndex(child_index, true);
|
|
|
|
|
if (!child_valobj_sp) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
2016-11-17 09:37:52 +08:00
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"array index %ld is not valid for \"(%s) %s\"", child_index,
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2012-07-14 08:53:55 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
} else {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
child_valobj_sp =
|
2016-11-17 09:37:52 +08:00
|
|
|
|
valobj_sp->GetSyntheticArrayMember(child_index, true);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (!child_valobj_sp) {
|
2016-11-17 09:37:52 +08:00
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
error.SetErrorStringWithFormat(
|
2016-11-17 09:37:52 +08:00
|
|
|
|
"failed to use pointer as array for index %ld for "
|
|
|
|
|
"\"(%s) %s\"",
|
|
|
|
|
child_index,
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
}
|
|
|
|
|
} else if (valobj_sp->GetCompilerType().IsArrayType(
|
|
|
|
|
nullptr, nullptr, &is_incomplete_array)) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// Pass false to dynamic_value here so we can tell the difference
|
|
|
|
|
// between no dynamic value and no member of this type...
|
2016-11-17 09:37:52 +08:00
|
|
|
|
child_valobj_sp = valobj_sp->GetChildAtIndex(child_index, true);
|
|
|
|
|
if (!child_valobj_sp && (is_incomplete_array || !no_synth_child))
|
|
|
|
|
child_valobj_sp =
|
|
|
|
|
valobj_sp->GetSyntheticArrayMember(child_index, true);
|
|
|
|
|
|
|
|
|
|
if (!child_valobj_sp) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"array index %ld is not valid for \"(%s) %s\"", child_index,
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
}
|
|
|
|
|
} else if (valobj_sp->GetCompilerType().IsScalarType()) {
|
|
|
|
|
// this is a bitfield asking to display just one bit
|
|
|
|
|
child_valobj_sp = valobj_sp->GetSyntheticBitFieldChild(
|
|
|
|
|
child_index, child_index, true);
|
|
|
|
|
if (!child_valobj_sp) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"bitfield range %ld-%ld is not valid for \"(%s) %s\"",
|
|
|
|
|
child_index, child_index,
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
ValueObjectSP synthetic = valobj_sp->GetSyntheticValue();
|
|
|
|
|
if (no_synth_child /* synthetic is forbidden */ ||
|
|
|
|
|
!synthetic /* no synthetic */
|
|
|
|
|
|| synthetic == valobj_sp) /* synthetic is the same as the
|
|
|
|
|
original object */
|
|
|
|
|
{
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"\"(%s) %s\" is not an array type",
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
} else if (
|
|
|
|
|
static_cast<uint32_t>(child_index) >=
|
|
|
|
|
synthetic
|
|
|
|
|
->GetNumChildren() /* synthetic does not have that many values */) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"array index %ld is not valid for \"(%s) %s\"", child_index,
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
} else {
|
|
|
|
|
child_valobj_sp = synthetic->GetChildAtIndex(child_index, true);
|
|
|
|
|
if (!child_valobj_sp) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
2016-11-17 09:37:52 +08:00
|
|
|
|
"array index %ld is not valid for \"(%s) %s\"", child_index,
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
if (!child_valobj_sp) {
|
|
|
|
|
// Invalid array index...
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-11-17 09:37:52 +08:00
|
|
|
|
separator_idx = var_expr.find_first_of(".-[");
|
|
|
|
|
if (use_dynamic != eNoDynamicValues) {
|
|
|
|
|
ValueObjectSP dynamic_value_sp(
|
|
|
|
|
child_valobj_sp->GetDynamicValue(use_dynamic));
|
|
|
|
|
if (dynamic_value_sp)
|
|
|
|
|
child_valobj_sp = dynamic_value_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
// Break out early from the switch since we were able to find the child
|
|
|
|
|
// member
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// this is most probably a BitField, let's take a look
|
|
|
|
|
if (index_expr.front() != '-') {
|
|
|
|
|
error.SetErrorStringWithFormat("invalid range expression \"'%s'\"",
|
|
|
|
|
original_index_expr.str().c_str());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
2016-11-22 07:18:13 +08:00
|
|
|
|
index_expr = index_expr.drop_front();
|
2016-11-17 09:37:52 +08:00
|
|
|
|
long final_index = 0;
|
|
|
|
|
if (index_expr.getAsInteger(0, final_index)) {
|
|
|
|
|
error.SetErrorStringWithFormat("invalid range expression \"'%s'\"",
|
|
|
|
|
original_index_expr.str().c_str());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// if the format given is [high-low], swap range
|
|
|
|
|
if (child_index > final_index) {
|
|
|
|
|
long temp = child_index;
|
|
|
|
|
child_index = final_index;
|
|
|
|
|
final_index = temp;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (valobj_sp->GetCompilerType().IsPointerToScalarType() && deref) {
|
|
|
|
|
// what we have is *ptr[low-high]. the most similar C++ syntax is to
|
|
|
|
|
// deref ptr and extract bits low thru high out of it. reading array
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// items low thru high would be done by saying ptr[low-high], without a
|
|
|
|
|
// deref * sign
|
2017-05-12 12:51:55 +08:00
|
|
|
|
Status error;
|
2016-11-17 09:37:52 +08:00
|
|
|
|
ValueObjectSP temp(valobj_sp->Dereference(error));
|
|
|
|
|
if (error.Fail()) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"could not dereference \"(%s) %s\"",
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
return ValueObjectSP();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
valobj_sp = temp;
|
|
|
|
|
deref = false;
|
|
|
|
|
} else if (valobj_sp->GetCompilerType().IsArrayOfScalarType() && deref) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// what we have is *arr[low-high]. the most similar C++ syntax is to
|
|
|
|
|
// get arr[0] (an operation that is equivalent to deref-ing arr) and
|
|
|
|
|
// extract bits low thru high out of it. reading array items low thru
|
|
|
|
|
// high would be done by saying arr[low-high], without a deref * sign
|
2017-05-12 12:51:55 +08:00
|
|
|
|
Status error;
|
2016-11-17 09:37:52 +08:00
|
|
|
|
ValueObjectSP temp(valobj_sp->GetChildAtIndex(0, true));
|
|
|
|
|
if (error.Fail()) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"could not get item 0 for \"(%s) %s\"",
|
|
|
|
|
valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
valobj_sp = temp;
|
|
|
|
|
deref = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
child_valobj_sp =
|
|
|
|
|
valobj_sp->GetSyntheticBitFieldChild(child_index, final_index, true);
|
|
|
|
|
if (!child_valobj_sp) {
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
error.SetErrorStringWithFormat(
|
2016-11-17 09:37:52 +08:00
|
|
|
|
"bitfield range %ld-%ld is not valid for \"(%s) %s\"", child_index,
|
|
|
|
|
final_index, valobj_sp->GetTypeName().AsCString("<invalid type>"),
|
|
|
|
|
var_expr_path_strm.GetData());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!child_valobj_sp) {
|
|
|
|
|
// Invalid bitfield range...
|
|
|
|
|
return ValueObjectSP();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
|
|
|
|
|
separator_idx = var_expr.find_first_of(".-[");
|
|
|
|
|
if (use_dynamic != eNoDynamicValues) {
|
|
|
|
|
ValueObjectSP dynamic_value_sp(
|
|
|
|
|
child_valobj_sp->GetDynamicValue(use_dynamic));
|
|
|
|
|
if (dynamic_value_sp)
|
|
|
|
|
child_valobj_sp = dynamic_value_sp;
|
|
|
|
|
}
|
|
|
|
|
// Break out early from the switch since we were able to find the child
|
|
|
|
|
// member
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
default:
|
|
|
|
|
// Failure...
|
|
|
|
|
{
|
|
|
|
|
valobj_sp->GetExpressionPath(var_expr_path_strm, false);
|
|
|
|
|
error.SetErrorStringWithFormat(
|
|
|
|
|
"unexpected char '%c' encountered after \"%s\" in \"%s\"",
|
|
|
|
|
separator_type, var_expr_path_strm.GetData(),
|
|
|
|
|
var_expr.str().c_str());
|
|
|
|
|
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (child_valobj_sp)
|
|
|
|
|
valobj_sp = child_valobj_sp;
|
|
|
|
|
|
|
|
|
|
if (var_expr.empty())
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
if (valobj_sp) {
|
|
|
|
|
if (deref) {
|
|
|
|
|
ValueObjectSP deref_valobj_sp(valobj_sp->Dereference(error));
|
|
|
|
|
valobj_sp = deref_valobj_sp;
|
|
|
|
|
} else if (address_of) {
|
|
|
|
|
ValueObjectSP address_of_valobj_sp(valobj_sp->AddressOf(error));
|
|
|
|
|
valobj_sp = address_of_valobj_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
2016-11-17 09:37:52 +08:00
|
|
|
|
return valobj_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
|
bool StackFrame::GetFrameBaseValue(Scalar &frame_base, Status *error_ptr) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
if (!m_cfa_is_valid) {
|
|
|
|
|
m_frame_base_error.SetErrorString(
|
|
|
|
|
"No frame base available for this historical stack frame.");
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_flags.IsClear(GOT_FRAME_BASE)) {
|
|
|
|
|
if (m_sc.function) {
|
|
|
|
|
m_frame_base.Clear();
|
|
|
|
|
m_frame_base_error.Clear();
|
|
|
|
|
|
|
|
|
|
m_flags.Set(GOT_FRAME_BASE);
|
|
|
|
|
ExecutionContext exe_ctx(shared_from_this());
|
|
|
|
|
Value expr_value;
|
|
|
|
|
addr_t loclist_base_addr = LLDB_INVALID_ADDRESS;
|
|
|
|
|
if (m_sc.function->GetFrameBaseExpression().IsLocationList())
|
|
|
|
|
loclist_base_addr =
|
|
|
|
|
m_sc.function->GetAddressRange().GetBaseAddress().GetLoadAddress(
|
|
|
|
|
exe_ctx.GetTargetPtr());
|
|
|
|
|
|
2018-12-15 08:15:33 +08:00
|
|
|
|
if (!m_sc.function->GetFrameBaseExpression().Evaluate(
|
2017-08-16 19:45:10 +08:00
|
|
|
|
&exe_ctx, nullptr, loclist_base_addr, nullptr, nullptr,
|
2018-12-15 08:15:33 +08:00
|
|
|
|
expr_value, &m_frame_base_error)) {
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// We should really have an error if evaluate returns, but in case we
|
|
|
|
|
// don't, lets set the error to something at least.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (m_frame_base_error.Success())
|
|
|
|
|
m_frame_base_error.SetErrorString(
|
|
|
|
|
"Evaluation of the frame base expression failed.");
|
|
|
|
|
} else {
|
|
|
|
|
m_frame_base = expr_value.ResolveValue(&exe_ctx);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
|
|
|
|
m_frame_base_error.SetErrorString("No function in symbol context.");
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (m_frame_base_error.Success())
|
|
|
|
|
frame_base = m_frame_base;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (error_ptr)
|
|
|
|
|
*error_ptr = m_frame_base_error;
|
|
|
|
|
return m_frame_base_error.Success();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
|
DWARFExpression *StackFrame::GetFrameBaseExpression(Status *error_ptr) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (!m_sc.function) {
|
|
|
|
|
if (error_ptr) {
|
|
|
|
|
error_ptr->SetErrorString("No function in symbol context.");
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return nullptr;
|
|
|
|
|
}
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return &m_sc.function->GetFrameBaseExpression();
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
RegisterContextSP StackFrame::GetRegisterContext() {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
if (!m_reg_context_sp) {
|
|
|
|
|
ThreadSP thread_sp(GetThread());
|
|
|
|
|
if (thread_sp)
|
|
|
|
|
m_reg_context_sp = thread_sp->CreateRegisterContextForFrame(this);
|
|
|
|
|
}
|
|
|
|
|
return m_reg_context_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
bool StackFrame::HasDebugInformation() {
|
|
|
|
|
GetSymbolContext(eSymbolContextLineEntry);
|
|
|
|
|
return m_sc.line_entry.IsValid();
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2010-09-02 10:59:18 +08:00
|
|
|
|
ValueObjectSP
|
2016-09-07 04:57:50 +08:00
|
|
|
|
StackFrame::GetValueObjectForFrameVariable(const VariableSP &variable_sp,
|
|
|
|
|
DynamicValueType use_dynamic) {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
ValueObjectSP valobj_sp;
|
2018-10-06 07:23:15 +08:00
|
|
|
|
if (IsHistorical()) {
|
2010-09-02 10:59:18 +08:00
|
|
|
|
return valobj_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
VariableList *var_list = GetVariableList(true);
|
|
|
|
|
if (var_list) {
|
|
|
|
|
// Make sure the variable is a frame variable
|
|
|
|
|
const uint32_t var_idx = var_list->FindIndexForVariable(variable_sp.get());
|
|
|
|
|
const uint32_t num_variables = var_list->GetSize();
|
|
|
|
|
if (var_idx < num_variables) {
|
|
|
|
|
valobj_sp = m_variable_list_value_objects.GetValueObjectAtIndex(var_idx);
|
|
|
|
|
if (!valobj_sp) {
|
|
|
|
|
if (m_variable_list_value_objects.GetSize() < num_variables)
|
|
|
|
|
m_variable_list_value_objects.Resize(num_variables);
|
|
|
|
|
valobj_sp = ValueObjectVariable::Create(this, variable_sp);
|
|
|
|
|
m_variable_list_value_objects.SetValueObjectAtIndex(var_idx, valobj_sp);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
if (use_dynamic != eNoDynamicValues && valobj_sp) {
|
|
|
|
|
ValueObjectSP dynamic_sp = valobj_sp->GetDynamicValue(use_dynamic);
|
|
|
|
|
if (dynamic_sp)
|
|
|
|
|
return dynamic_sp;
|
|
|
|
|
}
|
|
|
|
|
return valobj_sp;
|
2010-09-02 10:59:18 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ValueObjectSP StackFrame::TrackGlobalVariable(const VariableSP &variable_sp,
|
|
|
|
|
DynamicValueType use_dynamic) {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
2018-10-06 07:23:15 +08:00
|
|
|
|
if (IsHistorical())
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return ValueObjectSP();
|
2013-11-04 19:02:52 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
// Check to make sure we aren't already tracking this variable?
|
|
|
|
|
ValueObjectSP valobj_sp(
|
|
|
|
|
GetValueObjectForFrameVariable(variable_sp, use_dynamic));
|
|
|
|
|
if (!valobj_sp) {
|
|
|
|
|
// We aren't already tracking this global
|
|
|
|
|
VariableList *var_list = GetVariableList(true);
|
|
|
|
|
// If this frame has no variables, create a new list
|
|
|
|
|
if (var_list == nullptr)
|
2019-02-12 07:13:08 +08:00
|
|
|
|
m_variable_list_sp = std::make_shared<VariableList>();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
|
// Add the global/static variable to this frame
|
|
|
|
|
m_variable_list_sp->AddVariable(variable_sp);
|
|
|
|
|
|
|
|
|
|
// Now make a value object for it so we can track its changes
|
|
|
|
|
valobj_sp = GetValueObjectForFrameVariable(variable_sp, use_dynamic);
|
|
|
|
|
}
|
|
|
|
|
return valobj_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
bool StackFrame::IsInlined() {
|
|
|
|
|
if (m_sc.block == nullptr)
|
|
|
|
|
GetSymbolContext(eSymbolContextBlock);
|
|
|
|
|
if (m_sc.block)
|
|
|
|
|
return m_sc.block->GetContainingInlinedBlock() != nullptr;
|
|
|
|
|
return false;
|
2018-10-06 07:23:15 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool StackFrame::IsHistorical() const {
|
|
|
|
|
return m_stack_frame_kind == StackFrame::Kind::History;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
bool StackFrame::IsArtificial() const {
|
|
|
|
|
return m_stack_frame_kind == StackFrame::Kind::Artificial;
|
2010-08-27 04:44:45 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
lldb::LanguageType StackFrame::GetLanguage() {
|
|
|
|
|
CompileUnit *cu = GetSymbolContext(eSymbolContextCompUnit).comp_unit;
|
|
|
|
|
if (cu)
|
|
|
|
|
return cu->GetLanguage();
|
|
|
|
|
return lldb::eLanguageTypeUnknown;
|
2015-09-04 09:02:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
lldb::LanguageType StackFrame::GuessLanguage() {
|
|
|
|
|
LanguageType lang_type = GetLanguage();
|
|
|
|
|
|
|
|
|
|
if (lang_type == eLanguageTypeUnknown) {
|
2017-04-12 08:19:54 +08:00
|
|
|
|
SymbolContext sc = GetSymbolContext(eSymbolContextFunction
|
|
|
|
|
| eSymbolContextSymbol);
|
|
|
|
|
if (sc.function) {
|
|
|
|
|
lang_type = sc.function->GetMangled().GuessLanguage();
|
|
|
|
|
}
|
|
|
|
|
else if (sc.symbol)
|
|
|
|
|
{
|
|
|
|
|
lang_type = sc.symbol->GetMangled().GuessLanguage();
|
2016-03-16 05:50:51 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return lang_type;
|
2016-03-16 05:50:51 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
namespace {
|
|
|
|
|
std::pair<const Instruction::Operand *, int64_t>
|
|
|
|
|
GetBaseExplainingValue(const Instruction::Operand &operand,
|
|
|
|
|
RegisterContext ®ister_context, lldb::addr_t value) {
|
|
|
|
|
switch (operand.m_type) {
|
|
|
|
|
case Instruction::Operand::Type::Dereference:
|
|
|
|
|
case Instruction::Operand::Type::Immediate:
|
|
|
|
|
case Instruction::Operand::Type::Invalid:
|
|
|
|
|
case Instruction::Operand::Type::Product:
|
|
|
|
|
// These are not currently interesting
|
|
|
|
|
return std::make_pair(nullptr, 0);
|
|
|
|
|
case Instruction::Operand::Type::Sum: {
|
|
|
|
|
const Instruction::Operand *immediate_child = nullptr;
|
|
|
|
|
const Instruction::Operand *variable_child = nullptr;
|
|
|
|
|
if (operand.m_children[0].m_type == Instruction::Operand::Type::Immediate) {
|
|
|
|
|
immediate_child = &operand.m_children[0];
|
|
|
|
|
variable_child = &operand.m_children[1];
|
|
|
|
|
} else if (operand.m_children[1].m_type ==
|
|
|
|
|
Instruction::Operand::Type::Immediate) {
|
|
|
|
|
immediate_child = &operand.m_children[1];
|
|
|
|
|
variable_child = &operand.m_children[0];
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (!immediate_child) {
|
|
|
|
|
return std::make_pair(nullptr, 0);
|
|
|
|
|
}
|
|
|
|
|
lldb::addr_t adjusted_value = value;
|
|
|
|
|
if (immediate_child->m_negative) {
|
|
|
|
|
adjusted_value += immediate_child->m_immediate;
|
|
|
|
|
} else {
|
|
|
|
|
adjusted_value -= immediate_child->m_immediate;
|
|
|
|
|
}
|
|
|
|
|
std::pair<const Instruction::Operand *, int64_t> base_and_offset =
|
|
|
|
|
GetBaseExplainingValue(*variable_child, register_context,
|
|
|
|
|
adjusted_value);
|
|
|
|
|
if (!base_and_offset.first) {
|
|
|
|
|
return std::make_pair(nullptr, 0);
|
|
|
|
|
}
|
|
|
|
|
if (immediate_child->m_negative) {
|
|
|
|
|
base_and_offset.second -= immediate_child->m_immediate;
|
|
|
|
|
} else {
|
|
|
|
|
base_and_offset.second += immediate_child->m_immediate;
|
|
|
|
|
}
|
|
|
|
|
return base_and_offset;
|
|
|
|
|
}
|
|
|
|
|
case Instruction::Operand::Type::Register: {
|
|
|
|
|
const RegisterInfo *info =
|
|
|
|
|
register_context.GetRegisterInfoByName(operand.m_register.AsCString());
|
|
|
|
|
if (!info) {
|
|
|
|
|
return std::make_pair(nullptr, 0);
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
RegisterValue reg_value;
|
|
|
|
|
if (!register_context.ReadRegister(info, reg_value)) {
|
|
|
|
|
return std::make_pair(nullptr, 0);
|
|
|
|
|
}
|
|
|
|
|
if (reg_value.GetAsUInt64() == value) {
|
|
|
|
|
return std::make_pair(&operand, 0);
|
|
|
|
|
} else {
|
|
|
|
|
return std::make_pair(nullptr, 0);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-10-06 01:07:34 +08:00
|
|
|
|
return std::make_pair(nullptr, 0);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
std::pair<const Instruction::Operand *, int64_t>
|
|
|
|
|
GetBaseExplainingDereference(const Instruction::Operand &operand,
|
|
|
|
|
RegisterContext ®ister_context,
|
|
|
|
|
lldb::addr_t addr) {
|
|
|
|
|
if (operand.m_type == Instruction::Operand::Type::Dereference) {
|
|
|
|
|
return GetBaseExplainingValue(operand.m_children[0], register_context,
|
|
|
|
|
addr);
|
|
|
|
|
}
|
|
|
|
|
return std::make_pair(nullptr, 0);
|
|
|
|
|
}
|
2016-09-12 13:25:33 +08:00
|
|
|
|
}
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
lldb::ValueObjectSP StackFrame::GuessValueForAddress(lldb::addr_t addr) {
|
|
|
|
|
TargetSP target_sp = CalculateTarget();
|
|
|
|
|
|
|
|
|
|
const ArchSpec &target_arch = target_sp->GetArchitecture();
|
|
|
|
|
|
|
|
|
|
AddressRange pc_range;
|
|
|
|
|
pc_range.GetBaseAddress() = GetFrameCodeAddress();
|
|
|
|
|
pc_range.SetByteSize(target_arch.GetMaximumOpcodeByteSize());
|
|
|
|
|
|
|
|
|
|
ExecutionContext exe_ctx(shared_from_this());
|
|
|
|
|
|
|
|
|
|
const char *plugin_name = nullptr;
|
|
|
|
|
const char *flavor = nullptr;
|
|
|
|
|
const bool prefer_file_cache = false;
|
|
|
|
|
|
|
|
|
|
DisassemblerSP disassembler_sp = Disassembler::DisassembleRange(
|
|
|
|
|
target_arch, plugin_name, flavor, exe_ctx, pc_range, prefer_file_cache);
|
|
|
|
|
|
2017-04-01 06:39:55 +08:00
|
|
|
|
if (!disassembler_sp || !disassembler_sp->GetInstructionList().GetSize()) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
InstructionSP instruction_sp =
|
|
|
|
|
disassembler_sp->GetInstructionList().GetInstructionAtIndex(0);
|
|
|
|
|
|
|
|
|
|
llvm::SmallVector<Instruction::Operand, 3> operands;
|
|
|
|
|
|
|
|
|
|
if (!instruction_sp->ParseOperands(operands)) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
RegisterContextSP register_context_sp = GetRegisterContext();
|
|
|
|
|
|
|
|
|
|
if (!register_context_sp) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (const Instruction::Operand &operand : operands) {
|
|
|
|
|
std::pair<const Instruction::Operand *, int64_t> base_and_offset =
|
|
|
|
|
GetBaseExplainingDereference(operand, *register_context_sp, addr);
|
|
|
|
|
|
|
|
|
|
if (!base_and_offset.first) {
|
|
|
|
|
continue;
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
|
switch (base_and_offset.first->m_type) {
|
|
|
|
|
case Instruction::Operand::Type::Immediate: {
|
|
|
|
|
lldb_private::Address addr;
|
|
|
|
|
if (target_sp->ResolveLoadAddress(base_and_offset.first->m_immediate +
|
|
|
|
|
base_and_offset.second,
|
|
|
|
|
addr)) {
|
2019-07-31 06:12:34 +08:00
|
|
|
|
auto c_type_system_or_err =
|
|
|
|
|
target_sp->GetScratchTypeSystemForLanguage(eLanguageTypeC);
|
|
|
|
|
if (auto err = c_type_system_or_err.takeError()) {
|
|
|
|
|
LLDB_LOG_ERROR(
|
|
|
|
|
lldb_private::GetLogIfAnyCategoriesSet(LIBLLDB_LOG_THREAD),
|
|
|
|
|
std::move(err), "Unable to guess value for given address");
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
} else {
|
|
|
|
|
CompilerType void_ptr_type =
|
2019-07-31 06:12:34 +08:00
|
|
|
|
c_type_system_or_err
|
2016-09-07 04:57:50 +08:00
|
|
|
|
->GetBasicTypeFromAST(lldb::BasicType::eBasicTypeChar)
|
|
|
|
|
.GetPointerType();
|
|
|
|
|
return ValueObjectMemory::Create(this, "", addr, void_ptr_type);
|
|
|
|
|
}
|
|
|
|
|
} else {
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
return ValueObjectSP();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
break;
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
case Instruction::Operand::Type::Register: {
|
|
|
|
|
return GuessValueForRegisterAndOffset(base_and_offset.first->m_register,
|
|
|
|
|
base_and_offset.second);
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
default:
|
|
|
|
|
return ValueObjectSP();
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
namespace {
|
|
|
|
|
ValueObjectSP GetValueForOffset(StackFrame &frame, ValueObjectSP &parent,
|
|
|
|
|
int64_t offset) {
|
|
|
|
|
if (offset < 0 || uint64_t(offset) >= parent->GetByteSize()) {
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
return ValueObjectSP();
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (parent->IsPointerOrReferenceType()) {
|
|
|
|
|
return parent;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (int ci = 0, ce = parent->GetNumChildren(); ci != ce; ++ci) {
|
|
|
|
|
const bool can_create = true;
|
|
|
|
|
ValueObjectSP child_sp = parent->GetChildAtIndex(ci, can_create);
|
|
|
|
|
|
|
|
|
|
if (!child_sp) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int64_t child_offset = child_sp->GetByteOffset();
|
|
|
|
|
int64_t child_size = child_sp->GetByteSize();
|
|
|
|
|
|
|
|
|
|
if (offset >= child_offset && offset < (child_offset + child_size)) {
|
|
|
|
|
return GetValueForOffset(frame, child_sp, offset - child_offset);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (offset == 0) {
|
|
|
|
|
return parent;
|
|
|
|
|
} else {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ValueObjectSP GetValueForDereferincingOffset(StackFrame &frame,
|
|
|
|
|
ValueObjectSP &base,
|
|
|
|
|
int64_t offset) {
|
|
|
|
|
// base is a pointer to something
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// offset is the thing to add to the pointer We return the most sensible
|
|
|
|
|
// ValueObject for the result of *(base+offset)
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
|
if (!base->IsPointerOrReferenceType()) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
2017-05-12 12:51:55 +08:00
|
|
|
|
Status error;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ValueObjectSP pointee = base->Dereference(error);
|
2016-09-29 08:16:37 +08:00
|
|
|
|
|
|
|
|
|
if (!pointee) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
2016-09-12 13:25:33 +08:00
|
|
|
|
if (offset >= 0 && uint64_t(offset) >= pointee->GetByteSize()) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
int64_t index = offset / pointee->GetByteSize();
|
|
|
|
|
offset = offset % pointee->GetByteSize();
|
|
|
|
|
const bool can_create = true;
|
|
|
|
|
pointee = base->GetSyntheticArrayMember(index, can_create);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!pointee || error.Fail()) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return GetValueForOffset(frame, pointee, offset);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/// Attempt to reconstruct the ValueObject for the address contained in a
|
|
|
|
|
/// given register plus an offset.
|
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
|
/// \params [in] frame
|
2016-09-07 04:57:50 +08:00
|
|
|
|
/// The current stack frame.
|
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
|
/// \params [in] reg
|
2016-09-07 04:57:50 +08:00
|
|
|
|
/// The register.
|
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
|
/// \params [in] offset
|
2016-09-07 04:57:50 +08:00
|
|
|
|
/// The offset from the register.
|
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
|
/// \param [in] disassembler
|
2016-09-07 04:57:50 +08:00
|
|
|
|
/// A disassembler containing instructions valid up to the current PC.
|
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
|
/// \param [in] variables
|
2016-09-07 04:57:50 +08:00
|
|
|
|
/// The variable list from the current frame,
|
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
|
/// \param [in] pc
|
2016-09-07 04:57:50 +08:00
|
|
|
|
/// The program counter for the instruction considered the 'user'.
|
|
|
|
|
///
|
2019-03-12 01:09:29 +08:00
|
|
|
|
/// \return
|
2016-09-07 04:57:50 +08:00
|
|
|
|
/// A string describing the base for the ExpressionPath. This could be a
|
|
|
|
|
/// variable, a register value, an argument, or a function return value.
|
|
|
|
|
/// The ValueObject if found. If valid, it has a valid ExpressionPath.
|
|
|
|
|
lldb::ValueObjectSP DoGuessValueAt(StackFrame &frame, ConstString reg,
|
|
|
|
|
int64_t offset, Disassembler &disassembler,
|
|
|
|
|
VariableList &variables, const Address &pc) {
|
|
|
|
|
// Example of operation for Intel:
|
|
|
|
|
//
|
|
|
|
|
// +14: movq -0x8(%rbp), %rdi
|
|
|
|
|
// +18: movq 0x8(%rdi), %rdi
|
|
|
|
|
// +22: addl 0x4(%rdi), %eax
|
|
|
|
|
//
|
|
|
|
|
// f, a pointer to a struct, is known to be at -0x8(%rbp).
|
|
|
|
|
//
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// DoGuessValueAt(frame, rdi, 4, dis, vars, 0x22) finds the instruction at
|
|
|
|
|
// +18 that assigns to rdi, and calls itself recursively for that dereference
|
2016-09-07 04:57:50 +08:00
|
|
|
|
// DoGuessValueAt(frame, rdi, 8, dis, vars, 0x18) finds the instruction at
|
|
|
|
|
// +14 that assigns to rdi, and calls itself recursively for that
|
|
|
|
|
// derefernece
|
|
|
|
|
// DoGuessValueAt(frame, rbp, -8, dis, vars, 0x14) finds "f" in the
|
|
|
|
|
// variable list.
|
|
|
|
|
// Returns a ValueObject for f. (That's what was stored at rbp-8 at +14)
|
|
|
|
|
// Returns a ValueObject for *(f+8) or f->b (That's what was stored at rdi+8
|
|
|
|
|
// at +18)
|
|
|
|
|
// Returns a ValueObject for *(f->b+4) or f->b->a (That's what was stored at
|
|
|
|
|
// rdi+4 at +22)
|
|
|
|
|
|
|
|
|
|
// First, check the variable list to see if anything is at the specified
|
|
|
|
|
// location.
|
2016-09-14 05:18:27 +08:00
|
|
|
|
|
2016-09-14 08:48:19 +08:00
|
|
|
|
using namespace OperandMatchers;
|
|
|
|
|
|
2016-09-15 04:29:57 +08:00
|
|
|
|
const RegisterInfo *reg_info =
|
|
|
|
|
frame.GetRegisterContext()->GetRegisterInfoByName(reg.AsCString());
|
|
|
|
|
if (!reg_info) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-14 05:18:27 +08:00
|
|
|
|
Instruction::Operand op =
|
|
|
|
|
offset ? Instruction::Operand::BuildDereference(
|
|
|
|
|
Instruction::Operand::BuildSum(
|
|
|
|
|
Instruction::Operand::BuildRegister(reg),
|
|
|
|
|
Instruction::Operand::BuildImmediate(offset)))
|
|
|
|
|
: Instruction::Operand::BuildDereference(
|
|
|
|
|
Instruction::Operand::BuildRegister(reg));
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
for (size_t vi = 0, ve = variables.GetSize(); vi != ve; ++vi) {
|
|
|
|
|
VariableSP var_sp = variables.GetVariableAtIndex(vi);
|
2016-09-14 05:18:27 +08:00
|
|
|
|
if (var_sp->LocationExpression().MatchesOperand(frame, op)) {
|
|
|
|
|
return frame.GetValueObjectForFrameVariable(var_sp, eNoDynamicValues);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const uint32_t current_inst =
|
|
|
|
|
disassembler.GetInstructionList().GetIndexOfInstructionAtAddress(pc);
|
|
|
|
|
if (current_inst == UINT32_MAX) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (uint32_t ii = current_inst - 1; ii != (uint32_t)-1; --ii) {
|
|
|
|
|
// This is not an exact algorithm, and it sacrifices accuracy for
|
2018-05-01 00:49:04 +08:00
|
|
|
|
// generality. Recognizing "mov" and "ld" instructions –– and which
|
|
|
|
|
// are their source and destination operands -- is something the
|
|
|
|
|
// disassembler should do for us.
|
2016-09-07 04:57:50 +08:00
|
|
|
|
InstructionSP instruction_sp =
|
|
|
|
|
disassembler.GetInstructionList().GetInstructionAtIndex(ii);
|
|
|
|
|
|
2016-09-14 08:48:19 +08:00
|
|
|
|
if (instruction_sp->IsCall()) {
|
|
|
|
|
ABISP abi_sp = frame.CalculateProcess()->GetABI();
|
|
|
|
|
if (!abi_sp) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const char *return_register_name;
|
|
|
|
|
if (!abi_sp->GetPointerReturnRegister(return_register_name)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const RegisterInfo *return_register_info =
|
|
|
|
|
frame.GetRegisterContext()->GetRegisterInfoByName(
|
|
|
|
|
return_register_name);
|
|
|
|
|
if (!return_register_info) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int64_t offset = 0;
|
|
|
|
|
|
|
|
|
|
if (!MatchUnaryOp(MatchOpType(Instruction::Operand::Type::Dereference),
|
|
|
|
|
MatchRegOp(*return_register_info))(op) &&
|
|
|
|
|
!MatchUnaryOp(
|
|
|
|
|
MatchOpType(Instruction::Operand::Type::Dereference),
|
|
|
|
|
MatchBinaryOp(MatchOpType(Instruction::Operand::Type::Sum),
|
|
|
|
|
MatchRegOp(*return_register_info),
|
|
|
|
|
FetchImmOp(offset)))(op)) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
llvm::SmallVector<Instruction::Operand, 1> operands;
|
|
|
|
|
if (!instruction_sp->ParseOperands(operands) || operands.size() != 1) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
switch (operands[0].m_type) {
|
|
|
|
|
default:
|
|
|
|
|
break;
|
|
|
|
|
case Instruction::Operand::Type::Immediate: {
|
|
|
|
|
SymbolContext sc;
|
|
|
|
|
Address load_address;
|
|
|
|
|
if (!frame.CalculateTarget()->ResolveLoadAddress(
|
|
|
|
|
operands[0].m_immediate, load_address)) {
|
|
|
|
|
break;
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
frame.CalculateTarget()->GetImages().ResolveSymbolContextForAddress(
|
|
|
|
|
load_address, eSymbolContextFunction, sc);
|
|
|
|
|
if (!sc.function) {
|
|
|
|
|
break;
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
CompilerType function_type = sc.function->GetCompilerType();
|
|
|
|
|
if (!function_type.IsFunctionType()) {
|
|
|
|
|
break;
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
CompilerType return_type = function_type.GetFunctionReturnType();
|
|
|
|
|
RegisterValue return_value;
|
2016-09-14 08:48:19 +08:00
|
|
|
|
if (!frame.GetRegisterContext()->ReadRegister(return_register_info,
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return_value)) {
|
|
|
|
|
break;
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
std::string name_str(
|
|
|
|
|
sc.function->GetName().AsCString("<unknown function>"));
|
|
|
|
|
name_str.append("()");
|
|
|
|
|
Address return_value_address(return_value.GetAsUInt64());
|
|
|
|
|
ValueObjectSP return_value_sp = ValueObjectMemory::Create(
|
2016-11-13 02:17:36 +08:00
|
|
|
|
&frame, name_str, return_value_address, return_type);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
return GetValueForDereferincingOffset(frame, return_value_sp, offset);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
continue;
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
|
llvm::SmallVector<Instruction::Operand, 2> operands;
|
|
|
|
|
if (!instruction_sp->ParseOperands(operands) || operands.size() != 2) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Instruction::Operand *origin_operand = nullptr;
|
2016-09-15 04:58:31 +08:00
|
|
|
|
auto clobbered_reg_matcher = [reg_info](const Instruction::Operand &op) {
|
|
|
|
|
return MatchRegOp(*reg_info)(op) && op.m_clobbered;
|
|
|
|
|
};
|
2016-09-15 04:29:57 +08:00
|
|
|
|
|
|
|
|
|
if (clobbered_reg_matcher(operands[0])) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
origin_operand = &operands[1];
|
2016-09-15 04:29:57 +08:00
|
|
|
|
}
|
|
|
|
|
else if (clobbered_reg_matcher(operands[1])) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
origin_operand = &operands[0];
|
2016-09-15 04:29:57 +08:00
|
|
|
|
}
|
|
|
|
|
else {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// We have an origin operand. Can we track its value down?
|
2016-09-15 05:54:28 +08:00
|
|
|
|
ValueObjectSP source_path;
|
|
|
|
|
ConstString origin_register;
|
|
|
|
|
int64_t origin_offset = 0;
|
|
|
|
|
|
|
|
|
|
if (FetchRegOp(origin_register)(*origin_operand)) {
|
|
|
|
|
source_path = DoGuessValueAt(frame, origin_register, 0, disassembler,
|
|
|
|
|
variables, instruction_sp->GetAddress());
|
|
|
|
|
} else if (MatchUnaryOp(
|
|
|
|
|
MatchOpType(Instruction::Operand::Type::Dereference),
|
|
|
|
|
FetchRegOp(origin_register))(*origin_operand) ||
|
|
|
|
|
MatchUnaryOp(
|
|
|
|
|
MatchOpType(Instruction::Operand::Type::Dereference),
|
|
|
|
|
MatchBinaryOp(MatchOpType(Instruction::Operand::Type::Sum),
|
|
|
|
|
FetchRegOp(origin_register),
|
|
|
|
|
FetchImmOp(origin_offset)))(*origin_operand)) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
source_path =
|
2016-09-15 05:54:28 +08:00
|
|
|
|
DoGuessValueAt(frame, origin_register, origin_offset, disassembler,
|
2016-09-07 04:57:50 +08:00
|
|
|
|
variables, instruction_sp->GetAddress());
|
2016-09-15 05:54:28 +08:00
|
|
|
|
if (!source_path) {
|
|
|
|
|
continue;
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2016-09-15 05:54:28 +08:00
|
|
|
|
source_path =
|
|
|
|
|
GetValueForDereferincingOffset(frame, source_path, offset);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (source_path) {
|
|
|
|
|
return source_path;
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
lldb::ValueObjectSP StackFrame::GuessValueForRegisterAndOffset(ConstString reg,
|
|
|
|
|
int64_t offset) {
|
|
|
|
|
TargetSP target_sp = CalculateTarget();
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
const ArchSpec &target_arch = target_sp->GetArchitecture();
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
Block *frame_block = GetFrameBlock();
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (!frame_block) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
Added the "frame diagnose" command and use its output to make crash info better.
When a process stops due to a crash, we get the crashing instruction and the
crashing memory location (if there is one). From the user's perspective it is
often unclear what the reason for the crash is in a symbolic sense.
To address this, I have added new fuctionality to StackFrame to parse the
disassembly and reconstruct the sequence of dereferneces and offsets that were
applied to a known variable (or fuction retrn value) to obtain the invalid
pointer.
This makes use of enhancements in the disassembler, as well as new information
provided by the DWARF expression infrastructure, and is exposed through a
"frame diagnose" command. It is also used to provide symbolic information, when
available, in the event of a crash.
The algorithm is very rudimentary, and it needs a bunch of work, including
- better parsing for assembly, preferably with help from LLVM
- support for non-Apple platforms
- cleanup of the algorithm core, preferably to make it all work in terms of
Operands instead of register/offset pairs
- improvement of the GetExpressioPath() logic to make prettier expression
paths, and
- better handling of vtables.
I welcome all suggestios, improvements, and testcases.
llvm-svn: 280692
2016-09-06 12:48:36 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
Function *function = frame_block->CalculateSymbolContextFunction();
|
|
|
|
|
if (!function) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
AddressRange pc_range = function->GetAddressRange();
|
|
|
|
|
|
|
|
|
|
if (GetFrameCodeAddress().GetFileAddress() <
|
|
|
|
|
pc_range.GetBaseAddress().GetFileAddress() ||
|
|
|
|
|
GetFrameCodeAddress().GetFileAddress() -
|
|
|
|
|
pc_range.GetBaseAddress().GetFileAddress() >=
|
|
|
|
|
pc_range.GetByteSize()) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ExecutionContext exe_ctx(shared_from_this());
|
|
|
|
|
|
|
|
|
|
const char *plugin_name = nullptr;
|
|
|
|
|
const char *flavor = nullptr;
|
|
|
|
|
const bool prefer_file_cache = false;
|
|
|
|
|
DisassemblerSP disassembler_sp = Disassembler::DisassembleRange(
|
|
|
|
|
target_arch, plugin_name, flavor, exe_ctx, pc_range, prefer_file_cache);
|
|
|
|
|
|
|
|
|
|
if (!disassembler_sp || !disassembler_sp->GetInstructionList().GetSize()) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
const bool get_file_globals = false;
|
|
|
|
|
VariableList *variables = GetVariableList(get_file_globals);
|
|
|
|
|
|
|
|
|
|
if (!variables) {
|
|
|
|
|
return ValueObjectSP();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return DoGuessValueAt(*this, reg, offset, *disassembler_sp, *variables,
|
|
|
|
|
GetFrameCodeAddress());
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2018-09-21 01:06:34 +08:00
|
|
|
|
lldb::ValueObjectSP StackFrame::FindVariable(ConstString name) {
|
|
|
|
|
ValueObjectSP value_sp;
|
|
|
|
|
|
|
|
|
|
if (!name)
|
|
|
|
|
return value_sp;
|
|
|
|
|
|
|
|
|
|
TargetSP target_sp = CalculateTarget();
|
|
|
|
|
ProcessSP process_sp = CalculateProcess();
|
|
|
|
|
|
|
|
|
|
if (!target_sp && !process_sp)
|
|
|
|
|
return value_sp;
|
|
|
|
|
|
|
|
|
|
VariableList variable_list;
|
|
|
|
|
VariableSP var_sp;
|
|
|
|
|
SymbolContext sc(GetSymbolContext(eSymbolContextBlock));
|
|
|
|
|
|
|
|
|
|
if (sc.block) {
|
|
|
|
|
const bool can_create = true;
|
|
|
|
|
const bool get_parent_variables = true;
|
|
|
|
|
const bool stop_if_block_is_inlined_function = true;
|
|
|
|
|
|
|
|
|
|
if (sc.block->AppendVariables(
|
|
|
|
|
can_create, get_parent_variables, stop_if_block_is_inlined_function,
|
|
|
|
|
[this](Variable *v) { return v->IsInScope(this); },
|
|
|
|
|
&variable_list)) {
|
|
|
|
|
var_sp = variable_list.FindVariable(name);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (var_sp)
|
|
|
|
|
value_sp = GetValueObjectForFrameVariable(var_sp, eNoDynamicValues);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return value_sp;
|
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
TargetSP StackFrame::CalculateTarget() {
|
|
|
|
|
TargetSP target_sp;
|
|
|
|
|
ThreadSP thread_sp(GetThread());
|
|
|
|
|
if (thread_sp) {
|
|
|
|
|
ProcessSP process_sp(thread_sp->CalculateProcess());
|
|
|
|
|
if (process_sp)
|
|
|
|
|
target_sp = process_sp->CalculateTarget();
|
|
|
|
|
}
|
|
|
|
|
return target_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ProcessSP StackFrame::CalculateProcess() {
|
|
|
|
|
ProcessSP process_sp;
|
|
|
|
|
ThreadSP thread_sp(GetThread());
|
|
|
|
|
if (thread_sp)
|
|
|
|
|
process_sp = thread_sp->CalculateProcess();
|
|
|
|
|
return process_sp;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
ThreadSP StackFrame::CalculateThread() { return GetThread(); }
|
2010-10-04 09:05:56 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
StackFrameSP StackFrame::CalculateStackFrame() { return shared_from_this(); }
|
2013-10-19 01:38:31 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
void StackFrame::CalculateExecutionContext(ExecutionContext &exe_ctx) {
|
|
|
|
|
exe_ctx.SetContext(shared_from_this());
|
2010-10-04 09:05:56 +08:00
|
|
|
|
}
|
|
|
|
|
|
2017-06-13 00:25:24 +08:00
|
|
|
|
void StackFrame::DumpUsingSettingsFormat(Stream *strm, bool show_unique,
|
2016-09-07 04:57:50 +08:00
|
|
|
|
const char *frame_marker) {
|
|
|
|
|
if (strm == nullptr)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
GetSymbolContext(eSymbolContextEverything);
|
|
|
|
|
ExecutionContext exe_ctx(shared_from_this());
|
|
|
|
|
StreamString s;
|
|
|
|
|
|
|
|
|
|
if (frame_marker)
|
|
|
|
|
s.PutCString(frame_marker);
|
|
|
|
|
|
|
|
|
|
const FormatEntity::Entry *frame_format = nullptr;
|
|
|
|
|
Target *target = exe_ctx.GetTargetPtr();
|
2017-06-13 00:25:24 +08:00
|
|
|
|
if (target) {
|
|
|
|
|
if (show_unique) {
|
|
|
|
|
frame_format = target->GetDebugger().GetFrameFormatUnique();
|
|
|
|
|
} else {
|
|
|
|
|
frame_format = target->GetDebugger().GetFrameFormat();
|
|
|
|
|
}
|
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (frame_format && FormatEntity::Format(*frame_format, s, &m_sc, &exe_ctx,
|
|
|
|
|
nullptr, nullptr, false, false)) {
|
2016-11-17 05:15:24 +08:00
|
|
|
|
strm->PutCString(s.GetString());
|
2016-09-07 04:57:50 +08:00
|
|
|
|
} else {
|
|
|
|
|
Dump(strm, true, false);
|
|
|
|
|
strm->EOL();
|
|
|
|
|
}
|
2010-06-09 00:52:24 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
void StackFrame::Dump(Stream *strm, bool show_frame_index,
|
|
|
|
|
bool show_fullpaths) {
|
|
|
|
|
if (strm == nullptr)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
if (show_frame_index)
|
|
|
|
|
strm->Printf("frame #%u: ", m_frame_index);
|
|
|
|
|
ExecutionContext exe_ctx(shared_from_this());
|
|
|
|
|
Target *target = exe_ctx.GetTargetPtr();
|
|
|
|
|
strm->Printf("0x%0*" PRIx64 " ",
|
|
|
|
|
target ? (target->GetArchitecture().GetAddressByteSize() * 2)
|
|
|
|
|
: 16,
|
|
|
|
|
GetFrameCodeAddress().GetLoadAddress(target));
|
|
|
|
|
GetSymbolContext(eSymbolContextEverything);
|
|
|
|
|
const bool show_module = true;
|
|
|
|
|
const bool show_inline = true;
|
|
|
|
|
const bool show_function_arguments = true;
|
|
|
|
|
const bool show_function_name = true;
|
|
|
|
|
m_sc.DumpStopContext(strm, exe_ctx.GetBestExecutionContextScope(),
|
|
|
|
|
GetFrameCodeAddress(), show_fullpaths, show_module,
|
|
|
|
|
show_inline, show_function_arguments,
|
|
|
|
|
show_function_name);
|
2010-08-28 02:24:16 +08:00
|
|
|
|
}
|
2010-08-28 05:47:54 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
void StackFrame::UpdateCurrentFrameFromPreviousFrame(StackFrame &prev_frame) {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
assert(GetStackID() ==
|
|
|
|
|
prev_frame.GetStackID()); // TODO: remove this after some testing
|
|
|
|
|
m_variable_list_sp = prev_frame.m_variable_list_sp;
|
|
|
|
|
m_variable_list_value_objects.Swap(prev_frame.m_variable_list_value_objects);
|
2016-11-17 05:15:24 +08:00
|
|
|
|
if (!m_disassembly.GetString().empty()) {
|
|
|
|
|
m_disassembly.Clear();
|
|
|
|
|
m_disassembly.PutCString(prev_frame.m_disassembly.GetString());
|
|
|
|
|
}
|
2010-08-31 02:11:35 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
|
|
|
|
|
void StackFrame::UpdatePreviousFrameFromCurrentFrame(StackFrame &curr_frame) {
|
|
|
|
|
std::lock_guard<std::recursive_mutex> guard(m_mutex);
|
|
|
|
|
assert(GetStackID() ==
|
|
|
|
|
curr_frame.GetStackID()); // TODO: remove this after some testing
|
|
|
|
|
m_id.SetPC(curr_frame.m_id.GetPC()); // Update the Stack ID PC value
|
|
|
|
|
assert(GetThread() == curr_frame.GetThread());
|
|
|
|
|
m_frame_index = curr_frame.m_frame_index;
|
|
|
|
|
m_concrete_frame_index = curr_frame.m_concrete_frame_index;
|
|
|
|
|
m_reg_context_sp = curr_frame.m_reg_context_sp;
|
|
|
|
|
m_frame_code_addr = curr_frame.m_frame_code_addr;
|
|
|
|
|
assert(!m_sc.target_sp || !curr_frame.m_sc.target_sp ||
|
|
|
|
|
m_sc.target_sp.get() == curr_frame.m_sc.target_sp.get());
|
|
|
|
|
assert(!m_sc.module_sp || !curr_frame.m_sc.module_sp ||
|
|
|
|
|
m_sc.module_sp.get() == curr_frame.m_sc.module_sp.get());
|
|
|
|
|
assert(m_sc.comp_unit == nullptr || curr_frame.m_sc.comp_unit == nullptr ||
|
|
|
|
|
m_sc.comp_unit == curr_frame.m_sc.comp_unit);
|
|
|
|
|
assert(m_sc.function == nullptr || curr_frame.m_sc.function == nullptr ||
|
|
|
|
|
m_sc.function == curr_frame.m_sc.function);
|
|
|
|
|
m_sc = curr_frame.m_sc;
|
|
|
|
|
m_flags.Clear(GOT_FRAME_BASE | eSymbolContextEverything);
|
|
|
|
|
m_flags.Set(m_sc.GetResolvedMask());
|
|
|
|
|
m_frame_base.Clear();
|
|
|
|
|
m_frame_base_error.Clear();
|
2013-11-04 17:33:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
bool StackFrame::HasCachedData() const {
|
|
|
|
|
if (m_variable_list_sp)
|
|
|
|
|
return true;
|
|
|
|
|
if (m_variable_list_value_objects.GetSize() > 0)
|
|
|
|
|
return true;
|
|
|
|
|
if (!m_disassembly.GetString().empty())
|
|
|
|
|
return true;
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2015-12-03 12:56:16 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
bool StackFrame::GetStatus(Stream &strm, bool show_frame_info, bool show_source,
|
2017-06-13 00:25:24 +08:00
|
|
|
|
bool show_unique, const char *frame_marker) {
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (show_frame_info) {
|
|
|
|
|
strm.Indent();
|
2017-06-13 00:25:24 +08:00
|
|
|
|
DumpUsingSettingsFormat(&strm, show_unique, frame_marker);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
2015-12-03 12:56:16 +08:00
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (show_source) {
|
|
|
|
|
ExecutionContext exe_ctx(shared_from_this());
|
|
|
|
|
bool have_source = false, have_debuginfo = false;
|
|
|
|
|
Debugger::StopDisassemblyType disasm_display =
|
|
|
|
|
Debugger::eStopDisassemblyTypeNever;
|
|
|
|
|
Target *target = exe_ctx.GetTargetPtr();
|
|
|
|
|
if (target) {
|
|
|
|
|
Debugger &debugger = target->GetDebugger();
|
|
|
|
|
const uint32_t source_lines_before =
|
|
|
|
|
debugger.GetStopSourceLineCount(true);
|
|
|
|
|
const uint32_t source_lines_after =
|
|
|
|
|
debugger.GetStopSourceLineCount(false);
|
|
|
|
|
disasm_display = debugger.GetStopDisassemblyDisplay();
|
|
|
|
|
|
|
|
|
|
GetSymbolContext(eSymbolContextCompUnit | eSymbolContextLineEntry);
|
|
|
|
|
if (m_sc.comp_unit && m_sc.line_entry.IsValid()) {
|
|
|
|
|
have_debuginfo = true;
|
|
|
|
|
if (source_lines_before > 0 || source_lines_after > 0) {
|
|
|
|
|
size_t num_lines =
|
|
|
|
|
target->GetSourceManager().DisplaySourceLinesWithLineNumbers(
|
|
|
|
|
m_sc.line_entry.file, m_sc.line_entry.line,
|
add stop column highlighting support
This change introduces optional marking of the column within a source
line where a thread is stopped. This marking will show up when the
source code for a thread stop is displayed, when the debug info
knows the column information, and if the optional column marking is
enabled.
There are two separate methods for handling the marking of the stop
column:
* via ANSI terminal codes, which are added inline to the source line
display. The default ANSI mark-up is to underline the column.
* via a pure text-based caret that is added in the appropriate column
in a newly-inserted blank line underneath the source line in
question.
There are some new options that control how this all works.
* settings set stop-show-column
This takes one of 4 values:
* ansi-or-caret: use the ANSI terminal code mechanism if LLDB
is running with color enabled; if not, use the caret-based,
pure text method (see the "caret" mode below).
* ansi: only use the ANSI terminal code mechanism to highlight
the stop line. If LLDB is running with color disabled, no
stop column marking will occur.
* caret: only use the pure text caret method, which introduces
a newly-inserted line underneath the current line, where
the only character in the new line is a caret that highlights
the stop column in question.
* none: no stop column marking will be attempted.
* settings set stop-show-column-ansi-prefix
This is a text format that indicates the ANSI formatting
code to insert into the stream immediately preceding the
column where the stop column character will be marked up.
It defaults to ${ansi.underline}; however, it can contain
any valid LLDB format codes, e.g.
${ansi.fg.red}${ansi.bold}${ansi.underline}
* settings set stop-show-column-ansi-suffix
This is the text format that specifies the ANSI terminal
codes to end the markup that was started with the prefix
described above. It defaults to: ${ansi.normal}. This
should be sufficient for the common cases.
Significant leg-work was done by Adrian Prantl. (Thanks, Adrian!)
differential review: https://reviews.llvm.org/D20835
reviewers: clayborg, jingham
llvm-svn: 282105
2016-09-22 04:13:14 +08:00
|
|
|
|
m_sc.line_entry.column, source_lines_before,
|
|
|
|
|
source_lines_after, "->", &strm);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
if (num_lines != 0)
|
|
|
|
|
have_source = true;
|
|
|
|
|
// TODO: Give here a one time warning if source file is missing.
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
switch (disasm_display) {
|
|
|
|
|
case Debugger::eStopDisassemblyTypeNever:
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
case Debugger::eStopDisassemblyTypeNoDebugInfo:
|
|
|
|
|
if (have_debuginfo)
|
|
|
|
|
break;
|
|
|
|
|
LLVM_FALLTHROUGH;
|
|
|
|
|
|
|
|
|
|
case Debugger::eStopDisassemblyTypeNoSource:
|
|
|
|
|
if (have_source)
|
|
|
|
|
break;
|
|
|
|
|
LLVM_FALLTHROUGH;
|
|
|
|
|
|
|
|
|
|
case Debugger::eStopDisassemblyTypeAlways:
|
|
|
|
|
if (target) {
|
|
|
|
|
const uint32_t disasm_lines = debugger.GetDisassemblyLineCount();
|
|
|
|
|
if (disasm_lines > 0) {
|
|
|
|
|
const ArchSpec &target_arch = target->GetArchitecture();
|
|
|
|
|
AddressRange pc_range;
|
|
|
|
|
pc_range.GetBaseAddress() = GetFrameCodeAddress();
|
|
|
|
|
pc_range.SetByteSize(disasm_lines *
|
|
|
|
|
target_arch.GetMaximumOpcodeByteSize());
|
|
|
|
|
const char *plugin_name = nullptr;
|
|
|
|
|
const char *flavor = nullptr;
|
I'm experimenting with changing how the mixed source & assembly
mode in lldb works. I've been discussing this with Jim Ingham,
Greg Clayton, and Kate Stone for the past week or two.
Previously lldb would print three source lines (centered on the
line table entry line for the current line) followed by the assembly.
It would print the context information (module`function + offset)
before those three lines of source.
Now lldb will print up to two lines before/after the line table
entry. It prints two '*' characters for the line table line to
make it clear what line is showing assembly. There is one line of
whitespace before/after the source lines so the separation between
source & assembly is clearer. I don't print the context line
(module`function + offset). I stop printing context lines if it's
a different line table entry, or if it's a source line I've already
printed as context to another source line. If I have two line table
entries one after another for the same source line (I get these often
with clang - with different column information in them), I only print
the source line once.
I'm also using the target.process.thread.step-avoid-regexp setting
(which keeps you from stepping into STL functions that have been inlined
into your own code) and avoid printing any source lines from functions
that match that regexp.
When lldb disassembles into a new function, it will try to find the
declaration line # for the function and print all of the source lines
between the decl and the first line table entry (usually a { curly brace)
so we have a good chance of including the arguments, at least with the
debug info emitted by clang.
Finally, the # of source lines of context to show has been separated
from whether we're doing mixed source & assembly or not. Previously
specifying 0 lines of context would turn off mixed source & assembly.
I think there's room for improvement, and maybe some bugs I haven't
found yet, but it's in good enough shape to upstream and iterate at
this point.
I'm not sure how best to indicate which source line is the actual line
table # versus context lines. I'm using '**' right now. Both Kate
and Greg had the initial idea to reuse '->' (normally used to indicate
"currently executing source line") - I tried it but I wasn't thrilled,
I'm too used to the established meaning of ->.
Greg had the interesting idea of avoiding context source lines only
in two line table entries in the same source file. So we'd print
two lines before & after a source line, and then the next line table
entry (if it was on the next source line after those two context lines)
we'd display only the following two lines -- the previous two had just
been printed. If an inline source line was printed between these two,
though, we'd print the context lines for both of them. It's an
interesting idea, and I want to see how it works with both -O0 and -O3
codegen where we have different amounts of inlining.
<rdar://problem/27961419>
llvm-svn: 280906
2016-09-08 13:12:41 +08:00
|
|
|
|
const bool mixed_source_and_assembly = false;
|
|
|
|
|
Disassembler::Disassemble(
|
|
|
|
|
target->GetDebugger(), target_arch, plugin_name, flavor,
|
|
|
|
|
exe_ctx, pc_range, disasm_lines, mixed_source_and_assembly, 0,
|
|
|
|
|
Disassembler::eOptionMarkPCAddress, strm);
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
Centralized a lot of the status information for processes,
threads, and stack frame down in the lldb_private::Process,
lldb_private::Thread, lldb_private::StackFrameList and the
lldb_private::StackFrame classes. We had some command line
commands that had duplicate versions of the process status
output ("thread list" and "process status" for example).
Removed the "file" command and placed it where it should
have been: "target create". Made an alias for "file" to
"target create" so we stay compatible with GDB commands.
We can now have multple usable targets in lldb at the
same time. This is nice for comparing two runs of a program
or debugging more than one binary at the same time. The
new command is "target select <target-idx>" and also to see
a list of the current targets you can use the new "target list"
command. The flow in a debug session can be:
(lldb) target create /path/to/exe/a.out
(lldb) breakpoint set --name main
(lldb) run
... hit breakpoint
(lldb) target create /bin/ls
(lldb) run /tmp
Process 36001 exited with status = 0 (0x00000000)
(lldb) target list
Current targets:
target #0: /tmp/args/a.out ( arch=x86_64-apple-darwin, platform=localhost, pid=35999, state=stopped )
* target #1: /bin/ls ( arch=x86_64-apple-darwin, platform=localhost, pid=36001, state=exited )
(lldb) target select 0
Current targets:
* target #0: /tmp/args/a.out ( arch=x86_64-apple-darwin, platform=localhost, pid=35999, state=stopped )
target #1: /bin/ls ( arch=x86_64-apple-darwin, platform=localhost, pid=36001, state=exited )
(lldb) bt
* thread #1: tid = 0x2d03, 0x0000000100000b9a a.out`main + 42 at main.c:16, stop reason = breakpoint 1.1
frame #0: 0x0000000100000b9a a.out`main + 42 at main.c:16
frame #1: 0x0000000100000b64 a.out`start + 52
Above we created a target for "a.out" and ran and hit a
breakpoint at "main". Then we created a new target for /bin/ls
and ran it. Then we listed the targest and selected our original
"a.out" program, so we showed two concurent debug sessions
going on at the same time.
llvm-svn: 129695
2011-04-18 16:33:37 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
break;
|
|
|
|
|
}
|
Centralized a lot of the status information for processes,
threads, and stack frame down in the lldb_private::Process,
lldb_private::Thread, lldb_private::StackFrameList and the
lldb_private::StackFrame classes. We had some command line
commands that had duplicate versions of the process status
output ("thread list" and "process status" for example).
Removed the "file" command and placed it where it should
have been: "target create". Made an alias for "file" to
"target create" so we stay compatible with GDB commands.
We can now have multple usable targets in lldb at the
same time. This is nice for comparing two runs of a program
or debugging more than one binary at the same time. The
new command is "target select <target-idx>" and also to see
a list of the current targets you can use the new "target list"
command. The flow in a debug session can be:
(lldb) target create /path/to/exe/a.out
(lldb) breakpoint set --name main
(lldb) run
... hit breakpoint
(lldb) target create /bin/ls
(lldb) run /tmp
Process 36001 exited with status = 0 (0x00000000)
(lldb) target list
Current targets:
target #0: /tmp/args/a.out ( arch=x86_64-apple-darwin, platform=localhost, pid=35999, state=stopped )
* target #1: /bin/ls ( arch=x86_64-apple-darwin, platform=localhost, pid=36001, state=exited )
(lldb) target select 0
Current targets:
* target #0: /tmp/args/a.out ( arch=x86_64-apple-darwin, platform=localhost, pid=35999, state=stopped )
target #1: /bin/ls ( arch=x86_64-apple-darwin, platform=localhost, pid=36001, state=exited )
(lldb) bt
* thread #1: tid = 0x2d03, 0x0000000100000b9a a.out`main + 42 at main.c:16, stop reason = breakpoint 1.1
frame #0: 0x0000000100000b9a a.out`main + 42 at main.c:16
frame #1: 0x0000000100000b64 a.out`start + 52
Above we created a target for "a.out" and ran and hit a
breakpoint at "main". Then we created a new target for /bin/ls
and ran it. Then we listed the targest and selected our original
"a.out" program, so we showed two concurent debug sessions
going on at the same time.
llvm-svn: 129695
2011-04-18 16:33:37 +08:00
|
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
|
}
|
|
|
|
|
return true;
|
Centralized a lot of the status information for processes,
threads, and stack frame down in the lldb_private::Process,
lldb_private::Thread, lldb_private::StackFrameList and the
lldb_private::StackFrame classes. We had some command line
commands that had duplicate versions of the process status
output ("thread list" and "process status" for example).
Removed the "file" command and placed it where it should
have been: "target create". Made an alias for "file" to
"target create" so we stay compatible with GDB commands.
We can now have multple usable targets in lldb at the
same time. This is nice for comparing two runs of a program
or debugging more than one binary at the same time. The
new command is "target select <target-idx>" and also to see
a list of the current targets you can use the new "target list"
command. The flow in a debug session can be:
(lldb) target create /path/to/exe/a.out
(lldb) breakpoint set --name main
(lldb) run
... hit breakpoint
(lldb) target create /bin/ls
(lldb) run /tmp
Process 36001 exited with status = 0 (0x00000000)
(lldb) target list
Current targets:
target #0: /tmp/args/a.out ( arch=x86_64-apple-darwin, platform=localhost, pid=35999, state=stopped )
* target #1: /bin/ls ( arch=x86_64-apple-darwin, platform=localhost, pid=36001, state=exited )
(lldb) target select 0
Current targets:
* target #0: /tmp/args/a.out ( arch=x86_64-apple-darwin, platform=localhost, pid=35999, state=stopped )
target #1: /bin/ls ( arch=x86_64-apple-darwin, platform=localhost, pid=36001, state=exited )
(lldb) bt
* thread #1: tid = 0x2d03, 0x0000000100000b9a a.out`main + 42 at main.c:16, stop reason = breakpoint 1.1
frame #0: 0x0000000100000b9a a.out`main + 42 at main.c:16
frame #1: 0x0000000100000b64 a.out`start + 52
Above we created a target for "a.out" and ran and hit a
breakpoint at "main". Then we created a new target for /bin/ls
and ran it. Then we listed the targest and selected our original
"a.out" program, so we showed two concurent debug sessions
going on at the same time.
llvm-svn: 129695
2011-04-18 16:33:37 +08:00
|
|
|
|
}
|
2018-10-31 12:00:22 +08:00
|
|
|
|
|
|
|
|
|
RecognizedStackFrameSP StackFrame::GetRecognizedFrame() {
|
|
|
|
|
if (!m_recognized_frame_sp) {
|
|
|
|
|
m_recognized_frame_sp =
|
|
|
|
|
StackFrameRecognizerManager::RecognizeFrame(CalculateStackFrame());
|
|
|
|
|
}
|
|
|
|
|
return m_recognized_frame_sp;
|
|
|
|
|
}
|