The RegisterInfo descriptors for the convenience registers can specify an offset to be added to the offset as derived from

the value_regs field, which is useful for future expansion purposes.  As of now, we have:

    calculated_offset_of_eax = offset_of_rax + (offset_of_eax_from_the_descriptor which is 0)

llvm-svn: 157275
This commit is contained in:
Johnny Chen 2012-05-22 18:59:38 +00:00
parent d42b92f5c3
commit b42b05e6de
1 changed files with 1 additions and 1 deletions

View File

@ -990,7 +990,7 @@ GDBRemoteDynamicRegisterInfo::Addx86_64ConvenienceRegisters()
{
// The name matches the existing primordial entry.
// Find and assign the offset, and then add this composite register entry.
g_conv_register_infos[i].byte_offset = reg_info->byte_offset;
g_conv_register_infos[i].byte_offset = reg_info->byte_offset + g_conv_register_infos[i].byte_offset;
// Update the value_regs and the kinds fields in order to delegate to the primordial register.
g_conv_register_infos[i].value_regs[0] = j;
g_conv_register_infos[i].kinds[eRegisterKindLLDB] = ++reg_kind;