GP-4643: Add a JIT-accelerated p-code emulator (API/scripting only)

This commit is contained in:
Dan 2025-01-03 10:27:38 -05:00
parent 20285e267d
commit a8fae1fe5b
320 changed files with 32638 additions and 630 deletions

View file

@ -270,14 +270,14 @@ public class ModelingScript extends GhidraScript {
}
@Override
public Expr modBeforeStore(int sizeout, int sizeinAddress, Expr inAddress, int sizeinValue,
Expr inValue) {
public Expr modBeforeStore(int sizeinOffset, AddressSpace space, Expr inOffset,
int sizeinValue, Expr inValue) {
return inValue;
}
@Override
public Expr modAfterLoad(int sizeout, int sizeinAddress, Expr inAddress, int sizeinValue,
Expr inValue) {
public Expr modAfterLoad(int sizeinOffset, AddressSpace space, Expr inOffset,
int sizeinValue, Expr inValue) {
return inValue;
}