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

References

tools/lldb/source/Plugins/Process/Utility/RegisterContextLLDB.cpp
 1154       regloc = iterator->second;
 1258           regloc = new_regloc;
 1366       regloc = new_regloc;
 1412       regloc.type = UnwindLLDB::RegisterLocation::eRegisterInRegister;
 1413       regloc.location.register_number = regnum.GetAsKind(eRegisterKindLLDB);
 1414       m_registers[regnum.GetAsKind(eRegisterKindLLDB)] = regloc;
 1425     regloc.type = UnwindLLDB::RegisterLocation::eRegisterValueInferred;
 1426     regloc.location.inferred_value = m_cfa + offset;
 1427     m_registers[regnum.GetAsKind(eRegisterKindLLDB)] = regloc;
 1431                  regloc.location.inferred_value);
 1437     regloc.type = UnwindLLDB::RegisterLocation::eRegisterSavedAtMemoryLocation;
 1438     regloc.location.target_memory_location = m_cfa + offset;
 1439     m_registers[regnum.GetAsKind(eRegisterKindLLDB)] = regloc;
 1443                  regloc.location.target_memory_location);
 1452     regloc.type = UnwindLLDB::RegisterLocation::eRegisterValueInferred;
 1453     regloc.location.inferred_value = m_afa + offset;
 1454     m_registers[regnum.GetAsKind(eRegisterKindLLDB)] = regloc;
 1458                  regloc.location.inferred_value);
 1467     regloc.type = UnwindLLDB::RegisterLocation::eRegisterSavedAtMemoryLocation;
 1468     regloc.location.target_memory_location = m_afa + offset;
 1469     m_registers[regnum.GetAsKind(eRegisterKindLLDB)] = regloc;
 1473                  regloc.location.target_memory_location);
 1487     regloc.type = UnwindLLDB::RegisterLocation::eRegisterInRegister;
 1488     regloc.location.register_number = row_regnum.GetAsKind(eRegisterKindLLDB);
 1489     m_registers[regnum.GetAsKind(eRegisterKindLLDB)] = regloc;
 1515         regloc.type = UnwindLLDB::RegisterLocation::eRegisterValueInferred;
 1516         regloc.location.inferred_value = val;
 1517         m_registers[regnum.GetAsKind(eRegisterKindLLDB)] = regloc;
 1523         regloc.type =
 1525         regloc.location.target_memory_location = val;
 1526         m_registers[regnum.GetAsKind(eRegisterKindLLDB)] = regloc;