evm
Version:
An ethereum virtual machine (EVM) bytecode decompiler
46 lines (41 loc) • 1.32 kB
text/typescript
import EVM from '../classes/evm.class';
import Opcode from '../interfaces/opcode.interface';
import * as BigNumber from '../../node_modules/big-integer';
import stringify from '../utils/stringify';
export class CALLDATALOAD {
readonly name: string;
readonly type?: string;
readonly returntype?: string;
readonly wrapped: boolean;
readonly location: any;
constructor(location: any) {
this.name = 'CALLDATALOAD';
this.wrapped = false;
this.location = location;
}
toString() {
if (BigNumber.isInstance(this.location) && this.location.isZero()) {
return 'msg.data';
} else if (
BigNumber.isInstance(this.location) &&
this.location
.subtract(4)
.mod(32)
.isZero()
) {
return (
'_arg' +
this.location
.subtract(4)
.divide(32)
.toString()
);
} else {
return 'msg.data[' + stringify(this.location) + ']';
}
}
}
export default (opcode: Opcode, state: EVM): void => {
const startLocation = state.stack.pop();
state.stack.push(new CALLDATALOAD(startLocation));
};