|
LLDB mainline
|
#include "CommandObjectRegister.h"#include "lldb/Core/Debugger.h"#include "lldb/Core/DumpRegisterInfo.h"#include "lldb/Core/DumpRegisterValue.h"#include "lldb/Host/OptionParser.h"#include "lldb/Interpreter/CommandInterpreter.h"#include "lldb/Interpreter/CommandOptionArgumentTable.h"#include "lldb/Interpreter/CommandReturnObject.h"#include "lldb/Interpreter/OptionGroupFormat.h"#include "lldb/Interpreter/OptionValueArray.h"#include "lldb/Interpreter/OptionValueBoolean.h"#include "lldb/Interpreter/OptionValueUInt64.h"#include "lldb/Interpreter/Options.h"#include "lldb/Target/ExecutionContext.h"#include "lldb/Target/Process.h"#include "lldb/Target/RegisterContext.h"#include "lldb/Target/SectionLoadList.h"#include "lldb/Target/Thread.h"#include "lldb/Utility/Args.h"#include "lldb/Utility/DataExtractor.h"#include "lldb/Utility/RegisterValue.h"#include "llvm/Support/Errno.h"#include "CommandOptions.inc"Go to the source code of this file.
Classes | |
| class | CommandObjectRegisterRead |
| class | CommandObjectRegisterRead::CommandOptions |
| class | CommandObjectRegisterWrite |
| class | CommandObjectRegisterInfo |
Macros | |
| #define | LLDB_OPTIONS_register_read |
Functions | |
| static size_t | GetNameSize (const RegisterInfo *reg_info, bool use_primary_name) |
| static size_t | ComputeLongestRegisterName (RegisterContext *reg_ctx, const RegisterSet ®_set, bool use_primary_name, bool primitive_only) |
| static size_t | ComputeLongestRegisterName (Args &command, RegisterContext *reg_ctx, bool use_primary_name) |
| #define LLDB_OPTIONS_register_read |
Definition at line 36 of file CommandObjectRegister.cpp.
|
static |
Definition at line 68 of file CommandObjectRegister.cpp.
References GetNameSize(), and lldb_private::RegisterContext::GetRegisterInfoByName().
|
static |
Definition at line 44 of file CommandObjectRegister.cpp.
References GetNameSize(), lldb_private::RegisterContext::GetRegisterInfoAtIndex(), lldb_private::RegisterSet::num_registers, and lldb_private::RegisterSet::registers.
Referenced by CommandObjectRegisterRead::DoExecute(), and CommandObjectRegisterRead::DumpRegisterSet().
|
static |
Definition at line 39 of file CommandObjectRegister.cpp.
References lldb_private::RegisterInfo::alt_name, and lldb_private::RegisterInfo::name.
Referenced by ComputeLongestRegisterName(), and ComputeLongestRegisterName().