mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-01 12:14:50 +01:00
arm_types: Split out LocationDescriptor (#20)
This isn't really an ARM-specific type, since it's used to indicate a Block location.
This commit is contained in:
parent
84336cf29d
commit
6d53bb6d7e
19 changed files with 175 additions and 153 deletions
|
|
@ -15,8 +15,8 @@
|
|||
|
||||
namespace Dynarmic {
|
||||
|
||||
namespace Arm {
|
||||
struct LocationDescriptor;
|
||||
namespace IR {
|
||||
class LocationDescriptor;
|
||||
}
|
||||
|
||||
class Jit final {
|
||||
|
|
@ -76,7 +76,7 @@ public:
|
|||
* @param descriptor Basic block descriptor.
|
||||
* @return A string containing disassembly of the host machine code produced for the basic block.
|
||||
*/
|
||||
std::string Disassemble(const Arm::LocationDescriptor& descriptor);
|
||||
std::string Disassemble(const IR::LocationDescriptor& descriptor);
|
||||
|
||||
private:
|
||||
bool is_executing = false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue