File indexing completed on 2026-05-10 08:42:45
0001
0002
0003
0004
0005
0006
0007
0008
0009 #ifndef LLDB_CORE_DUMPREGISTERVALUE_H
0010 #define LLDB_CORE_DUMPREGISTERVALUE_H
0011
0012 #include "lldb/lldb-enumerations.h"
0013 #include "lldb/lldb-forward.h"
0014 #include <cstdint>
0015
0016 namespace lldb_private {
0017
0018 class ExecutionContextScope;
0019 class RegisterValue;
0020 struct RegisterInfo;
0021 class Stream;
0022
0023
0024
0025
0026
0027 void DumpRegisterValue(const RegisterValue ®_val, Stream &s,
0028 const RegisterInfo ®_info, bool prefix_with_name,
0029 bool prefix_with_alt_name, lldb::Format format,
0030 uint32_t reg_name_right_align_at = 0,
0031 ExecutionContextScope *exe_scope = nullptr,
0032 bool print_flags = false,
0033 lldb::TargetSP target_sp = nullptr);
0034
0035 }
0036
0037 #endif