Added DwarfTargetInterface::ReadValueFromMemory() version with address
space + address pair. git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31577 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -116,6 +116,13 @@ struct DwarfImageDebugInfo::UnwindTargetInterface : DwarfTargetInterface {
|
||||
== B_OK;
|
||||
}
|
||||
|
||||
virtual bool ReadValueFromMemory(target_addr_t addressSpace,
|
||||
target_addr_t address, uint32 valueType, BVariant& _value) const
|
||||
{
|
||||
return fArchitecture->ReadValueFromMemory(addressSpace, address,
|
||||
valueType, _value) == B_OK;
|
||||
}
|
||||
|
||||
private:
|
||||
const Register* _RegisterAt(uint32 dwarfIndex) const
|
||||
{
|
||||
|
||||
@@ -33,6 +33,10 @@ public:
|
||||
virtual bool ReadValueFromMemory(target_addr_t address,
|
||||
uint32 valueType, BVariant& _value) const
|
||||
= 0;
|
||||
virtual bool ReadValueFromMemory(target_addr_t addressSpace,
|
||||
target_addr_t address,
|
||||
uint32 valueType, BVariant& _value) const
|
||||
= 0;
|
||||
};
|
||||
|
||||
|
||||
|
||||
Reference in New Issue
Block a user