2014-05-16 18:51:01 +08:00
|
|
|
//===-- MICmdCmdStack.cpp ---------------------------------------*- C++ -*-===//
|
|
|
|
//
|
|
|
|
// The LLVM Compiler Infrastructure
|
|
|
|
//
|
|
|
|
// This file is distributed under the University of Illinois Open Source
|
|
|
|
// License. See LICENSE.TXT for details.
|
|
|
|
//
|
|
|
|
//===----------------------------------------------------------------------===//
|
|
|
|
|
|
|
|
//++
|
2014-11-18 02:06:21 +08:00
|
|
|
// File: MICmdCmdStack.cpp
|
2014-05-16 18:51:01 +08:00
|
|
|
//
|
2014-11-18 02:06:21 +08:00
|
|
|
// Overview: CMICmdCmdStackInfoDepth implementation.
|
2015-02-19 23:14:17 +08:00
|
|
|
// CMICmdCmdStackInfoFrame implementation.
|
2014-11-18 02:06:21 +08:00
|
|
|
// CMICmdCmdStackListFrames implementation.
|
|
|
|
// CMICmdCmdStackListArguments implementation.
|
|
|
|
// CMICmdCmdStackListLocals implementation.
|
2015-02-20 03:26:52 +08:00
|
|
|
// CMICmdCmdStackSelectFrame implementation.
|
2014-05-16 18:51:01 +08:00
|
|
|
//
|
2014-11-18 02:06:21 +08:00
|
|
|
// Environment: Compilers: Visual C++ 12.
|
|
|
|
// gcc (Ubuntu/Linaro 4.8.1-10ubuntu9) 4.8.1
|
|
|
|
// Libraries: See MIReadmetxt.
|
2014-05-16 18:51:01 +08:00
|
|
|
//
|
2014-11-18 02:06:21 +08:00
|
|
|
// Copyright: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
|
|
|
|
|
|
|
// Third Party Headers:
|
2015-01-20 08:04:26 +08:00
|
|
|
#include "lldb/API/SBThread.h"
|
2014-05-16 18:51:01 +08:00
|
|
|
|
|
|
|
// In-house headers:
|
|
|
|
#include "MICmdCmdStack.h"
|
|
|
|
#include "MICmnMIResultRecord.h"
|
|
|
|
#include "MICmnMIValueConst.h"
|
|
|
|
#include "MICmnMIOutOfBandRecord.h"
|
|
|
|
#include "MICmnLLDBDebugger.h"
|
|
|
|
#include "MICmnLLDBDebugSessionInfo.h"
|
|
|
|
#include "MICmdArgValNumber.h"
|
|
|
|
#include "MICmdArgValString.h"
|
|
|
|
#include "MICmdArgValThreadGrp.h"
|
|
|
|
#include "MICmdArgValOptionLong.h"
|
|
|
|
#include "MICmdArgValOptionShort.h"
|
|
|
|
#include "MICmdArgValListOfN.h"
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMICmdCmdStackInfoDepth constructor.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdCmdStackInfoDepth::CMICmdCmdStackInfoDepth(void)
|
|
|
|
: m_nThreadFrames(0)
|
|
|
|
, m_constStrArgThread("thread")
|
|
|
|
, m_constStrArgMaxDepth("max-depth")
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// Command factory matches this name with that received from the stdin stream
|
|
|
|
m_strMiCmd = "stack-info-depth";
|
|
|
|
|
|
|
|
// Required by the CMICmdFactory when registering *this command
|
|
|
|
m_pSelfCreatorFn = &CMICmdCmdStackInfoDepth::CreateSelf;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMICmdCmdStackInfoDepth destructor.
|
|
|
|
// Type: Overrideable.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdCmdStackInfoDepth::~CMICmdCmdStackInfoDepth(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The parses the command line options
|
|
|
|
// arguments to extract values for each of those arguments.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackInfoDepth::ParseArgs(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bOk =
|
2015-02-02 20:17:33 +08:00
|
|
|
m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgThread, false, true, CMICmdArgValListBase::eArgValType_Number, 1)));
|
2014-11-18 02:06:21 +08:00
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValNumber(m_constStrArgMaxDepth, false, false)));
|
|
|
|
return (bOk && ParseValidateCmdOptions());
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The command does work in this function.
|
|
|
|
// The command is likely to communicate with the LLDB SBDebugger in here.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackInfoDepth::Execute(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICMDBASE_GETOPTION(pArgThread, OptionLong, m_constStrArgThread);
|
|
|
|
CMICMDBASE_GETOPTION(pArgMaxDepth, Number, m_constStrArgMaxDepth);
|
|
|
|
|
|
|
|
// Retrieve the --thread option's thread ID (only 1)
|
|
|
|
MIuint64 nThreadId = UINT64_MAX;
|
2015-02-02 20:17:33 +08:00
|
|
|
if (pArgThread->GetFound() && !pArgThread->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nThreadId))
|
2014-11-18 02:06:21 +08:00
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_OPTION_NOT_FOUND), m_cmdData.strMiCmd.c_str(), m_constStrArgThread.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
CMICmnLLDBDebugSessionInfo &rSessionInfo(CMICmnLLDBDebugSessionInfo::Instance());
|
2015-02-03 18:05:54 +08:00
|
|
|
lldb::SBProcess sbProcess = rSessionInfo.GetProcess();
|
|
|
|
lldb::SBThread thread = (nThreadId != UINT64_MAX) ? sbProcess.GetThreadByIndexID(nThreadId) : sbProcess.GetSelectedThread();
|
2014-11-18 02:06:21 +08:00
|
|
|
m_nThreadFrames = thread.GetNumFrames();
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The command prepares a MI Record Result
|
|
|
|
// for the work carried out in the Execute().
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackInfoDepth::Acknowledge(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
const CMIUtilString strDepth(CMIUtilString::Format("%d", m_nThreadFrames));
|
|
|
|
const CMICmnMIValueConst miValueConst(strDepth);
|
|
|
|
const CMICmnMIValueResult miValueResult("depth", miValueConst);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
2014-05-16 18:51:01 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Required by the CMICmdFactory when registering *this command. The factory
|
|
|
|
// calls this function to create an instance of *this command.
|
|
|
|
// Type: Static method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMICmdBase * - Pointer to a new command.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdBase *
|
|
|
|
CMICmdCmdStackInfoDepth::CreateSelf(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return new CMICmdCmdStackInfoDepth();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
|
2015-02-19 23:14:17 +08:00
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: CMICmdCmdStackInfoFrame constructor.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
CMICmdCmdStackInfoFrame::CMICmdCmdStackInfoFrame(void)
|
|
|
|
{
|
|
|
|
// Command factory matches this name with that received from the stdin stream
|
|
|
|
m_strMiCmd = "stack-info-frame";
|
|
|
|
|
|
|
|
// Required by the CMICmdFactory when registering *this command
|
|
|
|
m_pSelfCreatorFn = &CMICmdCmdStackInfoFrame::CreateSelf;
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: CMICmdCmdStackInfoFrame destructor.
|
|
|
|
// Type: Overrideable.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
CMICmdCmdStackInfoFrame::~CMICmdCmdStackInfoFrame(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: The invoker requires this function. The parses the command line options
|
|
|
|
// arguments to extract values for each of those arguments.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Function succeeded.
|
|
|
|
// MIstatus::failure - Function failed.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
bool
|
|
|
|
CMICmdCmdStackInfoFrame::ParseArgs(void)
|
|
|
|
{
|
|
|
|
return ParseValidateCmdOptions();
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: The invoker requires this function. The command does work in this function.
|
|
|
|
// The command is likely to communicate with the LLDB SBDebugger in here.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Function succeeded.
|
|
|
|
// MIstatus::failure - Function failed.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
bool
|
|
|
|
CMICmdCmdStackInfoFrame::Execute(void)
|
|
|
|
{
|
|
|
|
CMICmnLLDBDebugSessionInfo &rSessionInfo(CMICmnLLDBDebugSessionInfo::Instance());
|
|
|
|
lldb::SBProcess sbProcess = rSessionInfo.GetProcess();
|
|
|
|
if (!sbProcess.IsValid())
|
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_INVALID_PROCESS), m_cmdData.strMiCmd.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::SBThread sbThread = sbProcess.GetSelectedThread();
|
|
|
|
MIuint nFrameId = sbThread.GetSelectedFrame().GetFrameID();
|
|
|
|
if (!rSessionInfo.MIResponseFormFrameInfo(sbThread, nFrameId, m_miValueTuple))
|
|
|
|
return MIstatus::failure;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: The invoker requires this function. The command prepares a MI Record Result
|
|
|
|
// for the work carried out in the Execute().
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Function succeeded.
|
|
|
|
// MIstatus::failure - Function failed.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
bool
|
|
|
|
CMICmdCmdStackInfoFrame::Acknowledge(void)
|
|
|
|
{
|
|
|
|
const CMICmnMIValueResult miValueResult("frame", m_miValueTuple);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: Required by the CMICmdFactory when registering *this command. The factory
|
|
|
|
// calls this function to create an instance of *this command.
|
|
|
|
// Type: Static method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMICmdBase * - Pointer to a new command.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
CMICmdBase *
|
|
|
|
CMICmdCmdStackInfoFrame::CreateSelf(void)
|
|
|
|
{
|
|
|
|
return new CMICmdCmdStackInfoFrame();
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
|
2014-05-16 18:51:01 +08:00
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMICmdCmdStackListFrames constructor.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdCmdStackListFrames::CMICmdCmdStackListFrames(void)
|
|
|
|
: m_nThreadFrames(0)
|
|
|
|
, m_constStrArgThread("thread")
|
|
|
|
, m_constStrArgFrameLow("low-frame")
|
|
|
|
, m_constStrArgFrameHigh("high-frame")
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// Command factory matches this name with that received from the stdin stream
|
|
|
|
m_strMiCmd = "stack-list-frames";
|
|
|
|
|
|
|
|
// Required by the CMICmdFactory when registering *this command
|
|
|
|
m_pSelfCreatorFn = &CMICmdCmdStackListFrames::CreateSelf;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMICmdCmdStackListFrames destructor.
|
|
|
|
// Type: Overrideable.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdCmdStackListFrames::~CMICmdCmdStackListFrames(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
m_vecMIValueResult.clear();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The parses the command line options
|
|
|
|
// arguments to extract values for each of those arguments.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListFrames::ParseArgs(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bOk =
|
2015-02-02 20:17:33 +08:00
|
|
|
m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgThread, false, true, CMICmdArgValListBase::eArgValType_Number, 1)));
|
2014-11-18 02:06:21 +08:00
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValNumber(m_constStrArgFrameLow, false, true)));
|
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValNumber(m_constStrArgFrameHigh, false, true)));
|
|
|
|
return (bOk && ParseValidateCmdOptions());
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The command does work in this function.
|
|
|
|
// The command is likely to communicate with the LLDB SBDebugger in here.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListFrames::Execute(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICMDBASE_GETOPTION(pArgThread, OptionLong, m_constStrArgThread);
|
|
|
|
CMICMDBASE_GETOPTION(pArgFrameLow, Number, m_constStrArgFrameLow);
|
|
|
|
CMICMDBASE_GETOPTION(pArgFrameHigh, Number, m_constStrArgFrameHigh);
|
|
|
|
|
|
|
|
// Retrieve the --thread option's thread ID (only 1)
|
|
|
|
MIuint64 nThreadId = UINT64_MAX;
|
2015-02-02 20:17:33 +08:00
|
|
|
if (pArgThread->GetFound() && !pArgThread->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nThreadId))
|
2014-11-18 02:06:21 +08:00
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_OPTION_NOT_FOUND), m_cmdData.strMiCmd.c_str(), m_constStrArgThread.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Frame low and high options are not mandatory
|
|
|
|
MIuint nFrameHigh = pArgFrameHigh->GetFound() ? pArgFrameHigh->GetValue() : UINT32_MAX;
|
|
|
|
const MIuint nFrameLow = pArgFrameLow->GetFound() ? pArgFrameLow->GetValue() : 0;
|
|
|
|
|
|
|
|
CMICmnLLDBDebugSessionInfo &rSessionInfo(CMICmnLLDBDebugSessionInfo::Instance());
|
2015-02-03 18:05:54 +08:00
|
|
|
lldb::SBProcess sbProcess = rSessionInfo.GetProcess();
|
|
|
|
lldb::SBThread thread = (nThreadId != UINT64_MAX) ? sbProcess.GetThreadByIndexID(nThreadId) : sbProcess.GetSelectedThread();
|
2014-11-18 02:06:21 +08:00
|
|
|
MIuint nThreadFrames = thread.GetNumFrames();
|
|
|
|
|
|
|
|
// Adjust nThreadFrames for the nFrameHigh argument as we use nFrameHigh+1 in the min calc as the arg
|
2014-05-16 18:51:01 +08:00
|
|
|
// is not an index, but a frame id value.
|
2014-11-18 02:06:21 +08:00
|
|
|
if (nFrameHigh < UINT32_MAX)
|
|
|
|
{
|
|
|
|
nFrameHigh++;
|
|
|
|
nThreadFrames = (nFrameHigh < nThreadFrames) ? nFrameHigh : nThreadFrames;
|
|
|
|
}
|
|
|
|
|
|
|
|
m_nThreadFrames = nThreadFrames;
|
|
|
|
if (nThreadFrames == 0)
|
|
|
|
return MIstatus::success;
|
|
|
|
|
|
|
|
m_vecMIValueResult.clear();
|
|
|
|
for (MIuint nLevel = nFrameLow; nLevel < nThreadFrames; nLevel++)
|
|
|
|
{
|
|
|
|
CMICmnMIValueTuple miValueTuple;
|
|
|
|
if (!rSessionInfo.MIResponseFormFrameInfo(thread, nLevel, miValueTuple))
|
|
|
|
return MIstatus::failure;
|
|
|
|
|
|
|
|
const CMICmnMIValueResult miValueResult8("frame", miValueTuple);
|
|
|
|
m_vecMIValueResult.push_back(miValueResult8);
|
|
|
|
}
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The command prepares a MI Record Result
|
|
|
|
// for the work carried out in the Execute().
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListFrames::Acknowledge(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
if (m_nThreadFrames == 0)
|
|
|
|
{
|
|
|
|
// MI print "3^done,stack=[{}]"
|
|
|
|
const CMICmnMIValueTuple miValueTuple;
|
|
|
|
const CMICmnMIValueList miValueList(miValueTuple);
|
|
|
|
const CMICmnMIValueResult miValueResult("stack", miValueList);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Build up a list of thread information from tuples
|
|
|
|
VecMIValueResult_t::const_iterator it = m_vecMIValueResult.begin();
|
|
|
|
if (it == m_vecMIValueResult.end())
|
|
|
|
{
|
|
|
|
// MI print "3^done,stack=[{}]"
|
|
|
|
const CMICmnMIValueTuple miValueTuple;
|
|
|
|
const CMICmnMIValueList miValueList(miValueTuple);
|
|
|
|
const CMICmnMIValueResult miValueResult("stack", miValueList);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
CMICmnMIValueList miValueList(*it);
|
|
|
|
++it;
|
|
|
|
while (it != m_vecMIValueResult.end())
|
|
|
|
{
|
|
|
|
const CMICmnMIValueResult &rTuple(*it);
|
|
|
|
miValueList.Add(rTuple);
|
|
|
|
|
|
|
|
// Next
|
|
|
|
++it;
|
|
|
|
}
|
|
|
|
const CMICmnMIValueResult miValueResult("stack", miValueList);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Required by the CMICmdFactory when registering *this command. The factory
|
|
|
|
// calls this function to create an instance of *this command.
|
|
|
|
// Type: Static method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMICmdBase * - Pointer to a new command.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdBase *
|
|
|
|
CMICmdCmdStackListFrames::CreateSelf(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return new CMICmdCmdStackListFrames();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMICmdCmdStackListArguments constructor.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdCmdStackListArguments::CMICmdCmdStackListArguments(void)
|
|
|
|
: m_bThreadInvalid(false)
|
|
|
|
, m_miValueList(true)
|
|
|
|
, m_constStrArgThread("thread")
|
|
|
|
, m_constStrArgPrintValues("print-values")
|
2015-02-07 02:08:24 +08:00
|
|
|
, m_constStrArgNoValues("no-values")
|
|
|
|
, m_constStrArgAllValues("all-values")
|
|
|
|
, m_constStrArgSimpleValues("simple-values")
|
2015-03-12 23:35:58 +08:00
|
|
|
, m_constStrArgFrameLow("low-frame")
|
|
|
|
, m_constStrArgFrameHigh("high-frame")
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// Command factory matches this name with that received from the stdin stream
|
|
|
|
m_strMiCmd = "stack-list-arguments";
|
|
|
|
|
|
|
|
// Required by the CMICmdFactory when registering *this command
|
|
|
|
m_pSelfCreatorFn = &CMICmdCmdStackListArguments::CreateSelf;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMICmdCmdStackListArguments destructor.
|
|
|
|
// Type: Overrideable.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdCmdStackListArguments::~CMICmdCmdStackListArguments(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The parses the command line options
|
|
|
|
// arguments to extract values for each of those arguments.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListArguments::ParseArgs(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bOk =
|
|
|
|
m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgThread, false, true, CMICmdArgValListBase::eArgValType_Number, 1)));
|
2015-02-07 02:08:24 +08:00
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValNumber(m_constStrArgPrintValues, false, true)));
|
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgNoValues, false, true)));
|
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgAllValues, false, true)));
|
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgSimpleValues, false, true)));
|
2015-03-12 23:35:58 +08:00
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValNumber(m_constStrArgFrameLow, false, true)));
|
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValNumber(m_constStrArgFrameHigh, false, true)));
|
2014-11-18 02:06:21 +08:00
|
|
|
return (bOk && ParseValidateCmdOptions());
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The command does work in this function.
|
|
|
|
// The command is likely to communicate with the LLDB SBDebugger in here.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListArguments::Execute(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICMDBASE_GETOPTION(pArgThread, OptionLong, m_constStrArgThread);
|
|
|
|
CMICMDBASE_GETOPTION(pArgPrintValues, Number, m_constStrArgPrintValues);
|
2015-02-07 02:08:24 +08:00
|
|
|
CMICMDBASE_GETOPTION(pArgNoValues, OptionLong, m_constStrArgNoValues);
|
|
|
|
CMICMDBASE_GETOPTION(pArgAllValues, OptionLong, m_constStrArgAllValues);
|
|
|
|
CMICMDBASE_GETOPTION(pArgSimpleValues, OptionLong, m_constStrArgSimpleValues);
|
2015-03-12 23:35:58 +08:00
|
|
|
CMICMDBASE_GETOPTION(pArgFrameLow, Number, m_constStrArgFrameLow);
|
|
|
|
CMICMDBASE_GETOPTION(pArgFrameHigh, Number, m_constStrArgFrameHigh);
|
2014-11-18 02:06:21 +08:00
|
|
|
|
|
|
|
// Retrieve the --thread option's thread ID (only 1)
|
|
|
|
MIuint64 nThreadId = UINT64_MAX;
|
|
|
|
if (pArgThread->GetFound())
|
|
|
|
{
|
|
|
|
if (!pArgThread->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nThreadId))
|
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_OPTION_NOT_FOUND), m_cmdData.strMiCmd.c_str(), m_constStrArgThread.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-07 02:08:24 +08:00
|
|
|
CMICmnLLDBDebugSessionInfo::VariableInfoFormat_e eVarInfoFormat;
|
|
|
|
if (pArgPrintValues->GetFound())
|
|
|
|
{
|
|
|
|
const MIuint nPrintValues = pArgPrintValues->GetValue();
|
|
|
|
if (nPrintValues >= CMICmnLLDBDebugSessionInfo::kNumVariableInfoFormats)
|
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_INVALID_PRINT_VALUES), m_cmdData.strMiCmd.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
eVarInfoFormat = static_cast<CMICmnLLDBDebugSessionInfo::VariableInfoFormat_e>(nPrintValues);
|
|
|
|
}
|
|
|
|
else if (pArgNoValues->GetFound())
|
|
|
|
eVarInfoFormat = CMICmnLLDBDebugSessionInfo::eVariableInfoFormat_NoValues;
|
|
|
|
else if (pArgAllValues->GetFound())
|
|
|
|
eVarInfoFormat = CMICmnLLDBDebugSessionInfo::eVariableInfoFormat_AllValues;
|
|
|
|
else if (pArgSimpleValues->GetFound())
|
|
|
|
eVarInfoFormat = CMICmnLLDBDebugSessionInfo::eVariableInfoFormat_SimpleValues;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_INVALID_PRINT_VALUES), m_cmdData.strMiCmd.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
2015-03-12 23:35:58 +08:00
|
|
|
MIuint nFrameLow = 0;
|
|
|
|
MIuint nFrameHigh = UINT32_MAX;
|
|
|
|
if (pArgFrameLow->GetFound() && pArgFrameHigh->GetFound())
|
|
|
|
{
|
|
|
|
nFrameLow = pArgFrameLow->GetValue();
|
|
|
|
nFrameHigh = pArgFrameHigh->GetValue() + 1;
|
|
|
|
}
|
|
|
|
else if (pArgFrameLow->GetFound() || pArgFrameHigh->GetFound())
|
|
|
|
{
|
|
|
|
// Only low-frame or high-frame was specified but both are required
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_THREAD_FRAME_RANGE_INVALID), m_cmdData.strMiCmd.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmnLLDBDebugSessionInfo &rSessionInfo(CMICmnLLDBDebugSessionInfo::Instance());
|
2015-02-03 18:05:54 +08:00
|
|
|
lldb::SBProcess sbProcess = rSessionInfo.GetProcess();
|
|
|
|
lldb::SBThread thread = (nThreadId != UINT64_MAX) ? sbProcess.GetThreadByIndexID(nThreadId) : sbProcess.GetSelectedThread();
|
2014-11-18 02:06:21 +08:00
|
|
|
m_bThreadInvalid = !thread.IsValid();
|
|
|
|
if (m_bThreadInvalid)
|
|
|
|
return MIstatus::success;
|
|
|
|
|
|
|
|
const lldb::StopReason eStopReason = thread.GetStopReason();
|
|
|
|
if ((eStopReason == lldb::eStopReasonNone) || (eStopReason == lldb::eStopReasonInvalid))
|
|
|
|
{
|
|
|
|
m_bThreadInvalid = true;
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
const MIuint nFrames = thread.GetNumFrames();
|
2015-03-12 23:35:58 +08:00
|
|
|
if (nFrameLow >= nFrames)
|
|
|
|
{
|
|
|
|
// The low-frame is larger than the actual number of frames
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_THREAD_FRAME_RANGE_INVALID), m_cmdData.strMiCmd.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
|
|
|
nFrameHigh = std::min(nFrameHigh, nFrames);
|
|
|
|
for (MIuint i = nFrameLow; i < nFrameHigh; i++)
|
2014-11-18 02:06:21 +08:00
|
|
|
{
|
|
|
|
lldb::SBFrame frame = thread.GetFrameAtIndex(i);
|
|
|
|
CMICmnMIValueList miValueList(true);
|
2014-12-09 02:07:40 +08:00
|
|
|
const MIuint maskVarTypes = CMICmnLLDBDebugSessionInfo::eVariableType_Arguments;
|
2015-02-13 19:53:50 +08:00
|
|
|
if (!rSessionInfo.MIResponseFormVariableInfo(frame, maskVarTypes, eVarInfoFormat, miValueList))
|
2014-11-18 02:06:21 +08:00
|
|
|
return MIstatus::failure;
|
|
|
|
const CMICmnMIValueConst miValueConst(CMIUtilString::Format("%d", i));
|
|
|
|
const CMICmnMIValueResult miValueResult("level", miValueConst);
|
|
|
|
CMICmnMIValueTuple miValueTuple(miValueResult);
|
|
|
|
const CMICmnMIValueResult miValueResult2("args", miValueList);
|
|
|
|
miValueTuple.Add(miValueResult2);
|
|
|
|
const CMICmnMIValueResult miValueResult3("frame", miValueTuple);
|
|
|
|
m_miValueList.Add(miValueResult3);
|
|
|
|
}
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The command prepares a MI Record Result
|
|
|
|
// for the work carried out in the Execute().
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListArguments::Acknowledge(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
if (m_bThreadInvalid)
|
|
|
|
{
|
|
|
|
// MI print "%s^done,stack-args=[]"
|
|
|
|
const CMICmnMIValueList miValueList(true);
|
|
|
|
const CMICmnMIValueResult miValueResult("stack-args", miValueList);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
// MI print "%s^done,stack-args=[frame={level=\"0\",args=[%s]},frame={level=\"1\",args=[%s]}]"
|
|
|
|
const CMICmnMIValueResult miValueResult4("stack-args", m_miValueList);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult4);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Required by the CMICmdFactory when registering *this command. The factory
|
|
|
|
// calls this function to create an instance of *this command.
|
|
|
|
// Type: Static method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMICmdBase * - Pointer to a new command.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdBase *
|
|
|
|
CMICmdCmdStackListArguments::CreateSelf(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return new CMICmdCmdStackListArguments();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMICmdCmdStackListLocals constructor.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdCmdStackListLocals::CMICmdCmdStackListLocals(void)
|
|
|
|
: m_bThreadInvalid(false)
|
|
|
|
, m_miValueList(true)
|
|
|
|
, m_constStrArgThread("thread")
|
|
|
|
, m_constStrArgFrame("frame")
|
|
|
|
, m_constStrArgPrintValues("print-values")
|
2015-02-07 02:08:24 +08:00
|
|
|
, m_constStrArgNoValues("no-values")
|
|
|
|
, m_constStrArgAllValues("all-values")
|
|
|
|
, m_constStrArgSimpleValues("simple-values")
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
// Command factory matches this name with that received from the stdin stream
|
|
|
|
m_strMiCmd = "stack-list-locals";
|
|
|
|
|
|
|
|
// Required by the CMICmdFactory when registering *this command
|
|
|
|
m_pSelfCreatorFn = &CMICmdCmdStackListLocals::CreateSelf;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: CMICmdCmdStackListLocals destructor.
|
|
|
|
// Type: Overrideable.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdCmdStackListLocals::~CMICmdCmdStackListLocals(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The parses the command line options
|
|
|
|
// arguments to extract values for each of those arguments.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListLocals::ParseArgs(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
bool bOk =
|
|
|
|
m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgThread, false, true, CMICmdArgValListBase::eArgValType_Number, 1)));
|
|
|
|
bOk = bOk &&
|
|
|
|
m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgFrame, false, true, CMICmdArgValListBase::eArgValType_Number, 1)));
|
2015-02-07 02:08:24 +08:00
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValNumber(m_constStrArgPrintValues, false, true)));
|
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgNoValues, false, true)));
|
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgAllValues, false, true)));
|
|
|
|
bOk = bOk && m_setCmdArgs.Add(*(new CMICmdArgValOptionLong(m_constStrArgSimpleValues, false, true)));
|
2014-11-18 02:06:21 +08:00
|
|
|
return (bOk && ParseValidateCmdOptions());
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The command does work in this function.
|
|
|
|
// The command is likely to communicate with the LLDB SBDebugger in here.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListLocals::Execute(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICMDBASE_GETOPTION(pArgThread, OptionLong, m_constStrArgThread);
|
|
|
|
CMICMDBASE_GETOPTION(pArgFrame, OptionLong, m_constStrArgFrame);
|
2015-02-07 02:08:24 +08:00
|
|
|
CMICMDBASE_GETOPTION(pArgPrintValues, Number, m_constStrArgPrintValues);
|
|
|
|
CMICMDBASE_GETOPTION(pArgNoValues, OptionLong, m_constStrArgNoValues);
|
|
|
|
CMICMDBASE_GETOPTION(pArgAllValues, OptionLong, m_constStrArgAllValues);
|
|
|
|
CMICMDBASE_GETOPTION(pArgSimpleValues, OptionLong, m_constStrArgSimpleValues);
|
2014-11-18 02:06:21 +08:00
|
|
|
|
|
|
|
// Retrieve the --thread option's thread ID (only 1)
|
|
|
|
MIuint64 nThreadId = UINT64_MAX;
|
|
|
|
if (pArgThread->GetFound())
|
|
|
|
{
|
|
|
|
if (!pArgThread->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nThreadId))
|
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_OPTION_NOT_FOUND), m_cmdData.strMiCmd.c_str(), m_constStrArgThread.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
}
|
2015-02-07 02:08:24 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
MIuint64 nFrame = UINT64_MAX;
|
|
|
|
if (pArgFrame->GetFound())
|
|
|
|
{
|
|
|
|
if (!pArgFrame->GetExpectedOption<CMICmdArgValNumber, MIuint64>(nFrame))
|
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_OPTION_NOT_FOUND), m_cmdData.strMiCmd.c_str(), m_constStrArgFrame.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-07 02:08:24 +08:00
|
|
|
CMICmnLLDBDebugSessionInfo::VariableInfoFormat_e eVarInfoFormat;
|
|
|
|
if (pArgPrintValues->GetFound())
|
|
|
|
{
|
|
|
|
const MIuint nPrintValues = pArgPrintValues->GetValue();
|
|
|
|
if (nPrintValues >= CMICmnLLDBDebugSessionInfo::kNumVariableInfoFormats)
|
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_INVALID_PRINT_VALUES), m_cmdData.strMiCmd.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
eVarInfoFormat = static_cast<CMICmnLLDBDebugSessionInfo::VariableInfoFormat_e>(nPrintValues);
|
|
|
|
}
|
|
|
|
else if (pArgNoValues->GetFound())
|
|
|
|
eVarInfoFormat = CMICmnLLDBDebugSessionInfo::eVariableInfoFormat_NoValues;
|
|
|
|
else if (pArgAllValues->GetFound())
|
|
|
|
eVarInfoFormat = CMICmnLLDBDebugSessionInfo::eVariableInfoFormat_AllValues;
|
|
|
|
else if (pArgSimpleValues->GetFound())
|
|
|
|
eVarInfoFormat = CMICmnLLDBDebugSessionInfo::eVariableInfoFormat_SimpleValues;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
SetError(CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_INVALID_PRINT_VALUES), m_cmdData.strMiCmd.c_str()));
|
|
|
|
return MIstatus::failure;
|
|
|
|
}
|
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmnLLDBDebugSessionInfo &rSessionInfo(CMICmnLLDBDebugSessionInfo::Instance());
|
2015-02-03 18:05:54 +08:00
|
|
|
lldb::SBProcess sbProcess = rSessionInfo.GetProcess();
|
|
|
|
lldb::SBThread thread = (nThreadId != UINT64_MAX) ? sbProcess.GetThreadByIndexID(nThreadId) : sbProcess.GetSelectedThread();
|
2014-11-18 02:06:21 +08:00
|
|
|
m_bThreadInvalid = !thread.IsValid();
|
|
|
|
if (m_bThreadInvalid)
|
|
|
|
return MIstatus::success;
|
|
|
|
|
|
|
|
const lldb::StopReason eStopReason = thread.GetStopReason();
|
|
|
|
if ((eStopReason == lldb::eStopReasonNone) || (eStopReason == lldb::eStopReasonInvalid))
|
|
|
|
{
|
|
|
|
m_bThreadInvalid = true;
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
lldb::SBFrame frame = (nFrame != UINT64_MAX) ? thread.GetFrameAtIndex(nFrame) : thread.GetSelectedFrame();
|
2015-02-07 02:08:24 +08:00
|
|
|
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmnMIValueList miValueList(true);
|
2014-12-09 02:07:40 +08:00
|
|
|
const MIuint maskVarTypes = CMICmnLLDBDebugSessionInfo::eVariableType_Locals;
|
2015-02-07 02:08:24 +08:00
|
|
|
if (!rSessionInfo.MIResponseFormVariableInfo(frame, maskVarTypes, eVarInfoFormat, miValueList))
|
2014-11-18 02:06:21 +08:00
|
|
|
return MIstatus::failure;
|
|
|
|
|
|
|
|
m_miValueList = miValueList;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: The invoker requires this function. The command prepares a MI Record Result
|
|
|
|
// for the work carried out in the Execute().
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Functional succeeded.
|
|
|
|
// MIstatus::failure - Functional failed.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
bool
|
|
|
|
CMICmdCmdStackListLocals::Acknowledge(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
if (m_bThreadInvalid)
|
|
|
|
{
|
|
|
|
// MI print "%s^done,locals=[]"
|
|
|
|
const CMICmnMIValueList miValueList(true);
|
|
|
|
const CMICmnMIValueResult miValueResult("locals", miValueList);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
// MI print "%s^done,locals=[%s]"
|
|
|
|
const CMICmnMIValueResult miValueResult("locals", m_miValueList);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
2014-11-18 02:06:21 +08:00
|
|
|
// Details: Required by the CMICmdFactory when registering *this command. The factory
|
|
|
|
// calls this function to create an instance of *this command.
|
|
|
|
// Type: Static method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMICmdBase * - Pointer to a new command.
|
|
|
|
// Throws: None.
|
2014-05-16 18:51:01 +08:00
|
|
|
//--
|
2014-11-18 02:06:21 +08:00
|
|
|
CMICmdBase *
|
|
|
|
CMICmdCmdStackListLocals::CreateSelf(void)
|
2014-05-16 18:51:01 +08:00
|
|
|
{
|
2014-11-18 02:06:21 +08:00
|
|
|
return new CMICmdCmdStackListLocals();
|
2014-05-16 18:51:01 +08:00
|
|
|
}
|
2015-02-20 03:26:52 +08:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
//---------------------------------------------------------------------------------------
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: CMICmdCmdStackSelectFrame constructor.
|
|
|
|
// Type: Method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
CMICmdCmdStackSelectFrame::CMICmdCmdStackSelectFrame(void)
|
|
|
|
: m_bFrameInvalid(false)
|
|
|
|
, m_constStrArgFrame("frame")
|
|
|
|
{
|
|
|
|
// Command factory matches this name with that received from the stdin stream
|
|
|
|
m_strMiCmd = "stack-select-frame";
|
|
|
|
|
|
|
|
// Required by the CMICmdFactory when registering *this command
|
|
|
|
m_pSelfCreatorFn = &CMICmdCmdStackSelectFrame::CreateSelf;
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: CMICmdCmdStackSelectFrame destructor.
|
|
|
|
// Type: Overrideable.
|
|
|
|
// Args: None.
|
|
|
|
// Return: None.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
CMICmdCmdStackSelectFrame::~CMICmdCmdStackSelectFrame(void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: The invoker requires this function. The parses the command line options
|
|
|
|
// arguments to extract values for each of those arguments.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Function succeeded.
|
|
|
|
// MIstatus::failure - Function failed.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
bool
|
|
|
|
CMICmdCmdStackSelectFrame::ParseArgs(void)
|
|
|
|
{
|
|
|
|
bool bOk = m_setCmdArgs.Add(*(new CMICmdArgValNumber(m_constStrArgFrame, true, false)));
|
|
|
|
return (bOk && ParseValidateCmdOptions());
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: The invoker requires this function. The command does work in this function.
|
|
|
|
// The command is likely to communicate with the LLDB SBDebugger in here.
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Function succeeded.
|
|
|
|
// MIstatus::failure - Function failed.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
bool
|
|
|
|
CMICmdCmdStackSelectFrame::Execute(void)
|
|
|
|
{
|
|
|
|
CMICMDBASE_GETOPTION(pArgFrame, Number, m_constStrArgFrame);
|
|
|
|
|
|
|
|
CMICmnLLDBDebugSessionInfo &rSessionInfo(CMICmnLLDBDebugSessionInfo::Instance());
|
|
|
|
lldb::SBThread sbThread = rSessionInfo.GetProcess().GetSelectedThread();
|
|
|
|
|
|
|
|
const MIuint nFrameId = pArgFrame->GetValue();
|
|
|
|
m_bFrameInvalid = (nFrameId >= sbThread.GetNumFrames());
|
|
|
|
if (m_bFrameInvalid)
|
|
|
|
return MIstatus::success;
|
|
|
|
|
|
|
|
lldb::SBFrame sbFrame = sbThread.SetSelectedFrame(nFrameId);
|
|
|
|
m_bFrameInvalid = !sbFrame.IsValid();
|
|
|
|
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: The invoker requires this function. The command prepares a MI Record Result
|
|
|
|
// for the work carried out in the Execute().
|
|
|
|
// Type: Overridden.
|
|
|
|
// Args: None.
|
|
|
|
// Return: MIstatus::success - Function succeeded.
|
|
|
|
// MIstatus::failure - Function failed.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
bool
|
|
|
|
CMICmdCmdStackSelectFrame::Acknowledge(void)
|
|
|
|
{
|
|
|
|
if (m_bFrameInvalid)
|
|
|
|
{
|
|
|
|
// MI print "%s^error,msg=\"Command '-stack-select-frame'. Frame ID invalid\""
|
|
|
|
const CMICmnMIValueConst miValueConst(
|
|
|
|
CMIUtilString::Format(MIRSRC(IDS_CMD_ERR_FRAME_INVALID), m_cmdData.strMiCmd.c_str()));
|
|
|
|
const CMICmnMIValueResult miValueResult("msg", miValueConst);
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Error, miValueResult);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
const CMICmnMIResultRecord miRecordResult(m_cmdData.strMiCmdToken, CMICmnMIResultRecord::eResultClass_Done);
|
|
|
|
m_miResultRecord = miRecordResult;
|
|
|
|
|
|
|
|
return MIstatus::success;
|
|
|
|
}
|
|
|
|
|
|
|
|
//++ ------------------------------------------------------------------------------------
|
|
|
|
// Details: Required by the CMICmdFactory when registering *this command. The factory
|
|
|
|
// calls this function to create an instance of *this command.
|
|
|
|
// Type: Static method.
|
|
|
|
// Args: None.
|
|
|
|
// Return: CMICmdBase * - Pointer to a new command.
|
|
|
|
// Throws: None.
|
|
|
|
//--
|
|
|
|
CMICmdBase *
|
|
|
|
CMICmdCmdStackSelectFrame::CreateSelf(void)
|
|
|
|
{
|
|
|
|
return new CMICmdCmdStackSelectFrame();
|
|
|
|
}
|