mirror of
https://git.suyu.dev/suyu/dynarmic.git
synced 2026-01-04 13:44:31 +01:00
Final A32 refactor
This commit is contained in:
parent
455757d7b6
commit
9d15e0a8e1
29 changed files with 447 additions and 342 deletions
|
|
@ -4,7 +4,7 @@
|
|||
* General Public License version 2 or any later version.
|
||||
*/
|
||||
|
||||
#include <dynarmic/callbacks.h>
|
||||
#include <dynarmic/A32/callbacks.h>
|
||||
|
||||
#include "frontend/ir/basic_block.h"
|
||||
#include "frontend/ir/opcodes.h"
|
||||
|
|
@ -13,7 +13,7 @@
|
|||
namespace Dynarmic {
|
||||
namespace Optimization {
|
||||
|
||||
void ConstantPropagation(IR::Block& block, const UserCallbacks::Memory& memory_callbacks) {
|
||||
void ConstantPropagation(IR::Block& block, const A32::UserCallbacks::Memory& memory_callbacks) {
|
||||
for (auto& inst : block) {
|
||||
switch (inst.GetOpcode()) {
|
||||
case IR::Opcode::A32SetCFlag: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue