2015-07-07 00:54:22 +00:00
|
|
|
// Copyright 2014 The go-ethereum Authors
|
2015-07-22 16:48:40 +00:00
|
|
|
// This file is part of the go-ethereum library.
|
2015-07-07 00:54:22 +00:00
|
|
|
//
|
2015-07-23 16:35:11 +00:00
|
|
|
// The go-ethereum library is free software: you can redistribute it and/or modify
|
2015-07-07 00:54:22 +00:00
|
|
|
// it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
2015-07-22 16:48:40 +00:00
|
|
|
// The go-ethereum library is distributed in the hope that it will be useful,
|
2015-07-07 00:54:22 +00:00
|
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
2015-07-22 16:48:40 +00:00
|
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2015-07-07 00:54:22 +00:00
|
|
|
// GNU Lesser General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU Lesser General Public License
|
2015-07-22 16:48:40 +00:00
|
|
|
// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
|
2015-07-07 00:54:22 +00:00
|
|
|
|
2014-11-04 17:17:38 +00:00
|
|
|
package vm
|
|
|
|
|
2017-09-10 19:04:36 +00:00
|
|
|
// codeBitmap collects data locations in code.
|
2020-07-15 06:15:48 +00:00
|
|
|
func codeBitmap(code []byte) []uint64 {
|
2017-09-10 19:04:36 +00:00
|
|
|
// The bitmap is 4 bytes longer than necessary, in case the code
|
2017-06-03 17:01:22 +00:00
|
|
|
// ends with a PUSH32, the algorithm will push zeroes onto the
|
|
|
|
// bitvector outside the bounds of the actual code.
|
2020-07-15 06:15:48 +00:00
|
|
|
bits := make([]uint64, (len(code)+32+63)/64)
|
2020-06-06 20:49:06 +00:00
|
|
|
|
2020-07-15 06:15:48 +00:00
|
|
|
for pc := 0; pc < len(code); {
|
2017-06-01 17:42:20 +00:00
|
|
|
op := OpCode(code[pc])
|
2020-07-15 06:15:48 +00:00
|
|
|
pc++
|
2017-06-03 17:01:22 +00:00
|
|
|
if op >= PUSH1 && op <= PUSH32 {
|
2020-07-15 06:15:48 +00:00
|
|
|
numbits := int(op - PUSH1 + 1)
|
|
|
|
x := uint64(1) << (op - PUSH1)
|
|
|
|
x = x | (x - 1) // Smear the bit to the right
|
|
|
|
idx := pc / 64
|
|
|
|
shift := pc & 63
|
|
|
|
bits[idx] |= x << shift
|
|
|
|
if shift+shift > 64 {
|
|
|
|
bits[idx+1] |= x >> (64 - shift)
|
2017-06-03 17:01:22 +00:00
|
|
|
}
|
2020-07-15 06:15:48 +00:00
|
|
|
pc += numbits
|
2014-11-04 17:17:38 +00:00
|
|
|
}
|
|
|
|
}
|
2017-08-14 08:57:54 +00:00
|
|
|
return bits
|
2014-11-04 17:17:38 +00:00
|
|
|
}
|