2010-06-09 00:52:24 +08:00
|
|
|
//===-- ThreadPlanShouldStopHere.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
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
2017-03-04 04:56:28 +08:00
|
|
|
#include "lldb/Target/ThreadPlanShouldStopHere.h"
|
2016-05-07 07:44:10 +08:00
|
|
|
#include "lldb/Symbol/Symbol.h"
|
2011-12-03 09:52:59 +08:00
|
|
|
#include "lldb/Target/RegisterContext.h"
|
2017-03-04 04:56:28 +08:00
|
|
|
#include "lldb/Target/Thread.h"
|
|
|
|
#include "lldb/Utility/Log.h"
|
2010-06-09 00:52:24 +08:00
|
|
|
|
|
|
|
using namespace lldb;
|
|
|
|
using namespace lldb_private;
|
|
|
|
|
|
|
|
// ThreadPlanShouldStopHere constructor
|
2016-09-07 04:57:50 +08:00
|
|
|
ThreadPlanShouldStopHere::ThreadPlanShouldStopHere(ThreadPlan *owner)
|
|
|
|
: m_callbacks(), m_baton(nullptr), m_owner(owner),
|
|
|
|
m_flags(ThreadPlanShouldStopHere::eNone) {
|
|
|
|
m_callbacks.should_stop_here_callback =
|
|
|
|
ThreadPlanShouldStopHere::DefaultShouldStopHereCallback;
|
|
|
|
m_callbacks.step_from_here_callback =
|
|
|
|
ThreadPlanShouldStopHere::DefaultStepFromHereCallback;
|
2014-03-13 10:47:14 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
ThreadPlanShouldStopHere::ThreadPlanShouldStopHere(
|
|
|
|
ThreadPlan *owner, const ThreadPlanShouldStopHereCallbacks *callbacks,
|
|
|
|
void *baton)
|
|
|
|
: m_callbacks(), m_baton(), m_owner(owner),
|
|
|
|
m_flags(ThreadPlanShouldStopHere::eNone) {
|
|
|
|
SetShouldStopHereCallbacks(callbacks, baton);
|
2010-06-09 00:52:24 +08:00
|
|
|
}
|
|
|
|
|
2015-12-15 09:33:19 +08:00
|
|
|
ThreadPlanShouldStopHere::~ThreadPlanShouldStopHere() = default;
|
2010-06-09 00:52:24 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlanShouldStopHere::InvokeShouldStopHereCallback(
|
2018-11-15 09:18:15 +08:00
|
|
|
FrameComparison operation, Status &status) {
|
2016-09-07 04:57:50 +08:00
|
|
|
bool should_stop_here = true;
|
|
|
|
if (m_callbacks.should_stop_here_callback) {
|
|
|
|
should_stop_here = m_callbacks.should_stop_here_callback(
|
2018-11-15 09:18:15 +08:00
|
|
|
m_owner, m_flags, operation, status, m_baton);
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
|
|
|
|
if (log) {
|
|
|
|
lldb::addr_t current_addr =
|
|
|
|
m_owner->GetThread().GetRegisterContext()->GetPC(0);
|
|
|
|
|
|
|
|
log->Printf("ShouldStopHere callback returned %u from 0x%" PRIx64 ".",
|
|
|
|
should_stop_here, current_addr);
|
2014-03-13 10:47:14 +08:00
|
|
|
}
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
2014-03-13 10:47:14 +08:00
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
return should_stop_here;
|
2014-03-13 10:47:14 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
bool ThreadPlanShouldStopHere::DefaultShouldStopHereCallback(
|
|
|
|
ThreadPlan *current_plan, Flags &flags, FrameComparison operation,
|
2018-11-15 09:18:15 +08:00
|
|
|
Status &status, void *baton) {
|
2016-09-07 04:57:50 +08:00
|
|
|
bool should_stop_here = true;
|
|
|
|
StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get();
|
|
|
|
if (!frame)
|
|
|
|
return true;
|
|
|
|
|
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
|
|
|
|
|
|
|
|
if ((operation == eFrameCompareOlder && flags.Test(eStepOutAvoidNoDebug)) ||
|
|
|
|
(operation == eFrameCompareYounger && flags.Test(eStepInAvoidNoDebug)) ||
|
|
|
|
(operation == eFrameCompareSameParent &&
|
|
|
|
flags.Test(eStepInAvoidNoDebug))) {
|
|
|
|
if (!frame->HasDebugInformation()) {
|
|
|
|
if (log)
|
|
|
|
log->Printf("Stepping out of frame with no debug info");
|
|
|
|
|
|
|
|
should_stop_here = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Always avoid code with line number 0.
|
|
|
|
// FIXME: At present the ShouldStop and the StepFromHere calculate this
|
|
|
|
// independently. If this ever
|
2018-05-01 00:49:04 +08:00
|
|
|
// becomes expensive (this one isn't) we can try to have this set a state
|
|
|
|
// that the StepFromHere can use.
|
2016-09-07 04:57:50 +08:00
|
|
|
if (frame) {
|
2014-03-18 07:03:34 +08:00
|
|
|
SymbolContext sc;
|
2016-09-07 04:57:50 +08:00
|
|
|
sc = frame->GetSymbolContext(eSymbolContextLineEntry);
|
2014-03-18 07:03:34 +08:00
|
|
|
if (sc.line_entry.line == 0)
|
2016-09-07 04:57:50 +08:00
|
|
|
should_stop_here = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return should_stop_here;
|
2014-03-13 10:47:14 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
ThreadPlanSP ThreadPlanShouldStopHere::DefaultStepFromHereCallback(
|
|
|
|
ThreadPlan *current_plan, Flags &flags, FrameComparison operation,
|
2018-11-15 09:18:15 +08:00
|
|
|
Status &status, void *baton) {
|
2016-09-07 04:57:50 +08:00
|
|
|
const bool stop_others = false;
|
|
|
|
const size_t frame_index = 0;
|
|
|
|
ThreadPlanSP return_plan_sp;
|
2018-05-01 00:49:04 +08:00
|
|
|
// If we are stepping through code at line number 0, then we need to step
|
|
|
|
// over this range. Otherwise we will step out.
|
2016-09-07 04:57:50 +08:00
|
|
|
Log *log(lldb_private::GetLogIfAllCategoriesSet(LIBLLDB_LOG_STEP));
|
|
|
|
|
|
|
|
StackFrame *frame = current_plan->GetThread().GetStackFrameAtIndex(0).get();
|
|
|
|
if (!frame)
|
2014-03-13 10:47:14 +08:00
|
|
|
return return_plan_sp;
|
2016-09-07 04:57:50 +08:00
|
|
|
SymbolContext sc;
|
|
|
|
sc = frame->GetSymbolContext(eSymbolContextLineEntry | eSymbolContextSymbol);
|
|
|
|
|
|
|
|
if (sc.line_entry.line == 0) {
|
|
|
|
AddressRange range = sc.line_entry.range;
|
|
|
|
|
|
|
|
// If the whole function is marked line 0 just step out, that's easier &
|
2018-05-01 00:49:04 +08:00
|
|
|
// faster than continuing to step through it.
|
2016-09-07 04:57:50 +08:00
|
|
|
bool just_step_out = false;
|
|
|
|
if (sc.symbol && sc.symbol->ValueIsAddress()) {
|
|
|
|
Address symbol_end = sc.symbol->GetAddress();
|
|
|
|
symbol_end.Slide(sc.symbol->GetByteSize() - 1);
|
|
|
|
if (range.ContainsFileAddress(sc.symbol->GetAddress()) &&
|
|
|
|
range.ContainsFileAddress(symbol_end)) {
|
|
|
|
if (log)
|
|
|
|
log->Printf("Stopped in a function with only line 0 lines, just "
|
|
|
|
"stepping out.");
|
|
|
|
just_step_out = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!just_step_out) {
|
|
|
|
if (log)
|
|
|
|
log->Printf("ThreadPlanShouldStopHere::DefaultStepFromHereCallback "
|
|
|
|
"Queueing StepInRange plan to step through line 0 code.");
|
|
|
|
|
|
|
|
return_plan_sp = current_plan->GetThread().QueueThreadPlanForStepInRange(
|
[lldb] NFC modernize codebase with modernize-use-nullptr
Summary:
NFC = [[ https://llvm.org/docs/Lexicon.html#nfc | Non functional change ]]
This commit is the result of modernizing the LLDB codebase by using
`nullptr` instread of `0` or `NULL`. See
https://clang.llvm.org/extra/clang-tidy/checks/modernize-use-nullptr.html
for more information.
This is the command I ran and I to fix and format the code base:
```
run-clang-tidy.py \
-header-filter='.*' \
-checks='-*,modernize-use-nullptr' \
-fix ~/dev/llvm-project/lldb/.* \
-format \
-style LLVM \
-p ~/llvm-builds/debug-ninja-gcc
```
NOTE: There were also changes to `llvm/utils/unittest` but I did not
include them because I felt that maybe this library shall be updated in
isolation somehow.
NOTE: I know this is a rather large commit but it is a nobrainer in most
parts.
Reviewers: martong, espindola, shafik, #lldb, JDevlieghere
Reviewed By: JDevlieghere
Subscribers: arsenm, jvesely, nhaehnle, hiraditya, JDevlieghere, teemperor, rnkovacs, emaste, kubamracek, nemanjai, ki.stfu, javed.absar, arichardson, kbarton, jrtc27, MaskRay, atanasyan, dexonsmith, arphaman, jfb, jsji, jdoerfert, lldb-commits, llvm-commits
Tags: #lldb, #llvm
Differential Revision: https://reviews.llvm.org/D61847
llvm-svn: 361484
2019-05-23 19:14:47 +08:00
|
|
|
false, range, sc, nullptr, eOnlyDuringStepping, status,
|
2018-11-15 09:18:15 +08:00
|
|
|
eLazyBoolCalculate, eLazyBoolNo);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!return_plan_sp)
|
|
|
|
return_plan_sp =
|
|
|
|
current_plan->GetThread().QueueThreadPlanForStepOutNoShouldStop(
|
|
|
|
false, nullptr, true, stop_others, eVoteNo, eVoteNoOpinion,
|
2018-11-15 09:18:15 +08:00
|
|
|
frame_index, status, true);
|
2016-09-07 04:57:50 +08:00
|
|
|
return return_plan_sp;
|
|
|
|
}
|
|
|
|
|
|
|
|
ThreadPlanSP ThreadPlanShouldStopHere::QueueStepOutFromHerePlan(
|
2018-11-15 09:18:15 +08:00
|
|
|
lldb_private::Flags &flags, lldb::FrameComparison operation,
|
|
|
|
Status &status) {
|
2016-09-07 04:57:50 +08:00
|
|
|
ThreadPlanSP return_plan_sp;
|
|
|
|
if (m_callbacks.step_from_here_callback) {
|
2018-11-15 09:18:15 +08:00
|
|
|
return_plan_sp = m_callbacks.step_from_here_callback(
|
|
|
|
m_owner, flags, operation, status, m_baton);
|
2016-09-07 04:57:50 +08:00
|
|
|
}
|
|
|
|
return return_plan_sp;
|
2014-03-13 10:47:14 +08:00
|
|
|
}
|
|
|
|
|
2016-09-07 04:57:50 +08:00
|
|
|
lldb::ThreadPlanSP ThreadPlanShouldStopHere::CheckShouldStopHereAndQueueStepOut(
|
2018-11-15 09:18:15 +08:00
|
|
|
lldb::FrameComparison operation, Status &status) {
|
|
|
|
if (!InvokeShouldStopHereCallback(operation, status))
|
|
|
|
return QueueStepOutFromHerePlan(m_flags, operation, status);
|
2016-09-07 04:57:50 +08:00
|
|
|
else
|
|
|
|
return ThreadPlanSP();
|
2011-01-26 07:55:37 +08:00
|
|
|
}
|