@aztec/simulator 4.0.0-nightly.20260112 → 4.0.0-nightly.20260113
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dest/public/avm/opcodes/accrued_substate.d.ts +15 -15
- package/dest/public/avm/opcodes/accrued_substate.d.ts.map +1 -1
- package/dest/public/avm/opcodes/accrued_substate.js +28 -28
- package/dest/public/avm/opcodes/arithmetic.js +1 -1
- package/dest/public/avm/opcodes/bitwise.d.ts +3 -3
- package/dest/public/avm/opcodes/bitwise.d.ts.map +1 -1
- package/dest/public/avm/opcodes/bitwise.js +5 -5
- package/dest/public/avm/opcodes/comparators.js +1 -1
- package/dest/public/avm/opcodes/contract.d.ts +3 -3
- package/dest/public/avm/opcodes/contract.d.ts.map +1 -1
- package/dest/public/avm/opcodes/contract.js +4 -4
- package/dest/public/avm/opcodes/control_flow.d.ts +3 -3
- package/dest/public/avm/opcodes/control_flow.d.ts.map +1 -1
- package/dest/public/avm/opcodes/control_flow.js +4 -4
- package/dest/public/avm/opcodes/conversion.d.ts +3 -3
- package/dest/public/avm/opcodes/conversion.d.ts.map +1 -1
- package/dest/public/avm/opcodes/conversion.js +4 -4
- package/dest/public/avm/opcodes/ec_add.d.ts +3 -3
- package/dest/public/avm/opcodes/ec_add.d.ts.map +1 -1
- package/dest/public/avm/opcodes/ec_add.js +4 -4
- package/dest/public/avm/opcodes/environment_getters.d.ts +3 -3
- package/dest/public/avm/opcodes/environment_getters.d.ts.map +1 -1
- package/dest/public/avm/opcodes/environment_getters.js +4 -4
- package/dest/public/avm/opcodes/external_calls.d.ts +9 -9
- package/dest/public/avm/opcodes/external_calls.d.ts.map +1 -1
- package/dest/public/avm/opcodes/external_calls.js +16 -16
- package/dest/public/avm/opcodes/hashing.d.ts +7 -7
- package/dest/public/avm/opcodes/hashing.d.ts.map +1 -1
- package/dest/public/avm/opcodes/hashing.js +12 -12
- package/dest/public/avm/opcodes/instruction_impl.d.ts +4 -4
- package/dest/public/avm/opcodes/instruction_impl.d.ts.map +1 -1
- package/dest/public/avm/opcodes/instruction_impl.js +4 -4
- package/dest/public/avm/opcodes/memory.d.ts +13 -13
- package/dest/public/avm/opcodes/memory.d.ts.map +1 -1
- package/dest/public/avm/opcodes/memory.js +24 -24
- package/dest/public/avm/opcodes/misc.d.ts +3 -3
- package/dest/public/avm/opcodes/misc.d.ts.map +1 -1
- package/dest/public/avm/opcodes/misc.js +4 -4
- package/dest/public/avm/opcodes/storage.d.ts +5 -5
- package/dest/public/avm/opcodes/storage.d.ts.map +1 -1
- package/dest/public/avm/opcodes/storage.js +9 -9
- package/dest/public/fixtures/custom_bytecode_tests.d.ts +1 -1
- package/dest/public/fixtures/custom_bytecode_tests.d.ts.map +1 -1
- package/dest/public/fixtures/custom_bytecode_tests.js +18 -18
- package/dest/public/fixtures/minimal_public_tx.js +2 -2
- package/dest/public/fixtures/opcode_spammer.d.ts +1 -1
- package/dest/public/fixtures/opcode_spammer.d.ts.map +1 -1
- package/dest/public/fixtures/opcode_spammer.js +76 -76
- package/package.json +16 -16
- package/src/public/avm/opcodes/accrued_substate.ts +14 -14
- package/src/public/avm/opcodes/arithmetic.ts +1 -1
- package/src/public/avm/opcodes/bitwise.ts +3 -3
- package/src/public/avm/opcodes/comparators.ts +1 -1
- package/src/public/avm/opcodes/contract.ts +3 -3
- package/src/public/avm/opcodes/control_flow.ts +2 -2
- package/src/public/avm/opcodes/conversion.ts +3 -3
- package/src/public/avm/opcodes/ec_add.ts +2 -2
- package/src/public/avm/opcodes/environment_getters.ts +3 -3
- package/src/public/avm/opcodes/external_calls.ts +9 -9
- package/src/public/avm/opcodes/hashing.ts +6 -6
- package/src/public/avm/opcodes/instruction_impl.ts +2 -2
- package/src/public/avm/opcodes/memory.ts +18 -18
- package/src/public/avm/opcodes/misc.ts +2 -2
- package/src/public/avm/opcodes/storage.ts +7 -7
- package/src/public/fixtures/custom_bytecode_tests.ts +27 -18
- package/src/public/fixtures/minimal_public_tx.ts +2 -2
- package/src/public/fixtures/opcode_spammer.ts +164 -77
|
@@ -19,7 +19,7 @@ export class NoteHashExists extends Instruction {
|
|
|
19
19
|
];
|
|
20
20
|
|
|
21
21
|
constructor(
|
|
22
|
-
private
|
|
22
|
+
private addressingMode: number,
|
|
23
23
|
private noteHashOffset: number,
|
|
24
24
|
private leafIndexOffset: number,
|
|
25
25
|
private existsOffset: number,
|
|
@@ -29,7 +29,7 @@ export class NoteHashExists extends Instruction {
|
|
|
29
29
|
|
|
30
30
|
public async execute(context: AvmContext): Promise<void> {
|
|
31
31
|
const memory = context.machineState.memory;
|
|
32
|
-
const addressing = Addressing.fromWire(this.
|
|
32
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
33
33
|
|
|
34
34
|
context.machineState.consumeGas(
|
|
35
35
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -55,7 +55,7 @@ export class EmitNoteHash extends Instruction {
|
|
|
55
55
|
static readonly wireFormat = [OperandType.UINT8, OperandType.UINT8, OperandType.UINT16];
|
|
56
56
|
|
|
57
57
|
constructor(
|
|
58
|
-
private
|
|
58
|
+
private addressingMode: number,
|
|
59
59
|
private noteHashOffset: number,
|
|
60
60
|
) {
|
|
61
61
|
super();
|
|
@@ -63,7 +63,7 @@ export class EmitNoteHash extends Instruction {
|
|
|
63
63
|
|
|
64
64
|
public async execute(context: AvmContext): Promise<void> {
|
|
65
65
|
const memory = context.machineState.memory;
|
|
66
|
-
const addressing = Addressing.fromWire(this.
|
|
66
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
67
67
|
|
|
68
68
|
context.machineState.consumeGas(
|
|
69
69
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -95,7 +95,7 @@ export class NullifierExists extends Instruction {
|
|
|
95
95
|
];
|
|
96
96
|
|
|
97
97
|
constructor(
|
|
98
|
-
private
|
|
98
|
+
private addressingMode: number,
|
|
99
99
|
private nullifierOffset: number,
|
|
100
100
|
private addressOffset: number,
|
|
101
101
|
private existsOffset: number,
|
|
@@ -105,7 +105,7 @@ export class NullifierExists extends Instruction {
|
|
|
105
105
|
|
|
106
106
|
public async execute(context: AvmContext): Promise<void> {
|
|
107
107
|
const memory = context.machineState.memory;
|
|
108
|
-
const addressing = Addressing.fromWire(this.
|
|
108
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
109
109
|
|
|
110
110
|
context.machineState.consumeGas(
|
|
111
111
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -130,7 +130,7 @@ export class EmitNullifier extends Instruction {
|
|
|
130
130
|
static readonly wireFormat = [OperandType.UINT8, OperandType.UINT8, OperandType.UINT16];
|
|
131
131
|
|
|
132
132
|
constructor(
|
|
133
|
-
private
|
|
133
|
+
private addressingMode: number,
|
|
134
134
|
private nullifierOffset: number,
|
|
135
135
|
) {
|
|
136
136
|
super();
|
|
@@ -142,7 +142,7 @@ export class EmitNullifier extends Instruction {
|
|
|
142
142
|
}
|
|
143
143
|
|
|
144
144
|
const memory = context.machineState.memory;
|
|
145
|
-
const addressing = Addressing.fromWire(this.
|
|
145
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
146
146
|
|
|
147
147
|
context.machineState.consumeGas(
|
|
148
148
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -181,7 +181,7 @@ export class L1ToL2MessageExists extends Instruction {
|
|
|
181
181
|
];
|
|
182
182
|
|
|
183
183
|
constructor(
|
|
184
|
-
private
|
|
184
|
+
private addressingMode: number,
|
|
185
185
|
private msgHashOffset: number,
|
|
186
186
|
private msgLeafIndexOffset: number,
|
|
187
187
|
private existsOffset: number,
|
|
@@ -191,7 +191,7 @@ export class L1ToL2MessageExists extends Instruction {
|
|
|
191
191
|
|
|
192
192
|
public async execute(context: AvmContext): Promise<void> {
|
|
193
193
|
const memory = context.machineState.memory;
|
|
194
|
-
const addressing = Addressing.fromWire(this.
|
|
194
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
195
195
|
|
|
196
196
|
context.machineState.consumeGas(
|
|
197
197
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -218,7 +218,7 @@ export class EmitUnencryptedLog extends Instruction {
|
|
|
218
218
|
static readonly wireFormat = [OperandType.UINT8, OperandType.UINT8, OperandType.UINT16, OperandType.UINT16];
|
|
219
219
|
|
|
220
220
|
constructor(
|
|
221
|
-
private
|
|
221
|
+
private addressingMode: number,
|
|
222
222
|
private logSizeOffset: number,
|
|
223
223
|
private logOffset: number,
|
|
224
224
|
) {
|
|
@@ -231,7 +231,7 @@ export class EmitUnencryptedLog extends Instruction {
|
|
|
231
231
|
}
|
|
232
232
|
|
|
233
233
|
const memory = context.machineState.memory;
|
|
234
|
-
const addressing = Addressing.fromWire(this.
|
|
234
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
235
235
|
|
|
236
236
|
context.machineState.consumeGas(
|
|
237
237
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -258,7 +258,7 @@ export class SendL2ToL1Message extends Instruction {
|
|
|
258
258
|
static readonly wireFormat = [OperandType.UINT8, OperandType.UINT8, OperandType.UINT16, OperandType.UINT16];
|
|
259
259
|
|
|
260
260
|
constructor(
|
|
261
|
-
private
|
|
261
|
+
private addressingMode: number,
|
|
262
262
|
private recipientOffset: number,
|
|
263
263
|
private contentOffset: number,
|
|
264
264
|
) {
|
|
@@ -271,7 +271,7 @@ export class SendL2ToL1Message extends Instruction {
|
|
|
271
271
|
}
|
|
272
272
|
|
|
273
273
|
const memory = context.machineState.memory;
|
|
274
|
-
const addressing = Addressing.fromWire(this.
|
|
274
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
275
275
|
|
|
276
276
|
context.machineState.consumeGas(
|
|
277
277
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -15,7 +15,7 @@ import { ThreeOperandInstruction } from './instruction_impl.js';
|
|
|
15
15
|
export abstract class ThreeOperandArithmeticInstruction extends ThreeOperandInstruction {
|
|
16
16
|
public async execute(context: AvmContext): Promise<void> {
|
|
17
17
|
const memory = context.machineState.memory;
|
|
18
|
-
const addressing = Addressing.fromWire(this.
|
|
18
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
19
19
|
|
|
20
20
|
context.machineState.consumeGas(
|
|
21
21
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -9,7 +9,7 @@ import { ThreeOperandInstruction } from './instruction_impl.js';
|
|
|
9
9
|
abstract class ThreeOperandBitwiseInstruction extends ThreeOperandInstruction {
|
|
10
10
|
public async execute(context: AvmContext): Promise<void> {
|
|
11
11
|
const memory = context.machineState.memory;
|
|
12
|
-
const addressing = Addressing.fromWire(this.
|
|
12
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
13
13
|
|
|
14
14
|
context.machineState.consumeGas(
|
|
15
15
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -87,7 +87,7 @@ export class Not extends Instruction {
|
|
|
87
87
|
static readonly wireFormat16 = [OperandType.UINT8, OperandType.UINT8, OperandType.UINT16, OperandType.UINT16];
|
|
88
88
|
|
|
89
89
|
constructor(
|
|
90
|
-
private
|
|
90
|
+
private addressingMode: number,
|
|
91
91
|
private srcOffset: number,
|
|
92
92
|
private dstOffset: number,
|
|
93
93
|
) {
|
|
@@ -96,7 +96,7 @@ export class Not extends Instruction {
|
|
|
96
96
|
|
|
97
97
|
public async execute(context: AvmContext): Promise<void> {
|
|
98
98
|
const memory = context.machineState.memory;
|
|
99
|
-
const addressing = Addressing.fromWire(this.
|
|
99
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
100
100
|
|
|
101
101
|
context.machineState.consumeGas(
|
|
102
102
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -7,7 +7,7 @@ import { ThreeOperandInstruction } from './instruction_impl.js';
|
|
|
7
7
|
abstract class ComparatorInstruction extends ThreeOperandInstruction {
|
|
8
8
|
public async execute(context: AvmContext): Promise<void> {
|
|
9
9
|
const memory = context.machineState.memory;
|
|
10
|
-
const addressing = Addressing.fromWire(this.
|
|
10
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
11
11
|
|
|
12
12
|
context.machineState.consumeGas(
|
|
13
13
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -17,14 +17,14 @@ export class GetContractInstance extends Instruction {
|
|
|
17
17
|
// Informs (de)serialization. See Instruction.deserialize.
|
|
18
18
|
static readonly wireFormat: OperandType[] = [
|
|
19
19
|
OperandType.UINT8, // opcode
|
|
20
|
-
OperandType.UINT8, //
|
|
20
|
+
OperandType.UINT8, // addressing_mode bits
|
|
21
21
|
OperandType.UINT16, // addressOffset
|
|
22
22
|
OperandType.UINT16, // dstOffset
|
|
23
23
|
OperandType.UINT8, // member enum (immediate)
|
|
24
24
|
];
|
|
25
25
|
|
|
26
26
|
constructor(
|
|
27
|
-
private
|
|
27
|
+
private addressingMode: number,
|
|
28
28
|
private addressOffset: number,
|
|
29
29
|
private dstOffset: number,
|
|
30
30
|
private memberEnum: number,
|
|
@@ -34,7 +34,7 @@ export class GetContractInstance extends Instruction {
|
|
|
34
34
|
|
|
35
35
|
async execute(context: AvmContext): Promise<void> {
|
|
36
36
|
const memory = context.machineState.memory;
|
|
37
|
-
const addressing = Addressing.fromWire(this.
|
|
37
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
38
38
|
|
|
39
39
|
context.machineState.consumeGas(
|
|
40
40
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -39,7 +39,7 @@ export class JumpI extends Instruction {
|
|
|
39
39
|
];
|
|
40
40
|
|
|
41
41
|
constructor(
|
|
42
|
-
private
|
|
42
|
+
private addressingMode: number,
|
|
43
43
|
private condOffset: number,
|
|
44
44
|
private loc: number,
|
|
45
45
|
) {
|
|
@@ -48,7 +48,7 @@ export class JumpI extends Instruction {
|
|
|
48
48
|
|
|
49
49
|
public async execute(context: AvmContext): Promise<void> {
|
|
50
50
|
const memory = context.machineState.memory;
|
|
51
|
-
const addressing = Addressing.fromWire(this.
|
|
51
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
52
52
|
|
|
53
53
|
context.machineState.consumeGas(
|
|
54
54
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -12,7 +12,7 @@ export class ToRadixBE extends Instruction {
|
|
|
12
12
|
// Informs (de)serialization. See Instruction.deserialize.
|
|
13
13
|
static readonly wireFormat: OperandType[] = [
|
|
14
14
|
OperandType.UINT8, // Opcode
|
|
15
|
-
OperandType.UINT16, //
|
|
15
|
+
OperandType.UINT16, // addressing_mode
|
|
16
16
|
OperandType.UINT16, // src memory address
|
|
17
17
|
OperandType.UINT16, // radix memory address
|
|
18
18
|
OperandType.UINT16, // number of limbs address
|
|
@@ -21,7 +21,7 @@ export class ToRadixBE extends Instruction {
|
|
|
21
21
|
];
|
|
22
22
|
|
|
23
23
|
constructor(
|
|
24
|
-
private
|
|
24
|
+
private addressingMode: number,
|
|
25
25
|
private srcOffset: number,
|
|
26
26
|
private radixOffset: number,
|
|
27
27
|
private numLimbsOffset: number,
|
|
@@ -33,7 +33,7 @@ export class ToRadixBE extends Instruction {
|
|
|
33
33
|
|
|
34
34
|
public async execute(context: AvmContext): Promise<void> {
|
|
35
35
|
const memory = context.machineState.memory;
|
|
36
|
-
const addressing = Addressing.fromWire(this.
|
|
36
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
37
37
|
|
|
38
38
|
context.machineState.consumeGas(
|
|
39
39
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -26,7 +26,7 @@ export class EcAdd extends Instruction {
|
|
|
26
26
|
];
|
|
27
27
|
|
|
28
28
|
constructor(
|
|
29
|
-
private
|
|
29
|
+
private addressingMode: number,
|
|
30
30
|
private p1XOffset: number,
|
|
31
31
|
private p1YOffset: number,
|
|
32
32
|
private p1IsInfiniteOffset: number,
|
|
@@ -40,7 +40,7 @@ export class EcAdd extends Instruction {
|
|
|
40
40
|
|
|
41
41
|
public async execute(context: AvmContext): Promise<void> {
|
|
42
42
|
const memory = context.machineState.memory;
|
|
43
|
-
const addressing = Addressing.fromWire(this.
|
|
43
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
44
44
|
|
|
45
45
|
context.machineState.consumeGas(
|
|
46
46
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -56,13 +56,13 @@ export class GetEnvVar extends Instruction {
|
|
|
56
56
|
public static readonly opcode: Opcode = Opcode.GETENVVAR_16;
|
|
57
57
|
static readonly wireFormat16: OperandType[] = [
|
|
58
58
|
OperandType.UINT8, // opcode
|
|
59
|
-
OperandType.UINT8, //
|
|
59
|
+
OperandType.UINT8, // addressing_mode
|
|
60
60
|
OperandType.UINT16, // dstOffset
|
|
61
61
|
OperandType.UINT8, // variable enum (immediate)
|
|
62
62
|
];
|
|
63
63
|
|
|
64
64
|
constructor(
|
|
65
|
-
private
|
|
65
|
+
private addressingMode: number,
|
|
66
66
|
private dstOffset: number,
|
|
67
67
|
private varEnum: number,
|
|
68
68
|
) {
|
|
@@ -71,7 +71,7 @@ export class GetEnvVar extends Instruction {
|
|
|
71
71
|
|
|
72
72
|
public async execute(context: AvmContext): Promise<void> {
|
|
73
73
|
const memory = context.machineState.memory;
|
|
74
|
-
const addressing = Addressing.fromWire(this.
|
|
74
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
75
75
|
|
|
76
76
|
context.machineState.consumeGas(
|
|
77
77
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -9,7 +9,7 @@ abstract class ExternalCall extends Instruction {
|
|
|
9
9
|
// Informs (de)serialization. See Instruction.deserialize.
|
|
10
10
|
static readonly wireFormat: OperandType[] = [
|
|
11
11
|
OperandType.UINT8,
|
|
12
|
-
OperandType.UINT16, //
|
|
12
|
+
OperandType.UINT16, // addressing_mode
|
|
13
13
|
OperandType.UINT16, // L2 gas offset
|
|
14
14
|
OperandType.UINT16, // DA gas offset
|
|
15
15
|
OperandType.UINT16, // Address offset
|
|
@@ -18,7 +18,7 @@ abstract class ExternalCall extends Instruction {
|
|
|
18
18
|
];
|
|
19
19
|
|
|
20
20
|
constructor(
|
|
21
|
-
private
|
|
21
|
+
private addressingMode: number,
|
|
22
22
|
private l2GasOffset: number,
|
|
23
23
|
private daGasOffset: number,
|
|
24
24
|
private addrOffset: number,
|
|
@@ -30,7 +30,7 @@ abstract class ExternalCall extends Instruction {
|
|
|
30
30
|
|
|
31
31
|
public async execute(context: AvmContext) {
|
|
32
32
|
const memory = context.machineState.memory;
|
|
33
|
-
const addressing = Addressing.fromWire(this.
|
|
33
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
34
34
|
|
|
35
35
|
context.machineState.consumeGas(
|
|
36
36
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -137,7 +137,7 @@ export class SuccessCopy extends Instruction {
|
|
|
137
137
|
];
|
|
138
138
|
|
|
139
139
|
constructor(
|
|
140
|
-
private
|
|
140
|
+
private addressingMode: number,
|
|
141
141
|
private dstOffset: number,
|
|
142
142
|
) {
|
|
143
143
|
super();
|
|
@@ -145,7 +145,7 @@ export class SuccessCopy extends Instruction {
|
|
|
145
145
|
|
|
146
146
|
public async execute(context: AvmContext): Promise<void> {
|
|
147
147
|
const memory = context.machineState.memory;
|
|
148
|
-
const addressing = Addressing.fromWire(this.
|
|
148
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
149
149
|
|
|
150
150
|
context.machineState.consumeGas(
|
|
151
151
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -174,7 +174,7 @@ export class Return extends Instruction {
|
|
|
174
174
|
];
|
|
175
175
|
|
|
176
176
|
constructor(
|
|
177
|
-
private
|
|
177
|
+
private addressingMode: number,
|
|
178
178
|
private returnSizeOffset: number,
|
|
179
179
|
private returnOffset: number,
|
|
180
180
|
) {
|
|
@@ -183,7 +183,7 @@ export class Return extends Instruction {
|
|
|
183
183
|
|
|
184
184
|
public async execute(context: AvmContext): Promise<void> {
|
|
185
185
|
const memory = context.machineState.memory;
|
|
186
|
-
const addressing = Addressing.fromWire(this.
|
|
186
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
187
187
|
|
|
188
188
|
context.machineState.consumeGas(
|
|
189
189
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -223,7 +223,7 @@ export class Revert extends Instruction {
|
|
|
223
223
|
];
|
|
224
224
|
|
|
225
225
|
constructor(
|
|
226
|
-
private
|
|
226
|
+
private addressingMode: number,
|
|
227
227
|
private retSizeOffset: number,
|
|
228
228
|
private returnOffset: number,
|
|
229
229
|
) {
|
|
@@ -232,7 +232,7 @@ export class Revert extends Instruction {
|
|
|
232
232
|
|
|
233
233
|
public async execute(context: AvmContext): Promise<void> {
|
|
234
234
|
const memory = context.machineState.memory;
|
|
235
|
-
const addressing = Addressing.fromWire(this.
|
|
235
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
236
236
|
|
|
237
237
|
context.machineState.consumeGas(
|
|
238
238
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -22,7 +22,7 @@ export class Poseidon2 extends Instruction {
|
|
|
22
22
|
];
|
|
23
23
|
|
|
24
24
|
constructor(
|
|
25
|
-
private
|
|
25
|
+
private addressingMode: number,
|
|
26
26
|
private inputStateOffset: number,
|
|
27
27
|
private outputStateOffset: number,
|
|
28
28
|
) {
|
|
@@ -31,7 +31,7 @@ export class Poseidon2 extends Instruction {
|
|
|
31
31
|
|
|
32
32
|
public async execute(context: AvmContext): Promise<void> {
|
|
33
33
|
const memory = context.machineState.memory;
|
|
34
|
-
const addressing = Addressing.fromWire(this.
|
|
34
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
35
35
|
|
|
36
36
|
context.machineState.consumeGas(
|
|
37
37
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -65,7 +65,7 @@ export class KeccakF1600 extends Instruction {
|
|
|
65
65
|
];
|
|
66
66
|
|
|
67
67
|
constructor(
|
|
68
|
-
private
|
|
68
|
+
private addressingMode: number,
|
|
69
69
|
private dstOffset: number,
|
|
70
70
|
private inputOffset: number,
|
|
71
71
|
) {
|
|
@@ -76,7 +76,7 @@ export class KeccakF1600 extends Instruction {
|
|
|
76
76
|
public async execute(context: AvmContext): Promise<void> {
|
|
77
77
|
const inputSize = 25;
|
|
78
78
|
const memory = context.machineState.memory;
|
|
79
|
-
const addressing = Addressing.fromWire(this.
|
|
79
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
80
80
|
|
|
81
81
|
context.machineState.consumeGas(
|
|
82
82
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -109,7 +109,7 @@ export class Sha256Compression extends Instruction {
|
|
|
109
109
|
];
|
|
110
110
|
|
|
111
111
|
constructor(
|
|
112
|
-
private
|
|
112
|
+
private addressingMode: number,
|
|
113
113
|
private outputOffset: number,
|
|
114
114
|
private stateOffset: number,
|
|
115
115
|
private inputsOffset: number,
|
|
@@ -122,7 +122,7 @@ export class Sha256Compression extends Instruction {
|
|
|
122
122
|
const INPUTS_SIZE = 16;
|
|
123
123
|
|
|
124
124
|
const memory = context.machineState.memory;
|
|
125
|
-
const addressing = Addressing.fromWire(this.
|
|
125
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
126
126
|
|
|
127
127
|
context.machineState.consumeGas(
|
|
128
128
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -19,14 +19,14 @@ export const ThreeOperandWireFormat16 = [
|
|
|
19
19
|
|
|
20
20
|
/**
|
|
21
21
|
* Covers (de)serialization for an instruction with:
|
|
22
|
-
*
|
|
22
|
+
* addressing mode, inTag, and three operands.
|
|
23
23
|
*/
|
|
24
24
|
export abstract class ThreeOperandInstruction extends Instruction {
|
|
25
25
|
static readonly wireFormat8: OperandType[] = ThreeOperandWireFormat8;
|
|
26
26
|
static readonly wireFormat16: OperandType[] = ThreeOperandWireFormat16;
|
|
27
27
|
|
|
28
28
|
constructor(
|
|
29
|
-
protected
|
|
29
|
+
protected addressingMode: number,
|
|
30
30
|
protected aOffset: number,
|
|
31
31
|
protected bOffset: number,
|
|
32
32
|
protected dstOffset: number,
|
|
@@ -15,49 +15,49 @@ export class Set extends Instruction {
|
|
|
15
15
|
|
|
16
16
|
public static readonly wireFormat8: OperandType[] = [
|
|
17
17
|
OperandType.UINT8, // opcode
|
|
18
|
-
OperandType.UINT8, //
|
|
18
|
+
OperandType.UINT8, // addressing_mode
|
|
19
19
|
OperandType.UINT8, // dstOffset
|
|
20
20
|
OperandType.TAG, // tag
|
|
21
21
|
OperandType.UINT8, // const (value)
|
|
22
22
|
];
|
|
23
23
|
public static readonly wireFormat16: OperandType[] = [
|
|
24
24
|
OperandType.UINT8, // opcode
|
|
25
|
-
OperandType.UINT8, //
|
|
25
|
+
OperandType.UINT8, // addressing_mode
|
|
26
26
|
OperandType.UINT16, // dstOffset
|
|
27
27
|
OperandType.TAG, // tag
|
|
28
28
|
OperandType.UINT16, // const (value)
|
|
29
29
|
];
|
|
30
30
|
public static readonly wireFormat32: OperandType[] = [
|
|
31
31
|
OperandType.UINT8, // opcode
|
|
32
|
-
OperandType.UINT8, //
|
|
32
|
+
OperandType.UINT8, // addressing_mode
|
|
33
33
|
OperandType.UINT16, // dstOffset
|
|
34
34
|
OperandType.TAG, // tag
|
|
35
35
|
OperandType.UINT32, // const (value)
|
|
36
36
|
];
|
|
37
37
|
public static readonly wireFormat64: OperandType[] = [
|
|
38
38
|
OperandType.UINT8, // opcode
|
|
39
|
-
OperandType.UINT8, //
|
|
39
|
+
OperandType.UINT8, // addressing_mode
|
|
40
40
|
OperandType.UINT16, // dstOffset
|
|
41
41
|
OperandType.TAG, // tag
|
|
42
42
|
OperandType.UINT64, // const (value)
|
|
43
43
|
];
|
|
44
44
|
public static readonly wireFormat128: OperandType[] = [
|
|
45
45
|
OperandType.UINT8, // opcode
|
|
46
|
-
OperandType.UINT8, //
|
|
46
|
+
OperandType.UINT8, // addressing_mode
|
|
47
47
|
OperandType.UINT16, // dstOffset
|
|
48
48
|
OperandType.TAG, // tag
|
|
49
49
|
OperandType.UINT128, // const (value)
|
|
50
50
|
];
|
|
51
51
|
public static readonly wireFormatFF: OperandType[] = [
|
|
52
52
|
OperandType.UINT8, // opcode
|
|
53
|
-
OperandType.UINT8, //
|
|
53
|
+
OperandType.UINT8, // addressing_mode
|
|
54
54
|
OperandType.UINT16, // dstOffset
|
|
55
55
|
OperandType.TAG, // tag
|
|
56
56
|
OperandType.FF, // const (value)
|
|
57
57
|
];
|
|
58
58
|
|
|
59
59
|
constructor(
|
|
60
|
-
private
|
|
60
|
+
private addressingMode: number,
|
|
61
61
|
private dstOffset: number,
|
|
62
62
|
private inTag: number,
|
|
63
63
|
private value: bigint | number,
|
|
@@ -72,7 +72,7 @@ export class Set extends Instruction {
|
|
|
72
72
|
const res = TaggedMemory.buildFromTagTruncating(this.value, this.inTag);
|
|
73
73
|
|
|
74
74
|
const memory = context.machineState.memory;
|
|
75
|
-
const addressing = Addressing.fromWire(this.
|
|
75
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
76
76
|
|
|
77
77
|
context.machineState.consumeGas(
|
|
78
78
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -104,7 +104,7 @@ export class Cast extends Instruction {
|
|
|
104
104
|
];
|
|
105
105
|
|
|
106
106
|
constructor(
|
|
107
|
-
private
|
|
107
|
+
private addressingMode: number,
|
|
108
108
|
private srcOffset: number,
|
|
109
109
|
private dstOffset: number,
|
|
110
110
|
private dstTag: number,
|
|
@@ -114,7 +114,7 @@ export class Cast extends Instruction {
|
|
|
114
114
|
|
|
115
115
|
public async execute(context: AvmContext): Promise<void> {
|
|
116
116
|
const memory = context.machineState.memory;
|
|
117
|
-
const addressing = Addressing.fromWire(this.
|
|
117
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
118
118
|
|
|
119
119
|
context.machineState.consumeGas(
|
|
120
120
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -150,7 +150,7 @@ export class Mov extends Instruction {
|
|
|
150
150
|
];
|
|
151
151
|
|
|
152
152
|
constructor(
|
|
153
|
-
private
|
|
153
|
+
private addressingMode: number,
|
|
154
154
|
private srcOffset: number,
|
|
155
155
|
private dstOffset: number,
|
|
156
156
|
) {
|
|
@@ -159,7 +159,7 @@ export class Mov extends Instruction {
|
|
|
159
159
|
|
|
160
160
|
public async execute(context: AvmContext): Promise<void> {
|
|
161
161
|
const memory = context.machineState.memory;
|
|
162
|
-
const addressing = Addressing.fromWire(this.
|
|
162
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
163
163
|
|
|
164
164
|
context.machineState.consumeGas(
|
|
165
165
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -185,7 +185,7 @@ export class CalldataCopy extends Instruction {
|
|
|
185
185
|
];
|
|
186
186
|
|
|
187
187
|
constructor(
|
|
188
|
-
private
|
|
188
|
+
private addressingMode: number,
|
|
189
189
|
private copySizeOffset: number,
|
|
190
190
|
private cdStartOffset: number,
|
|
191
191
|
private dstOffset: number,
|
|
@@ -195,7 +195,7 @@ export class CalldataCopy extends Instruction {
|
|
|
195
195
|
|
|
196
196
|
public async execute(context: AvmContext): Promise<void> {
|
|
197
197
|
const memory = context.machineState.memory;
|
|
198
|
-
const addressing = Addressing.fromWire(this.
|
|
198
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
199
199
|
|
|
200
200
|
context.machineState.consumeGas(
|
|
201
201
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -225,7 +225,7 @@ export class ReturndataSize extends Instruction {
|
|
|
225
225
|
static readonly wireFormat: OperandType[] = [OperandType.UINT8, OperandType.UINT8, OperandType.UINT16];
|
|
226
226
|
|
|
227
227
|
constructor(
|
|
228
|
-
private
|
|
228
|
+
private addressingMode: number,
|
|
229
229
|
private dstOffset: number,
|
|
230
230
|
) {
|
|
231
231
|
super();
|
|
@@ -233,7 +233,7 @@ export class ReturndataSize extends Instruction {
|
|
|
233
233
|
|
|
234
234
|
public async execute(context: AvmContext): Promise<void> {
|
|
235
235
|
const memory = context.machineState.memory;
|
|
236
|
-
const addressing = Addressing.fromWire(this.
|
|
236
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
237
237
|
|
|
238
238
|
context.machineState.consumeGas(
|
|
239
239
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -259,7 +259,7 @@ export class ReturndataCopy extends Instruction {
|
|
|
259
259
|
];
|
|
260
260
|
|
|
261
261
|
constructor(
|
|
262
|
-
private
|
|
262
|
+
private addressingMode: number,
|
|
263
263
|
private copySizeOffset: number,
|
|
264
264
|
private rdStartOffset: number,
|
|
265
265
|
private dstOffset: number,
|
|
@@ -269,7 +269,7 @@ export class ReturndataCopy extends Instruction {
|
|
|
269
269
|
|
|
270
270
|
public async execute(context: AvmContext): Promise<void> {
|
|
271
271
|
const memory = context.machineState.memory;
|
|
272
|
-
const addressing = Addressing.fromWire(this.
|
|
272
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
273
273
|
|
|
274
274
|
context.machineState.consumeGas(
|
|
275
275
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -23,7 +23,7 @@ export class DebugLog extends Instruction {
|
|
|
23
23
|
];
|
|
24
24
|
|
|
25
25
|
constructor(
|
|
26
|
-
private
|
|
26
|
+
private addressingMode: number,
|
|
27
27
|
private levelOffset: number,
|
|
28
28
|
private messageOffset: number,
|
|
29
29
|
private fieldsOffset: number,
|
|
@@ -35,7 +35,7 @@ export class DebugLog extends Instruction {
|
|
|
35
35
|
|
|
36
36
|
public async execute(context: AvmContext): Promise<void> {
|
|
37
37
|
const memory = context.machineState.memory;
|
|
38
|
-
const addressing = Addressing.fromWire(this.
|
|
38
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
39
39
|
|
|
40
40
|
context.machineState.consumeGas(
|
|
41
41
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -15,7 +15,7 @@ abstract class BaseStorageInstruction extends Instruction {
|
|
|
15
15
|
];
|
|
16
16
|
|
|
17
17
|
constructor(
|
|
18
|
-
protected
|
|
18
|
+
protected addressingMode: number,
|
|
19
19
|
protected aOffset: number,
|
|
20
20
|
protected bOffset: number,
|
|
21
21
|
) {
|
|
@@ -27,8 +27,8 @@ export class SStore extends BaseStorageInstruction {
|
|
|
27
27
|
static readonly type: string = 'SSTORE';
|
|
28
28
|
static readonly opcode = Opcode.SSTORE;
|
|
29
29
|
|
|
30
|
-
constructor(
|
|
31
|
-
super(
|
|
30
|
+
constructor(addressingMode: number, srcOffset: number, slotOffset: number) {
|
|
31
|
+
super(addressingMode, srcOffset, slotOffset);
|
|
32
32
|
}
|
|
33
33
|
|
|
34
34
|
public async execute(context: AvmContext): Promise<void> {
|
|
@@ -37,7 +37,7 @@ export class SStore extends BaseStorageInstruction {
|
|
|
37
37
|
}
|
|
38
38
|
|
|
39
39
|
const memory = context.machineState.memory;
|
|
40
|
-
const addressing = Addressing.fromWire(this.
|
|
40
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
41
41
|
|
|
42
42
|
context.machineState.consumeGas(
|
|
43
43
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|
|
@@ -64,13 +64,13 @@ export class SLoad extends BaseStorageInstruction {
|
|
|
64
64
|
static readonly type: string = 'SLOAD';
|
|
65
65
|
static readonly opcode = Opcode.SLOAD;
|
|
66
66
|
|
|
67
|
-
constructor(
|
|
68
|
-
super(
|
|
67
|
+
constructor(addressingMode: number, slotOffset: number, dstOffset: number) {
|
|
68
|
+
super(addressingMode, slotOffset, dstOffset);
|
|
69
69
|
}
|
|
70
70
|
|
|
71
71
|
public async execute(context: AvmContext): Promise<void> {
|
|
72
72
|
const memory = context.machineState.memory;
|
|
73
|
-
const addressing = Addressing.fromWire(this.
|
|
73
|
+
const addressing = Addressing.fromWire(this.addressingMode);
|
|
74
74
|
|
|
75
75
|
context.machineState.consumeGas(
|
|
76
76
|
this.baseGasCost(addressing.indirectOperandsCount(), addressing.relativeOperandsCount()),
|