core/vm: optimize Memory.Set32 (#24847)

* core/vm: remove unnecessary memset for Memory.Set32

* core/vm: optimize Memory.Set32
pull/24861/head
Qian Bin 3 years ago committed by GitHub
parent f5ff022dbc
commit e0a1fd5fdc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      core/vm/memory.go

@ -53,10 +53,9 @@ func (m *Memory) Set32(offset uint64, val *uint256.Int) {
if offset+32 > uint64(len(m.store)) { if offset+32 > uint64(len(m.store)) {
panic("invalid memory: store empty") panic("invalid memory: store empty")
} }
// Zero the memory area
copy(m.store[offset:offset+32], []byte{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0})
// Fill in relevant bits // Fill in relevant bits
val.WriteToSlice(m.store[offset:]) b32 := val.Bytes32()
copy(m.store[offset:], b32[:])
} }
// Resize resizes the memory to size // Resize resizes the memory to size

Loading…
Cancel
Save