mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Optimize byte-after-shr for shift amounts that are not multiples of 8.
This commit is contained in:
@@ -3,7 +3,7 @@ from opcodes import *
|
||||
|
||||
"""
|
||||
byte(A, shr(B, X))
|
||||
given B % 8 == 0 && A < n_bits/8 && B <= n_bits && A < B / 8
|
||||
given A < B / 8
|
||||
->
|
||||
0
|
||||
"""
|
||||
@@ -22,9 +22,6 @@ nonopt = BYTE(A, SHR(B, X))
|
||||
# Optimized result
|
||||
opt = 0
|
||||
|
||||
rule.require(B % 8 == 0)
|
||||
rule.require(ULT(A, n_bits/8))
|
||||
rule.require(ULE(B, n_bits))
|
||||
rule.require(ULT(A, DIV(B,8)))
|
||||
|
||||
rule.check(nonopt, opt)
|
||||
|
||||
Reference in New Issue
Block a user