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
54b1de67
Commit
54b1de67
authored
Aug 24, 2017
by
Felix Lange
Committed by
GitHub
Aug 24, 2017
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
core/vm: make jumpdest code nicer
parent
967e097f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
3 deletions
+1
-3
analysis.go
core/vm/analysis.go
+1
-3
No files found.
core/vm/analysis.go
View file @
54b1de67
...
...
@@ -42,7 +42,6 @@ func (d destinations) has(codehash common.Hash, code []byte, dest *big.Int) bool
d
[
codehash
]
=
m
}
return
OpCode
(
code
[
udest
])
==
JUMPDEST
&&
m
.
codeSegment
(
udest
)
// return (m[udest/8] & (1 << (udest % 8))) != 0
}
// bitvec is a bit vector which maps bytes in a program
...
...
@@ -68,8 +67,7 @@ func jumpdests(code []byte) []byte {
//The map is 4 bytes longer than necessary, in case the code
// ends with a PUSH32, the algorithm will push zeroes onto the
// bitvector outside the bounds of the actual code.
m
:=
make
([]
byte
,
len
(
code
)
/
8
+
1
+
4
)
bits
:=
bitvec
(
m
)
bits
:=
make
(
bitvec
,
len
(
code
)
/
8
+
1
+
4
)
for
pc
:=
uint64
(
0
);
pc
<
uint64
(
len
(
code
));
{
op
:=
OpCode
(
code
[
pc
])
...
...
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