Rename lldb registers to contain lldb_ prefix.
authorZachary Turner <zturner@google.com>
Fri, 21 Nov 2014 02:00:21 +0000 (02:00 +0000)
committerZachary Turner <zturner@google.com>
Fri, 21 Nov 2014 02:00:21 +0000 (02:00 +0000)
commit7f013bcd60f500cb58d400f7a4ced9496fbebfff
tree1852afff8829f5166026541b875f13cfa569c4e4
parentb2dd9529eb56c476a27cd5d40437ae9fa766c3a7
Rename lldb registers to contain lldb_ prefix.

LLDB supports many different register numbering schemes, and these
are typically prefixed with an indicator that lets the user know
what numbering scheme is used.  The gcc numbering scheme is
prefixed with gcc, and there are similar ones for dwarf, gdb,
and gcc_dwarf.

LLDB also contains its own internal numbering scheme, but the enum
for LLDB's numbering scheme was prefixed differently.  This patch
changes the names of these enums to use the same naming scheme for
the enum values as the rest of the register kinds by removing gpr_
and fpu_ prefixes, and instead using lldb_ prefixes for all enum
values.

Differential Revision: http://reviews.llvm.org/D6351
Reviewed by: Greg Clayton

llvm-svn: 222495
lldb/source/Plugins/Process/Linux/NativeRegisterContextLinux_x86_64.cpp
lldb/source/Plugins/Process/Utility/RegisterContextPOSIX_x86.cpp
lldb/source/Plugins/Process/Utility/RegisterInfos_i386.h
lldb/source/Plugins/Process/Utility/RegisterInfos_x86_64.h
lldb/source/Plugins/Process/Utility/lldb-x86-register-enums.h
lldb/source/Plugins/Process/Windows/RegisterContextWindows_x86.cpp