Merge pull request #1358 from Sonicadvance1/ARMv7-NOP
Changes from ARMv6 NOP to ARMv7 NOP.
This commit is contained in:
commit
eef9453abe
|
@ -370,7 +370,7 @@ void ARMXEmitter::NOP(int count)
|
||||||
{
|
{
|
||||||
for (int i = 0; i < count; i++)
|
for (int i = 0; i < count; i++)
|
||||||
{
|
{
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -395,7 +395,7 @@ FixupBranch ARMXEmitter::B()
|
||||||
branch.ptr = code;
|
branch.ptr = code;
|
||||||
branch.condition = condition;
|
branch.condition = condition;
|
||||||
//We'll write NOP here for now.
|
//We'll write NOP here for now.
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
return branch;
|
return branch;
|
||||||
}
|
}
|
||||||
FixupBranch ARMXEmitter::BL()
|
FixupBranch ARMXEmitter::BL()
|
||||||
|
@ -405,7 +405,7 @@ FixupBranch ARMXEmitter::BL()
|
||||||
branch.ptr = code;
|
branch.ptr = code;
|
||||||
branch.condition = condition;
|
branch.condition = condition;
|
||||||
//We'll write NOP here for now.
|
//We'll write NOP here for now.
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
return branch;
|
return branch;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -416,7 +416,7 @@ FixupBranch ARMXEmitter::B_CC(CCFlags Cond)
|
||||||
branch.ptr = code;
|
branch.ptr = code;
|
||||||
branch.condition = Cond << 28;
|
branch.condition = Cond << 28;
|
||||||
//We'll write NOP here for now.
|
//We'll write NOP here for now.
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
return branch;
|
return branch;
|
||||||
}
|
}
|
||||||
void ARMXEmitter::B_CC(CCFlags Cond, const void *fnptr)
|
void ARMXEmitter::B_CC(CCFlags Cond, const void *fnptr)
|
||||||
|
@ -434,7 +434,7 @@ FixupBranch ARMXEmitter::BL_CC(CCFlags Cond)
|
||||||
branch.ptr = code;
|
branch.ptr = code;
|
||||||
branch.condition = Cond << 28;
|
branch.condition = Cond << 28;
|
||||||
//We'll write NOP here for now.
|
//We'll write NOP here for now.
|
||||||
Write32(condition | 0x01A00000);
|
Write32(condition | 0x0320F000);
|
||||||
return branch;
|
return branch;
|
||||||
}
|
}
|
||||||
void ARMXEmitter::SetJumpTarget(FixupBranch const &branch)
|
void ARMXEmitter::SetJumpTarget(FixupBranch const &branch)
|
||||||
|
|
Loading…
Reference in New Issue