reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/lldb/source/API/SBFrame.cpp
  641                    (reg_info->alt_name &&
  642                     strcasecmp(reg_info->alt_name, name) == 0))) {
  963                  (reg_info->alt_name &&
  964                   strcasecmp(reg_info->alt_name, name) == 0))) {
tools/lldb/source/Core/Disassembler.cpp
 1424              op.m_register == ConstString(info.alt_name)));
tools/lldb/source/Core/DumpRegisterValue.cpp
   41       } else if (reg_info->alt_name) {
   42         s->Printf(fmt.c_str(), reg_info->alt_name);
   50       if (reg_info->alt_name) {
   51         s->Printf(fmt.c_str(), reg_info->alt_name);
tools/lldb/source/Core/ValueObject.cpp
  392             else if (reg_info->alt_name)
  393               m_location_str = reg_info->alt_name;
tools/lldb/source/Core/ValueObjectRegister.cpp
  226     else if (reg_info->alt_name)
  227       m_name.SetCString(reg_info->alt_name);
tools/lldb/source/Host/common/NativeRegisterContext.cpp
   64         reg_name.equals_lower(reg_info->alt_name))
tools/lldb/source/Plugins/ABI/MacOSX-arm/ABIMacOSX_arm.cpp
 1308       if (g_register_infos[i].alt_name)
 1309         g_register_infos[i].alt_name =
 1310             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/MacOSX-arm64/ABIMacOSX_arm64.cpp
 1649       if (g_register_infos[i].alt_name)
 1650         g_register_infos[i].alt_name =
 1651             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/MacOSX-i386/ABIMacOSX_i386.cpp
  695       if (g_register_infos[i].alt_name)
  696         g_register_infos[i].alt_name =
  697             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/SysV-arm/ABISysV_arm.cpp
 1309       if (g_register_infos[i].alt_name)
 1310         g_register_infos[i].alt_name =
 1311             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/SysV-arm64/ABISysV_arm64.cpp
 1647       if (g_register_infos[i].alt_name)
 1648         g_register_infos[i].alt_name =
 1649             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/SysV-hexagon/ABISysV_hexagon.cpp
  988       if (g_register_infos[i].alt_name)
  989         g_register_infos[i].alt_name =
  990             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/SysV-i386/ABISysV_i386.cpp
  186       if (g_register_infos[i].alt_name)
  187         g_register_infos[i].alt_name =
  188             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/SysV-s390x/ABISysV_s390x.cpp
  187       if (g_register_infos[i].alt_name)
  188         g_register_infos[i].alt_name =
  189             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/SysV-x86_64/ABISysV_x86_64.cpp
  203       if (g_register_infos[i].alt_name)
  204         g_register_infos[i].alt_name =
  205             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/ABI/Windows-x86_64/ABIWindows_x86_64.cpp
 1071       if (g_register_infos[i].alt_name)
 1072         g_register_infos[i].alt_name =
 1073             ConstString(g_register_infos[i].alt_name).GetCString();
tools/lldb/source/Plugins/Instruction/ARM/EmulateInstructionARM.cpp
  116     reg_info.alt_name = "r13";
  121     reg_info.alt_name = "r14";
  126     reg_info.alt_name = "r15";
tools/lldb/source/Plugins/Instruction/MIPS/EmulateInstructionMIPS.cpp
  651     reg_info.alt_name = GetRegisterName(reg_num, true);
tools/lldb/source/Plugins/Instruction/MIPS64/EmulateInstructionMIPS64.cpp
  638     reg_info.alt_name = GetRegisterName(reg_num, true);
tools/lldb/source/Plugins/Process/Utility/DynamicRegisterInfo.cpp
  115     reg_info.alt_name = alt_name_val.GetCString();
  408   reg_info.alt_name = reg_alt_name.AsCString(nullptr);
  707     if (m_regs[i].alt_name)
  708       s.Printf(", alt-name = %s", m_regs[i].alt_name);
tools/lldb/source/Plugins/Process/Utility/RegisterContextDummy.cpp
   47   m_pc_reg_info.alt_name = "pc";
tools/lldb/source/Plugins/Process/Utility/RegisterContextHistory.cpp
   48   m_pc_reg_info.alt_name = "pc";
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteCommunicationServerLLGS.cpp
 1693   if (reg_info->alt_name && reg_info->alt_name[0]) {
 1693   if (reg_info->alt_name && reg_info->alt_name[0]) {
 1695     response.PutCString(reg_info->alt_name);
tools/lldb/source/Plugins/Process/gdb-remote/GDBRemoteRegisterContext.cpp
  902       if (g_register_infos[i].alt_name && g_register_infos[i].alt_name[0])
  902       if (g_register_infos[i].alt_name && g_register_infos[i].alt_name[0])
  903         alt_name.SetCString(g_register_infos[i].alt_name);
tools/lldb/source/Target/ABI.cpp
   57       if (register_info_array[i].alt_name == unique_name_cstr) {
tools/lldb/source/Target/RegisterContext.cpp
   62         reg_name.equals_lower(reg_info->alt_name))
tools/lldb/unittests/Process/minidump/RegisterContextMinidumpTest.cpp
  154   llvm::StringRef alt_name(info->alt_name);
tools/lldb/unittests/tools/lldb-server/tests/MessageObjects.cpp
  166   Info.alt_name = ConstString(Elements["alt-name"]).GetCString();