good morning!!!!

Skip to content
Snippets Groups Projects
Commit 3f90f7c8 authored by Jeffrey Wilcke's avatar Jeffrey Wilcke
Browse files

Signextend

parent c8438979
No related branches found
No related tags found
No related merge requests found
...@@ -34,6 +34,10 @@ func BigD(data []byte) *big.Int { ...@@ -34,6 +34,10 @@ func BigD(data []byte) *big.Int {
return n return n
} }
func BitTest(num *big.Int, i int) bool {
return num.Bit(i) > 0
}
// To256 // To256
// //
// "cast" the big int to a 256 big int (i.e., limit to) // "cast" the big int to a 256 big int (i.e., limit to)
......
...@@ -392,6 +392,20 @@ func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) { ...@@ -392,6 +392,20 @@ func (self *DebugVm) RunClosure(closure *Closure) (ret []byte, err error) {
self.Printf(" = %v", base) self.Printf(" = %v", base)
stack.Push(base) stack.Push(base)
case SIGNEXTEND:
back := stack.Pop().Uint64()
if back.Cmp(big.NewInt(31)) < 0 {
bit := uint(back*8 + 7)
num := stack.Pop()
mask := new(big.Int).Lsh(ethutil.Big1, bit)
mask.Sub(mask, ethutil.Big1)
if ethutil.BitTest(num, int(bit)) {
num.Or(num, mask.Not(mask))
} else {
num.And(num, mask)
}
stack.Push(num)
}
case NOT: case NOT:
base.Sub(Pow256, stack.Pop()).Sub(base, ethutil.Big1) base.Sub(Pow256, stack.Pop()).Sub(base, ethutil.Big1)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment