mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-02-18 22:42:58 +00: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:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user