solidity/test/libsolidity/gasTests/exp_optimized.sol

30 lines
710 B
Solidity
Raw Normal View History

2020-11-23 18:06:44 +00:00
pragma abicoder v2;
2020-09-25 15:05:15 +00:00
contract C {
function exp_neg_one(uint exponent) public returns(int) {
2020-09-15 14:16:30 +00:00
unchecked { return (-1)**exponent; }
2020-09-25 15:05:15 +00:00
}
function exp_two(uint exponent) public returns(uint) {
2020-09-15 14:16:30 +00:00
unchecked { return 2**exponent; }
2020-09-25 15:05:15 +00:00
}
function exp_zero(uint exponent) public returns(uint) {
2020-09-15 14:16:30 +00:00
unchecked { return 0**exponent; }
2020-09-25 15:05:15 +00:00
}
function exp_one(uint exponent) public returns(uint) {
2020-09-15 14:16:30 +00:00
unchecked { return 1**exponent; }
2020-09-25 15:05:15 +00:00
}
}
// ====
// optimize: true
// optimize-yul: true
// ----
// creation:
// codeDepositCost: 53200
// executionCost: 105
// totalCost: 53305
// external:
// exp_neg_one(uint256): 1962
// exp_one(uint256): 1915
// exp_two(uint256): 1893
// exp_zero(uint256): 1937