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
abce6804
Commit
abce6804
authored
Mar 20, 2015
by
obscuren
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Right pad bytes to prevent future programmers making bugs
parent
f4e96388
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
18 additions
and
14 deletions
+18
-14
memory.go
vm/memory.go
+18
-14
No files found.
vm/memory.go
View file @
abce6804
package
vm
package
vm
import
"fmt"
import
(
"fmt"
"github.com/ethereum/go-ethereum/common"
)
type
Memory
struct
{
type
Memory
struct
{
store
[]
byte
store
[]
byte
...
@@ -11,21 +15,21 @@ func NewMemory() *Memory {
...
@@ -11,21 +15,21 @@ func NewMemory() *Memory {
}
}
func
(
m
*
Memory
)
Set
(
offset
,
size
uint64
,
value
[]
byte
)
{
func
(
m
*
Memory
)
Set
(
offset
,
size
uint64
,
value
[]
byte
)
{
if
len
(
value
)
>
0
{
value
=
common
.
RightPadBytes
(
value
,
int
(
size
))
totSize
:=
offset
+
size
lenSize
:=
uint64
(
len
(
m
.
store
)
-
1
)
totSize
:=
offset
+
size
if
totSize
>
lenSize
{
lenSize
:=
uint64
(
len
(
m
.
store
)
-
1
)
// Calculate the diff between the sizes
if
totSize
>
lenSize
{
diff
:=
totSize
-
lenSize
// Calculate the diff between the sizes
if
diff
>
0
{
diff
:=
totSize
-
lenSize
// Create a new empty slice and append it
if
diff
>
0
{
newSlice
:=
make
([]
byte
,
diff
-
1
)
// Create a new empty slice and append it
// Resize slice
newSlice
:=
make
([]
byte
,
diff
-
1
)
m
.
store
=
append
(
m
.
store
,
newSlice
...
)
// Resize slice
}
m
.
store
=
append
(
m
.
store
,
newSlice
...
)
}
}
copy
(
m
.
store
[
offset
:
offset
+
size
],
value
)
}
}
copy
(
m
.
store
[
offset
:
offset
+
size
],
value
)
}
}
func
(
m
*
Memory
)
Resize
(
size
uint64
)
{
func
(
m
*
Memory
)
Resize
(
size
uint64
)
{
...
...
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