We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 711fe52 commit 3a12f3dCopy full SHA for 3a12f3d
src/Neo.VM/ExecutionEngine.cs
@@ -135,6 +135,14 @@ protected internal void ExecuteNext()
135
ExecutionContext context = CurrentContext!;
136
Instruction instruction = context.CurrentInstruction ?? Instruction.RET;
137
PreExecuteInstruction(instruction);
138
+#if VMPERF
139
+ Console.WriteLine("op:["
140
+ + this.CurrentContext.InstructionPointer.ToString("X04")
141
+ + "]"
142
+ + this.CurrentContext.CurrentInstruction?.OpCode
143
+ + " "
144
+ + this.CurrentContext.EvaluationStack);
145
+#endif
146
try
147
{
148
JumpTable[instruction.OpCode](this, instruction);
0 commit comments