llvm/lldb/source/Target/ThreadPlanCallFunction.cpp

//===-- ThreadPlanCallFunction.cpp ----------------------------------------===//
//
// 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
//
//===----------------------------------------------------------------------===//

#include "lldb/Target/ThreadPlanCallFunction.h"
#include "lldb/Breakpoint/Breakpoint.h"
#include "lldb/Breakpoint/BreakpointLocation.h"
#include "lldb/Core/Address.h"
#include "lldb/Core/DumpRegisterValue.h"
#include "lldb/Core/Module.h"
#include "lldb/Symbol/ObjectFile.h"
#include "lldb/Target/ABI.h"
#include "lldb/Target/LanguageRuntime.h"
#include "lldb/Target/Process.h"
#include "lldb/Target/RegisterContext.h"
#include "lldb/Target/StopInfo.h"
#include "lldb/Target/Target.h"
#include "lldb/Target/Thread.h"
#include "lldb/Target/ThreadPlanRunToAddress.h"
#include "lldb/Utility/LLDBLog.h"
#include "lldb/Utility/Log.h"
#include "lldb/Utility/Stream.h"

#include <memory>

usingnamespacelldb;
usingnamespacelldb_private;

// ThreadPlanCallFunction: Plan to call a single function
bool ThreadPlanCallFunction::ConstructorSetup(
    Thread &thread, ABI *&abi, lldb::addr_t &start_load_addr,
    lldb::addr_t &function_load_addr) {}

ThreadPlanCallFunction::ThreadPlanCallFunction(
    Thread &thread, const Address &function, const CompilerType &return_type,
    llvm::ArrayRef<addr_t> args, const EvaluateExpressionOptions &options)
    :{}

ThreadPlanCallFunction::ThreadPlanCallFunction(
    Thread &thread, const Address &function,
    const EvaluateExpressionOptions &options)
    :{}

ThreadPlanCallFunction::~ThreadPlanCallFunction() {}

void ThreadPlanCallFunction::ReportRegisterState(const char *message) {}

void ThreadPlanCallFunction::DoTakedown(bool success) {}

void ThreadPlanCallFunction::DidPop() {}

void ThreadPlanCallFunction::GetDescription(Stream *s, DescriptionLevel level) {}

bool ThreadPlanCallFunction::ValidatePlan(Stream *error) {}

Vote ThreadPlanCallFunction::ShouldReportStop(Event *event_ptr) {}

bool ThreadPlanCallFunction::DoPlanExplainsStop(Event *event_ptr) {}

bool ThreadPlanCallFunction::ShouldStop(Event *event_ptr) {}

bool ThreadPlanCallFunction::StopOthers() {}

StateType ThreadPlanCallFunction::GetPlanRunState() {}

void ThreadPlanCallFunction::DidPush() {}

bool ThreadPlanCallFunction::WillStop() {}

bool ThreadPlanCallFunction::MischiefManaged() {}

void ThreadPlanCallFunction::SetBreakpoints() {}

void ThreadPlanCallFunction::ClearBreakpoints() {}

bool ThreadPlanCallFunction::BreakpointsExplainStop() {}

void ThreadPlanCallFunction::SetStopOthers(bool new_value) {}

void ThreadPlanCallFunction::RestoreThreadState() {}

void ThreadPlanCallFunction::SetReturnValue() {}