22
22
*/
23
23
24
24
#include < test/libsolidity/SolidityExecutionFramework.h>
25
+ #include < test/libsolidity/util/SoltestErrors.h>
25
26
#include < libevmasm/GasMeter.h>
26
27
#include < libevmasm/KnownState.h>
27
28
#include < libevmasm/PathGasMeter.h>
@@ -43,24 +44,40 @@ class GasMeterTestFramework: public SolidityExecutionFramework
43
44
void compile (std::string const & _sourceCode)
44
45
{
45
46
m_compiler.reset ();
46
- m_compiler.setSources ({{" " , " pragma solidity >=0.0;\n "
47
- " // SPDX-License-Identifier: GPL-3.0\n " + _sourceCode}});
48
- m_compiler.setOptimiserSettings (solidity::test::CommonOptions::get ().optimize );
49
- m_compiler.setEVMVersion (m_evmVersion);
50
- BOOST_REQUIRE_MESSAGE (m_compiler.compile (), " Compiling contract failed" );
47
+ m_compilerInput = CompilerInput{};
48
+
49
+ m_compilerInput.sourceCode = {{" " , " pragma solidity >=0.0;\n "
50
+ " // SPDX-License-Identifier: GPL-3.0\n " + _sourceCode}};
51
+ m_compilerInput.optimise = solidity::test::CommonOptions::get ().optimize ;
52
+ m_compilerInput.evmVersion = std::make_optional (m_evmVersion);
53
+
54
+ m_compiler.compile (m_compilerInput);
55
+
56
+ BOOST_REQUIRE_MESSAGE (m_compiler.output ().success (), " Compiling contract failed" );
51
57
}
52
58
53
59
void testCreationTimeGas (std::string const & _sourceCode, u256 const & _tolerance = u256(0 ))
54
60
{
55
61
compileAndRun (_sourceCode);
62
+
56
63
auto state = std::make_shared<KnownState>();
57
- PathGasMeter meter (*m_compiler.assemblyItems (m_compiler.lastContractName ()), solidity::test::CommonOptions::get ().evmVersion ());
64
+ auto output = m_compiler.output ();
65
+ auto contract = output.contract ();
66
+
67
+ soltestAssert (contract.has_value ());
68
+ soltestAssert (contract.value ().assemblyItems .has_value ());
69
+
70
+ auto object = contract.value ().object ;
71
+ auto runtimeObject = contract.value ().runtimeObject ;
72
+ auto assemblyItems = contract.value ().assemblyItems .value ();
73
+
74
+ PathGasMeter meter (assemblyItems, solidity::test::CommonOptions::get ().evmVersion ());
58
75
GasMeter::GasConsumption gas = meter.estimateMax (0 , state);
59
- u256 bytecodeSize (m_compiler. runtimeObject (m_compiler. lastContractName ()). bytecode .size ());
76
+ u256 bytecodeSize (runtimeObject.size ());
60
77
// costs for deployment
61
78
gas += bytecodeSize * GasCosts::createDataGas;
62
79
// costs for transaction
63
- gas += gasForTransaction (m_compiler. object (m_compiler. lastContractName ()). bytecode , true );
80
+ gas += gasForTransaction (object, true );
64
81
65
82
BOOST_REQUIRE (!gas.isInfinite );
66
83
BOOST_CHECK_LE (m_gasUsed, gas.value );
@@ -71,6 +88,14 @@ class GasMeterTestFramework: public SolidityExecutionFramework
71
88
// / against the actual gas usage computed by the VM on the given set of argument variants.
72
89
void testRunTimeGas (std::string const & _sig, std::vector<bytes> _argumentVariants, u256 const & _tolerance = u256(0 ))
73
90
{
91
+ auto output = m_compiler.output ();
92
+ auto contract = output.contract ();
93
+
94
+ soltestAssert (contract.has_value ());
95
+ soltestAssert (contract.value ().runtimeAssemblyItems .has_value ());
96
+
97
+ auto runtimeAssemblyItems = contract.value ().runtimeAssemblyItems .value ();
98
+
74
99
u256 gasUsed = 0 ;
75
100
GasMeter::GasConsumption gas;
76
101
util::FixedHash<4 > hash = util::selectorFromSignatureH32 (_sig);
@@ -83,7 +108,7 @@ class GasMeterTestFramework: public SolidityExecutionFramework
83
108
}
84
109
85
110
gas += GasEstimator (solidity::test::CommonOptions::get ().evmVersion ()).functionalEstimation (
86
- *m_compiler. runtimeAssemblyItems (m_compiler. lastContractName ()) ,
111
+ runtimeAssemblyItems,
87
112
_sig
88
113
);
89
114
BOOST_REQUIRE (!gas.isInfinite );
0 commit comments