Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
G
Geth-Modification
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
张蕾
Geth-Modification
Commits
997f1c4f
Unverified
Commit
997f1c4f
authored
Jun 03, 2022
by
Paweł Bylica
Committed by
GitHub
Jun 03, 2022
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core/vm: optimize jumpdest analysis (#23500)
core/vm: optimize PUSH opcode discrimination
parent
b453767c
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
analysis.go
core/vm/analysis.go
+1
-1
No files found.
core/vm/analysis.go
View file @
997f1c4f
...
@@ -76,7 +76,7 @@ func codeBitmapInternal(code, bits bitvec) bitvec {
...
@@ -76,7 +76,7 @@ func codeBitmapInternal(code, bits bitvec) bitvec {
for
pc
:=
uint64
(
0
);
pc
<
uint64
(
len
(
code
));
{
for
pc
:=
uint64
(
0
);
pc
<
uint64
(
len
(
code
));
{
op
:=
OpCode
(
code
[
pc
])
op
:=
OpCode
(
code
[
pc
])
pc
++
pc
++
if
op
<
PUSH1
||
op
>
PUSH32
{
if
int8
(
op
)
<
int8
(
PUSH1
)
{
// If not PUSH (the int8(op) > int(PUSH32) is always false).
continue
continue
}
}
numbits
:=
op
-
PUSH1
+
1
numbits
:=
op
-
PUSH1
+
1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment