mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Merge pull request #14355 from ethereum/via-ir-bytecode-comparison
Via IR bytecode comparison
This commit is contained in:
commit
e70e595ce7
@ -88,6 +88,7 @@ commands:
|
||||
steps:
|
||||
- run:
|
||||
name: Generate bytecode reports for the selected preset
|
||||
no_output_timeout: 30m
|
||||
command: |
|
||||
.circleci/parallel_bytecode_report.sh \
|
||||
"<< parameters.label >>" \
|
||||
@ -227,6 +228,8 @@ defaults:
|
||||
PRESETS:
|
||||
legacy-optimize
|
||||
legacy-no-optimize
|
||||
via-ir-optimize
|
||||
via-ir-no-optimize
|
||||
|
||||
- bytecode_compare_preset_matrix: &bytecode_compare_preset_matrix
|
||||
parameters:
|
||||
@ -234,6 +237,8 @@ defaults:
|
||||
# NOTE: Keep in sync with preset list in bytecode_compare_env_presets
|
||||
- legacy-optimize
|
||||
- legacy-no-optimize
|
||||
- via-ir-optimize
|
||||
- via-ir-no-optimize
|
||||
|
||||
# --------------------------------------------------------------------------
|
||||
# Artifacts Templates
|
||||
|
@ -44,6 +44,9 @@ cd test-cases/
|
||||
echo "Preparing input files"
|
||||
python3 ../scripts/isolate_tests.py ../test/
|
||||
|
||||
# FIXME: These cases crash because of https://github.com/ethereum/solidity/issues/13583
|
||||
rm ./*_bytecode_too_large_*.sol ./*_combined_too_large_*.sol
|
||||
|
||||
if [[ $binary_type == native ]]; then
|
||||
interface=$(echo -e "standard-json\ncli" | circleci tests split)
|
||||
echo "Selected interface: ${interface}"
|
||||
|
@ -5,8 +5,10 @@ const fs = require('fs')
|
||||
const compiler = require('solc')
|
||||
|
||||
SETTINGS_PRESETS = {
|
||||
'legacy-optimize': {optimize: true},
|
||||
'legacy-no-optimize': {optimize: false},
|
||||
'legacy-optimize': {optimize: true, viaIR: false},
|
||||
'legacy-no-optimize': {optimize: false, viaIR: false},
|
||||
'via-ir-optimize': {optimize: true, viaIR: true},
|
||||
'via-ir-no-optimize': {optimize: false, viaIR: true},
|
||||
}
|
||||
|
||||
function loadSource(sourceFileName, stripSMTPragmas)
|
||||
@ -67,6 +69,8 @@ for (const preset of presets)
|
||||
},
|
||||
settings: {
|
||||
optimizer: {enabled: settings.optimize},
|
||||
// NOTE: We omit viaIR rather than set it to false to handle older versions that don't have it.
|
||||
viaIR: settings.viaIR ? true : undefined,
|
||||
outputSelection: {'*': {'*': ['evm.bytecode.object', 'metadata']}}
|
||||
}
|
||||
}
|
||||
@ -96,7 +100,7 @@ for (const preset of presets)
|
||||
// JSON interface still returns contract metadata in case of an internal compiler error while
|
||||
// CLI interface does not. To make reports comparable we must force this case to be detected as
|
||||
// an error in both cases.
|
||||
if (['UnimplementedFeatureError', 'CompilerError', 'CodeGenerationError'].includes(error['type']))
|
||||
if (['UnimplementedFeatureError', 'CompilerError', 'CodeGenerationError', 'YulException'].includes(error['type']))
|
||||
{
|
||||
internalCompilerError = true
|
||||
break
|
||||
|
@ -29,6 +29,8 @@ class CompilerInterface(Enum):
|
||||
class SettingsPreset(Enum):
|
||||
LEGACY_OPTIMIZE = 'legacy-optimize'
|
||||
LEGACY_NO_OPTIMIZE = 'legacy-no-optimize'
|
||||
VIA_IR_OPTIMIZE = 'via-ir-optimize'
|
||||
VIA_IR_NO_OPTIMIZE = 'via-ir-no-optimize'
|
||||
|
||||
|
||||
class SMTUse(Enum):
|
||||
@ -40,12 +42,15 @@ class SMTUse(Enum):
|
||||
@dataclass(frozen=True)
|
||||
class CompilerSettings:
|
||||
optimize: bool
|
||||
via_ir: bool
|
||||
|
||||
@staticmethod
|
||||
def from_preset(preset: SettingsPreset):
|
||||
return {
|
||||
SettingsPreset.LEGACY_OPTIMIZE: CompilerSettings(optimize=True),
|
||||
SettingsPreset.LEGACY_NO_OPTIMIZE: CompilerSettings(optimize=False),
|
||||
SettingsPreset.LEGACY_OPTIMIZE: CompilerSettings(optimize=True, via_ir=False),
|
||||
SettingsPreset.LEGACY_NO_OPTIMIZE: CompilerSettings(optimize=False, via_ir=False),
|
||||
SettingsPreset.VIA_IR_OPTIMIZE: CompilerSettings(optimize=True, via_ir=True),
|
||||
SettingsPreset.VIA_IR_NO_OPTIMIZE: CompilerSettings(optimize=False, via_ir=True),
|
||||
}[preset]
|
||||
|
||||
|
||||
@ -152,7 +157,7 @@ def parse_standard_json_output(source_file_name: Path, standard_json_output: str
|
||||
# CLI interface does not. To make reports comparable we must force this case to be detected as
|
||||
# an error in both cases.
|
||||
internal_compiler_error = any(
|
||||
error['type'] in ['UnimplementedFeatureError', 'CompilerError', 'CodeGenerationError']
|
||||
error['type'] in ['UnimplementedFeatureError', 'CompilerError', 'CodeGenerationError', 'YulException']
|
||||
for error in decoded_json_output.get('errors', {})
|
||||
)
|
||||
|
||||
@ -224,6 +229,8 @@ def prepare_compiler_input(
|
||||
},
|
||||
'settings': {
|
||||
'optimizer': {'enabled': settings.optimize},
|
||||
# NOTE: We omit viaIR rather than set it to false to handle older versions that don't have it.
|
||||
**({'viaIR': True} if settings.via_ir else {}),
|
||||
'outputSelection': {'*': {'*': ['evm.bytecode.object', 'metadata']}},
|
||||
}
|
||||
}
|
||||
@ -243,6 +250,8 @@ def prepare_compiler_input(
|
||||
compiler_options.append('--optimize')
|
||||
elif force_no_optimize_yul:
|
||||
compiler_options.append('--no-optimize-yul')
|
||||
if settings.via_ir:
|
||||
compiler_options.append('--via-ir')
|
||||
if smt_use == SMTUse.DISABLE:
|
||||
compiler_options += ['--model-checker-engine', 'none']
|
||||
|
||||
|
@ -265,6 +265,7 @@ class TestPrepareCompilerInput(PrepareReportTestBase):
|
||||
},
|
||||
'settings': {
|
||||
'optimizer': {'enabled': True},
|
||||
'viaIR': True,
|
||||
'outputSelection': {'*': {'*': ['evm.bytecode.object', 'metadata']}},
|
||||
'modelChecker': {'engine': 'none'},
|
||||
}
|
||||
@ -273,7 +274,7 @@ class TestPrepareCompilerInput(PrepareReportTestBase):
|
||||
(command_line, compiler_input) = prepare_compiler_input(
|
||||
Path('solc'),
|
||||
SMT_CONTRACT_WITH_MIXED_NEWLINES_SOL_PATH,
|
||||
preset=SettingsPreset.LEGACY_OPTIMIZE,
|
||||
preset=SettingsPreset.VIA_IR_OPTIMIZE,
|
||||
force_no_optimize_yul=False,
|
||||
interface=CompilerInterface.STANDARD_JSON,
|
||||
smt_use=SMTUse.DISABLE,
|
||||
@ -317,7 +318,7 @@ class TestPrepareCompilerInput(PrepareReportTestBase):
|
||||
(command_line, compiler_input) = prepare_compiler_input(
|
||||
Path('solc'),
|
||||
SMT_SMOKE_TEST_SOL_PATH,
|
||||
preset=SettingsPreset.LEGACY_OPTIMIZE,
|
||||
preset=SettingsPreset.VIA_IR_OPTIMIZE,
|
||||
force_no_optimize_yul=False,
|
||||
interface=CompilerInterface.CLI,
|
||||
smt_use=SMTUse.PRESERVE,
|
||||
@ -326,7 +327,7 @@ class TestPrepareCompilerInput(PrepareReportTestBase):
|
||||
|
||||
self.assertEqual(
|
||||
command_line,
|
||||
['solc', str(SMT_SMOKE_TEST_SOL_PATH), '--bin', '--optimize'],
|
||||
['solc', str(SMT_SMOKE_TEST_SOL_PATH), '--bin', '--optimize', '--via-ir'],
|
||||
)
|
||||
self.assertEqual(compiler_input, SMT_SMOKE_TEST_SOL_CODE)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user