Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
2306 commits
Select commit Hold shift + click to select a range
ed0c426
SSA CFG: Add call graph
clonker May 12, 2026
2ccd8e4
SSA CFG: Add Tarjan's algorithm for SCCs to call graph
clonker May 12, 2026
e0b9da8
SSA CFG: Add `isRecursive` to call graph
clonker May 12, 2026
193db03
SSA CFG: Add call graph tests
clonker May 12, 2026
2d767b1
Merge pull request #16714 from argotorg/ssa-cfg-callgraph
clonker May 13, 2026
f5df12f
Rework `typeViaContractName` and `nativeMembers` fragment.
rodiazet Mar 19, 2026
70106fd
Introduce `typeWhenAttached` helper
rodiazet Apr 21, 2026
f6b841d
Introduce `isVisibleViaContractName`
rodiazet May 13, 2026
27ac306
Merge pull request #16625 from argotorg/rework-native-members
rodiazet May 14, 2026
a72cde2
SSA CFG: printer
clonker May 12, 2026
090bc8f
Merge pull request #16709 from argotorg/ssa-cfg-printer
clonker May 18, 2026
d19c938
Cache Whiskers regexes
DanielVF May 18, 2026
7e00364
Keep trailing line
DanielVF May 18, 2026
14c06b8
Merge branch 'develop' into regex-speedup
DanielVF May 18, 2026
e70f829
libsolutil: speed up picosha2::hash256_one_by_one::process (#16669)
msooseth May 19, 2026
ebe3504
SSA-CFG: Introduce a pass to outline specific blocks
blishko May 11, 2026
74d4d44
SSA-CFG: Enable outliner pass
blishko May 11, 2026
3db2d0e
Merge pull request #16733 from argotorg/ssa-outliner
blishko May 19, 2026
12efe49
Add ssa/spill/SpillSet container
clonker May 20, 2026
bbdb119
Merge pull request #16744 from argotorg/ssa-cfg-add-spill-set-container
clonker May 20, 2026
7af01a4
Merge pull request #16736 from DanielVF/regex-speedup
msooseth May 20, 2026
68ed278
SSA CFG: Stack layout generator knows if spilling is allowed
clonker May 20, 2026
d5e983b
SSA CFG: Stack layout generator populates spillset
clonker May 20, 2026
d8d4998
SSA CFG: Stack layout generator returns spillset
clonker May 20, 2026
86e929f
SSA CFG: Stack layout generator tests emit spilled variables
clonker May 20, 2026
2ca6163
Merge pull request #16750 from argotorg/ssa-cfg-slg-populates-spill-set
clonker May 20, 2026
afa9744
Migrate ethdebug CLI tests to isolest
nikola-matic Apr 21, 2026
8471cf2
Merge pull request #16675 from argotorg/ethdebug-isoltest-migration
nikola-matic May 21, 2026
78aa6de
ethdebug: Emit schema-compliant compilation resources
djolertrk May 8, 2026
cc430fb
test: Validate ETHDebug output against pinned schemas
djolertrk May 8, 2026
efaef8d
ci: Check ETHDebug compilation overhead
djolertrk May 20, 2026
a5686ef
ethdebug: Address resource review feedback
djolertrk May 25, 2026
b90b7c0
ethdebug: Avoid MSVC ICE in schema material builders
djolertrk May 26, 2026
c28af75
Merge pull request #16727 from walnuthq/feature/ethdebug
nikola-matic May 28, 2026
9340445
Avoid shell mkdir in splitSources
0xjc65eth May 26, 2026
e7fa128
Merge pull request #16774 from 0xjc65eth/fix-split-sources-mkdir
nikola-matic May 28, 2026
10ed593
Remove EOF: solc
rodiazet May 28, 2026
ae9806b
Merge pull request #16760 from argotorg/remove-eof-solc
rodiazet May 28, 2026
c06a4e2
Remove EOF: libsolidity
rodiazet May 28, 2026
fb19f71
Merge pull request #16769 from argotorg/remove-eof-libsolidity
nikola-matic May 29, 2026
f4e179e
Remove EOF: libyul
rodiazet May 22, 2026
cd88744
Merge pull request #16770 from argotorg/remove-eof-libyul
blishko Jun 4, 2026
420cac3
fix(docs): contradictory description of `send` in Subcurrency Example
thijmau May 18, 2026
839e2c3
Merge pull request #16735 from thijmau/docs/fix-subcurrency-evaluatio…
cameel Jun 8, 2026
1ae5f58
SSA-CFG: Store function call arguments in the same order as Yul
blishko May 22, 2026
3b6c2e6
Merge pull request #16765 from argotorg/ssa-change-arg-order
blishko Jun 8, 2026
ef7f9be
SSA-CFG: Disable outliner transformation pass
blishko Jun 8, 2026
9a4574b
Merge pull request #16783 from argotorg/ssa-cfg-disable-outliner
blishko Jun 8, 2026
b5f5e11
Test: Enable SSA-CFG by default for all semantic tests
blishko Mar 31, 2026
45a2608
Remove pnmp pin in edr external test
nikola-matic Jun 9, 2026
da578f0
Test: Remove explicit options that now specify the default values
blishko Jun 9, 2026
e84f82c
Merge pull request #16786 from argotorg/ssa-cfg-semantic-tests
blishko Jun 9, 2026
0402a7c
Bump rust-node image
nikola-matic Jun 9, 2026
1b095c7
Merge pull request #16787 from argotorg/remove-pnpm-pin-in-edr
nikola-matic Jun 9, 2026
ec5e769
SSA CFG: Add spill set
clonker May 21, 2026
0350029
SSA CFG: Add global memory addressing for spilling
clonker May 21, 2026
9baf8a2
SSA CFG: Add spill emitter
clonker May 21, 2026
16bb226
SSA CFG: hook spilling into code transform
clonker May 21, 2026
4b827a9
SSA CFG: stack layout generator validates back edges for potential sp…
clonker May 22, 2026
e2c4ab7
SSA CFG: add spill test
clonker May 22, 2026
88785d1
SSA CFG Stack shuffler: Fix oscillation case
clonker Jun 9, 2026
42769f9
SSA CFG Stack shuffler: fix args slot considers spill set when decidi…
clonker Jun 9, 2026
c48728e
SSA CFG: Stack layout generator populates spill set on multi-entry bl…
clonker Jun 9, 2026
1c4e9a5
Merge pull request #16767 from argotorg/ssa-cfg-kiss-memspill
clonker Jun 9, 2026
54f5591
SSA CFG Testing: Add spill test for a function with many return varia…
clonker Jun 10, 2026
8e42482
SSA CFG: Spill set resolves producer instruction for projections
clonker Jun 10, 2026
2377ba9
Merge pull request #16789 from argotorg/ssa-cfg-spill-set-resolve-pro…
clonker Jun 10, 2026
0b7a003
Frontend: Store ASTNode::id as int64_t instead of size_t
clonker Jun 10, 2026
410515c
Merge pull request #16793 from argotorg/ast-node-id-as-int64-t
clonker Jun 10, 2026
1d3a17b
Remove EOF from libevmasm
rodiazet May 22, 2026
7a0c49e
Add `canBeFunctional` test case.
rodiazet Jun 10, 2026
ac7dbb8
Merge pull request #16772 from argotorg/remove-eof-libevmasm
nikola-matic Jun 11, 2026
dc9296d
Remove EOF: Testing infrastructure.
rodiazet May 25, 2026
7c6dc92
Merge pull request #16773 from argotorg/remove-eof-testing-infra
blishko Jun 11, 2026
d7cc2f3
Remove EOF: bytecodeFormat setting from tests
rodiazet May 9, 2026
9e29840
SSA-CFG: Propagate information about deduplication of literals
blishko Jun 11, 2026
a63480d
Merge pull request #16795 from argotorg/ssa-cfg-fix-const-instructions
blishko Jun 11, 2026
06edb3e
Replace vector<CodeSection> with items in Assembly
rodiazet May 8, 2026
f65160f
Remove EOF: Replace vector<CodeSectionLocation> with CodeSectionLocat…
rodiazet May 29, 2026
2dfc9a4
Merge pull request #16757 from argotorg/eof/replace-vector-code-section
blishko Jun 12, 2026
7c7e5da
Add forgotten changelog entry
blishko Jun 15, 2026
068740a
Merge pull request #16798 from argotorg/smt-add-missing-changelog-entry
matheusaaguiar Jun 15, 2026
816d9b2
Merge pull request #16758 from argotorg/eof/bytecodeformat-tests
nikola-matic Jun 17, 2026
0c3aed7
YulUtilFunctions: assert combined byte slice extent in updateByteSlic…
msooseth May 20, 2026
646a3e0
Removing unused members (#16813)
msooseth Jun 22, 2026
8bb8eca
Merge pull request #16753 from argotorg/yulutilfunctions-update-byte-…
msooseth Jun 22, 2026
5dc70e3
SSA-CFG: Add helper method for stack shuffler
blishko Jun 23, 2026
1f1f298
SSA-CFG: Add helper method to Stack
blishko Jun 23, 2026
8ea3827
SSA-CFG: Modify shuffler to prevent shuffling cycle
blishko Jun 23, 2026
7f8546d
Merge pull request #16817 from argotorg/ssa-cfg-shuffler-looping
blishko Jun 23, 2026
99fe6c5
SSACFG Stack layout generation: Drop per-operation junk declaration
clonker Jun 24, 2026
a50a8e1
Merge pull request #16827 from argotorg/ssacfg-drop-per-op-junk
clonker Jun 24, 2026
51a8091
Remove unused includes
blishko Jun 24, 2026
dec2019
Merge pull request #16828 from argotorg/remove-unused-includes
blishko Jun 24, 2026
f007b69
SSA CFG spill: fix bug in spill set miscounting the number of consume…
clonker Jun 24, 2026
6deed02
Merge pull request #16829 from argotorg/ssa-cfg-fix-spill-miscount-bug
clonker Jun 24, 2026
0a11c0f
Test: Add cmdline test for large value of optimizer runs
blishko Jun 24, 2026
f31916a
Interface: Fix type of optimiser setting
blishko Jun 24, 2026
51be5c3
CLI: Fix type of optimizer runs parameter
blishko Jun 24, 2026
6e4bac9
Changelog: Add entries for changes related to optimizer runs
blishko Jun 24, 2026
b3ae1f4
Enforce single type for optimizer runs
blishko Jun 24, 2026
da8a826
Merge pull request #16826 from argotorg/fix-optimizer-setting-seriali…
blishko Jun 25, 2026
60a04bc
Remove unused `using` (#16831)
msooseth Jun 25, 2026
79df460
SSACFG Code Transform: in-loop spill discovery in the stack shuffler
clonker Jun 24, 2026
7cf9de0
SSACFG Code Transform: Run stack layout generator in a fixed point ov…
clonker Jun 24, 2026
dc3cb2d
Use shuffleWithSpillDiscovery in the stack shuffler test
clonker Jun 25, 2026
b44ed89
Merge pull request #16830 from argotorg/ssa-cfg-spill-fixed-point
clonker Jun 25, 2026
d8fbf36
Simplify AI usage declaration in the PR template
clonker Jun 25, 2026
c46c580
SSA CFG Shuffler: validate all stack too deep culprits
clonker Jun 12, 2026
8cdbf81
SSA CFG Shuffler: Extract swapIntoTail helper to deduplicate tail swaps
clonker Jun 24, 2026
da318b6
SSA CFG Shuffler: Simplify offsetInTargetArgsRegion using tailSize
clonker Jun 24, 2026
7c81396
Merge pull request #16839 from argotorg/ssa-cfg-spill-stability
clonker Jun 29, 2026
40737af
Optimize Yul string repository storage
DanielVF May 21, 2026
1bbea21
Merge pull request #16763 from DanielVF/optimize-yul-strings
clonker Jun 29, 2026
6b19465
SSACFG: Fix stack layout generator test output
clonker Jul 1, 2026
37ffbdd
Merge pull request #16843 from argotorg/ssa-cfg-fix-stack-layout-gene…
clonker Jul 1, 2026
e6402eb
cast to unsigned char before std::isprint in jsonParseStrict (#16785)
metsw24-max Jul 1, 2026
1b486dc
SSACFG: findOptimalTarget aborts early when stack is already target
clonker Jul 1, 2026
b2c6856
SSACFG: don't explicitly reserve space on backing data in free list
clonker Jul 1, 2026
b706925
SSACFG: estimate number of insts when building the graphs
clonker Jul 1, 2026
cf1e5c5
Merge pull request #16844 from argotorg/ssa-cfg-improve-performance
clonker Jul 1, 2026
2e67b4e
SSA-CFG: Fix picking culprit
blishko Jul 2, 2026
c6e6f84
SSA-CFG: Rename culprit to spillingCandidate
blishko Jul 2, 2026
e9d50f7
Merge pull request #16846 from argotorg/ssa-cfg-fix-culprit
blishko Jul 2, 2026
44d26ed
SSA CFG: Don't mark loop heads as junk admitting
clonker Jul 2, 2026
feed215
SSA-CFG: Simplify handling of stack-too-deep situation in shuffler
blishko Jul 2, 2026
2bff6cb
Merge pull request #16847 from argotorg/ssa-cfg-dont-mark-loop-heads-…
clonker Jul 2, 2026
c061089
Merge pull request #16848 from argotorg/ssa-cfg-simplify-shuffling-std
blishko Jul 2, 2026
b1dd08b
Bump evmone version to 0.22 in dockerfiles
nikola-matic Jul 6, 2026
9ba24cd
Fix CCACHE directory location
nikola-matic Jul 6, 2026
2579521
Link pthread in clang ossfuzz
nikola-matic Jul 7, 2026
e827217
Bump evmone to 0.22
nikola-matic Jul 7, 2026
7d4db03
Merge pull request #16852 from argotorg/bump-evmone-0.22-images
nikola-matic Jul 7, 2026
83ddafd
Merge pull request #16853 from argotorg/bump-evmone-0.22
nikola-matic Jul 7, 2026
8c1b4c9
Introduce EVM version Amsterdam
nikola-matic Jul 7, 2026
8a58ed4
Remove EOF mentions from CI/testing scripts
nikola-matic Jul 7, 2026
5b5b567
Merge pull request #16855 from argotorg/introduce-amsterdam-evm-version
nikola-matic Jul 7, 2026
de026a9
SSA CFG: add memory spilling addition changelog
clonker Jul 7, 2026
435b1cb
Merge pull request #16857 from argotorg/ssa-cfg-memory-spilling-chang…
clonker Jul 7, 2026
c7d00fd
Remove stale bot action
r0qs Jul 7, 2026
6b62fd2
Merge pull request #16858 from argotorg/disable-stale-bot
r0qs Jul 7, 2026
bdc735a
Merge pull request #16856 from argotorg/remove-eof-from-ci-testing-sc…
nikola-matic Jul 8, 2026
f93dcdc
SSA CFG: Operation live-out is inst-id based
clonker Jul 7, 2026
5f325d3
Merge pull request #16854 from argotorg/ssa-cfg-instid-liveness
clonker Jul 8, 2026
f410fc5
Minor EOF mention cleanup
nikola-matic Jul 8, 2026
3b1d1c8
Merge pull request #16859 from argotorg/further-eof-cleanup
nikola-matic Jul 8, 2026
4a41963
Move TarjanSCC from libyul to libsolutil
clonker Jun 22, 2026
a93b494
Add Yul AST call graph recursion tests
clonker Jun 22, 2026
89f03ea
Add tests reproducing spurious memory spilling
clonker Jun 20, 2026
912ed4d
Fix call graph cycle detection for intersecting recursive cycles
clonker Jun 20, 2026
a0b4f73
Add disambiguator prerequisite to call graph generator
clonker Jun 29, 2026
517d778
Call graph test: output the whole call graph
clonker Jun 29, 2026
6d5f751
Add `resolveFunctionName` overload dealing with instances of `Functio…
clonker Jul 6, 2026
e24c50e
Yul: Call graph generator asserts that builtins are never recursive
clonker Jul 6, 2026
5408bf4
Yul: Call graph generator raises proper exception if input is not dis…
clonker Jul 6, 2026
9421d07
Merge pull request #16860 from argotorg/fix_spurious_memory_spilling
clonker Jul 8, 2026
12f0e96
Fix blogpost link for UnsoundSpillInMutualRecursion bug
clonker Jul 8, 2026
be975bf
Merge pull request #16862 from argotorg/fix-blogpost-link-for-Unsound…
clonker Jul 8, 2026
bc3722c
Tests: Add tests demonstrating incorrect behaviour
blishko Jun 29, 2026
e251e4d
Analysis: Fix unintentional reversing of linearized based contracts
blishko Jun 29, 2026
c78dfdd
Add tests
matheusaaguiar May 5, 2026
fd303f0
Fix ICE when constant variable is assigned erc7201 builtin with wrong…
matheusaaguiar May 4, 2026
5a0e034
Error message for invalid constant argument type
matheusaaguiar May 5, 2026
66dd646
Merge pull request #16672 from argotorg/fix_erc7201_invalid_param_num…
matheusaaguiar Jul 8, 2026
24cbb53
Merge pull request #16861 from argotorg/fix-post-type-contract-level-…
blishko Jul 8, 2026
e797477
Add and update tests
matheusaaguiar May 7, 2026
6c92d0b
Fix segfault in storage layout specifier warning check
matheusaaguiar May 7, 2026
6fa8151
Merge pull request #16682 from argotorg/fix_custom_storage_layout_war…
cameel Jul 9, 2026
114a177
Sort changelog and add release date for 0.8.36
nikola-matic Jul 9, 2026
8a07979
Merge pull request #16864 from argotorg/sort-changelog-for-0-8-36
nikola-matic Jul 9, 2026
de43476
deps: add google/fuzztest
clonker Jun 29, 2026
e0d7535
Define fuzztest toolchain for the property based tests
clonker Jun 29, 2026
89b90f7
CI: run FuzzTest property-based tests
clonker Jun 30, 2026
2b32722
Add TarjanSCC property test
clonker Jul 9, 2026
2532dfb
Merge pull request #16842 from argotorg/add-fuzztest-dep
clonker Jul 9, 2026
607675a
Utils: Remove mixed-case format for hex numbers
blishko Jul 9, 2026
e5981de
Bump version to 0.8.37 and add changelog skeleton
nikola-matic Jul 9, 2026
99f67fb
Merge pull request #16865 from argotorg/remove-mixed-case-for-hex
blishko Jul 9, 2026
960c6e9
Merge pull request #16866 from argotorg/bump-version-to-0-8-37-and-ad…
nikola-matic Jul 9, 2026
72cdc01
reject out-of-range tag ids in assembly json import
metsw24-max Jul 5, 2026
596f680
ViaIR optimizer: Disable stack limit evader when running ssa cfg and …
clonker Jun 25, 2026
2d735f4
ViaIR optimizer: Disable stack compressor for SSA CFG
clonker Jun 25, 2026
a3bb02a
Merge pull request #16832 from argotorg/ssa-cfg-disable-stack-limit-e…
nikola-matic Jul 14, 2026
adea316
fix(docs): keep RTD version-warning notification clear of the site he…
kuzdogan Jul 14, 2026
902f848
Merge pull request #16870 from argotorg/fix-docs-version-warning-behi…
nikola-matic Jul 14, 2026
1aa5aa0
test: rename asm json import tag tests to import_asm_json_* form
metsw24-max Jul 15, 2026
556e838
Merge pull request #16851 from metsw24-max/asm-json-tag-range
nikola-matic Jul 15, 2026
14eb33d
SSACFG builder: don't optimize over constant-condition if/switch/for
clonker Jul 2, 2026
17b56ee
SSACFG: Add constant condition folder for if/switch/for
clonker Jul 2, 2026
3e2607c
SSACFG: Add jump threader to merge linear sequences of blocks
clonker Jul 2, 2026
b60c7c9
SSACFG: Add UseCounts pass
clonker Jul 15, 2026
f93169d
Merge pull request #16850 from argotorg/ssa-cfg-extract-folding-from-…
clonker Jul 16, 2026
c0ad66e
CLI: Add test case for non-hex library address
blishko Jul 16, 2026
9e4b16a
CLI: Better validation of library addresses
blishko Jul 16, 2026
11179a2
Merge pull request #16873 from argotorg/cli-fix-library-address-checks
matheusaaguiar Jul 17, 2026
a3a3ff3
Codegen: Fix ICE on parenthesized custom error construction in requir…
blishko Jul 20, 2026
ccb020c
Add prerelease filter to external tests tag refs
nikola-matic Jul 21, 2026
7a60846
Merge pull request #16879 from argotorg/add-prerelease-filter-to-exte…
nikola-matic Jul 21, 2026
03fe7dd
fix(docs): improve Google search snippets for documentation pages (#1…
Zish19 Jul 22, 2026
6918e7c
Deprecation warning for SMTChecker's BMC engine
matheusaaguiar Jul 20, 2026
5742011
Add test for bmc deprecation warning
matheusaaguiar Jul 20, 2026
d3ac579
Merge pull request #16877 from argotorg/smtchecker_bmc_deprecation_wa…
matheusaaguiar Jul 23, 2026
96bdc54
Merge pull request #16876 from argotorg/fix-crash-on-parenthesized-cu…
blishko Jul 24, 2026
770f44d
SSA CFG: Define shuffle trace
clonker Jul 26, 2026
31e2a87
SSA CFG: use shuffle trace in stack shuffler test
clonker Jul 26, 2026
0a514b6
SSA CFG: compute shuffle cost metrics from recorded traces
clonker Jul 26, 2026
42a6b43
SSA CFG: code transform emits assembly from trace
clonker Jul 26, 2026
34834ab
SSA CFG: replace stack manipulation callbacks with trace recording i…
clonker Jul 26, 2026
add225c
SSA CFG: record shuffle traces in the stack layout
clonker Jul 26, 2026
4bf6ebd
SSA CFG: play back recorded layout traces in CodeTransform instead of…
clonker Jul 26, 2026
341b3e3
SSA CFG: play back recorded def-site store traces for spilled values
clonker Jul 26, 2026
341747e
SSA CFG: derive intermediate stack layouts from traces instead of sto…
clonker Jul 26, 2026
18c1c7f
SSA CFG: deduplicate `reachableStackDepth` and `canBeFreelyGenerated`
clonker Jul 27, 2026
d24aa33
SSA CFG: Shuffler yields trace in return value
clonker Jul 27, 2026
510b2a1
Merge pull request #16883 from argotorg/ssa-cfg-record-trace-instead-…
clonker Jul 28, 2026
dc72830
Fix open zeppelin test failures
nikola-matic Aug 3, 2026
9ba4b0d
Merge pull request #16890 from argotorg/fix-open-zeppelin-test-failures
nikola-matic Aug 3, 2026
7d6571e
BlockDeduplicator: Complete BlockIterator to satisfy range iterator c…
clonker May 6, 2026
9b7f0c9
AssemblyItem: Add hash function
clonker May 6, 2026
6d67f37
BlockDeduplicator: Use ranges::any_of for self-tag presence check
clonker May 6, 2026
ec3f10e
BlockDeduplicator: Compare via unordered set instead of ordered-set l…
clonker May 6, 2026
6930616
fuzztest: Add evmasm BlockDeduplicator property tests
clonker Jul 28, 2026
15bb9a2
cmake: add langutil to evmasm link libraries list
clonker Aug 3, 2026
5b19a5b
fuzztest: Add evmasm BlockDeduplicator reference oracle test
clonker Aug 3, 2026
ef5c04b
Add and update tests
matheusaaguiar Apr 10, 2026
6965f0f
Make storage layout specifier accept signed positive expressions
matheusaaguiar Apr 10, 2026
7308677
Merge pull request #16684 from argotorg/block-deduplicator-perf
clonker Aug 4, 2026
5ac7e09
CI: Use official prebuilt z3 binary on macOS instead of building from…
rodiazet Jul 29, 2026
bf32788
Merge pull request #16891 from argotorg/z3-prebuilt
blishko Aug 4, 2026
ee536fb
Require boost 1.83 on Windows
sbillig Jul 2, 2026
22ef7db
Perf: Use boost unordered_flat_map/set, unordered_multimap
sbillig Jul 1, 2026
714ad45
Commandline Interface: Remove LSP support
clonker May 5, 2026
f91e957
Merge pull request #16589 from argotorg/storage_layout_expression_acc…
blishko Aug 5, 2026
37fa57d
Merge pull request #16849 from sbillig/flat-map
blishko Aug 5, 2026
a7f39ef
Merge pull request #16893 from argotorg/remove-lsp
blishko Aug 5, 2026
54dc764
Remove experimental Solidity
clonker Aug 5, 2026
ea495ce
Remove experimental Solidity: docs and changelog
clonker Aug 5, 2026
c7532dc
Merge pull request #16894 from argotorg/remove-experimental-solidity
clonker Aug 6, 2026
a48b743
Implementation of `SLOTNUM` support in the solidity syntax, inline as…
rodiazet Jul 29, 2026
2840dab
SMTChecker: Gracefully report unsupported block/msg/tx members instea…
rodiazet Jul 29, 2026
9b2f86b
Merge pull request #16881 from argotorg/slotnum
rodiazet Aug 6, 2026
30c997f
yul optimizer: expose SCCs derived from yul call graph
clonker Aug 11, 2026
1c3d548
Merge pull request #16904 from argotorg/expose-sccs-derived-from-yul-…
clonker Aug 11, 2026
5ffc27f
SMTChecker: Support `block.slotnum`
rodiazet Jul 29, 2026
a730d3c
Merge pull request #16884 from argotorg/slotnum-formal
rodiazet Aug 11, 2026
fde7677
Handle lack of 'next_page_token' in the API json response.
rodiazet Aug 12, 2026
ff3c712
Merge pull request #16910 from argotorg/fix-benchmark-pagination-keye…
blishko Aug 12, 2026
204a9af
Fix benchmark helpers script and condition when the bench diff is gen…
rodiazet Aug 12, 2026
14914e0
Merge pull request #16912 from argotorg/fix-missing-next-page-token
rodiazet Aug 14, 2026
1d2629c
English documentation updates up to v0.8.36-79-g14914e041 (2026-08-17)
soldocsbot Aug 17, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .readthedocs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
version: 2

build:
os: ubuntu-24.04
tools:
python: "3.13"

sphinx:
builder: html
configuration: docs/conf.py

formats:
- pdf
- epub

python:
install:
- requirements: docs/requirements.txt
129 changes: 61 additions & 68 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
cmake_minimum_required(VERSION 3.13.0)

set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

set(ETH_CMAKE_DIR "${CMAKE_CURRENT_LIST_DIR}/cmake" CACHE PATH "The path to the cmake directory")
list(APPEND CMAKE_MODULE_PATH ${ETH_CMAKE_DIR})

Expand All @@ -21,7 +23,7 @@ include(EthPolicy)
eth_policy()

# project name and version should be set after cmake_policy CMP0048
set(PROJECT_VERSION "0.8.25")
set(PROJECT_VERSION "0.8.37")
# OSX target needed in order to support std::visit
set(CMAKE_OSX_DEPLOYMENT_TARGET "10.14")
project(solidity VERSION ${PROJECT_VERSION} LANGUAGES C CXX)
Expand All @@ -34,19 +36,39 @@ endif()

option(SOLC_LINK_STATIC "Link solc executable statically on supported platforms" OFF)
option(SOLC_STATIC_STDLIBS "Link solc against static versions of libgcc and libstdc++ on supported platforms" OFF)
option(STRICT_Z3_VERSION "Use the latest version of Z3" ON)
option(STRICT_Z3_VERSION "Require the exact version of Z3 solver expected by our test suite." ON)
option(PEDANTIC "Enable extra warnings and pedantic build flags. Treat all warnings as errors." ON)
option(PROFILE_OPTIMIZER_STEPS "Output performance metrics for the optimiser steps." OFF)
option(
IGNORE_VENDORED_DEPENDENCIES
"Ignore libraries provided as submodules of the repository and allow CMake to look for \
them in the typical locations, including system-wide dirs."
OFF
)
option(
ONLY_BUILD_SOLIDITY_LIBRARIES
"Only build library targets that can be statically linked against. Do not build executables or tests."
OFF
)
mark_as_advanced(PROFILE_OPTIMIZER_STEPS)
mark_as_advanced(IGNORE_VENDORED_DEPENDENCIES)
mark_as_advanced(ONLY_BUILD_SOLIDITY_LIBRARIES)

# Setup cccache.
include(EthCcache)

# Let's find our dependencies
include(EthDependencies)
include(fmtlib)
include(jsoncpp)
include(range-v3)
include_directories(SYSTEM ${JSONCPP_INCLUDE_DIR})
if (NOT IGNORE_VENDORED_DEPENDENCIES)
include(fmtlib)
include(nlohmann-json)
include(range-v3)
else ()
message(WARNING "-- Ignoring vendored dependencies. Will use installed versions if found. Versions may differ from the ones the compiler was tested with. Make sure to run the test suite and thoroughly test the resulting binaries before using them in production.")
find_package(fmt REQUIRED)
find_package(nlohmann_json REQUIRED)
find_package(range-v3 REQUIRED)
endif()

find_package(Threads)

Expand Down Expand Up @@ -75,62 +97,31 @@ configure_file("${PROJECT_SOURCE_DIR}/cmake/templates/license.h.in" include/lice

include(EthOptions)
configure_project(TESTS)
set(LATEST_Z3_VERSION "4.12.1")
set(MINIMUM_Z3_VERSION "4.8.16")
find_package(Z3)
if (${Z3_FOUND})
if (${STRICT_Z3_VERSION})
if (NOT ("${Z3_VERSION_STRING}" VERSION_EQUAL ${LATEST_Z3_VERSION}))
message(
FATAL_ERROR
"SMTChecker tests require Z3 ${LATEST_Z3_VERSION} for all tests to pass.\n\
Build with -DSTRICT_Z3_VERSION=OFF if you want to use a different version. \
You can also use -DUSE_Z3=OFF to build without Z3. In both cases use --no-smt when running tests."
)
endif()
else()
if ("${Z3_VERSION_STRING}" VERSION_LESS ${MINIMUM_Z3_VERSION})
message(
FATAL_ERROR
"Solidity requires Z3 ${MINIMUM_Z3_VERSION} or newer. You can also use -DUSE_Z3=OFF to build without Z3."
)
endif()
endif()
endif()

if(${USE_Z3_DLOPEN})
add_definitions(-DHAVE_Z3)
add_definitions(-DHAVE_Z3_DLOPEN)
find_package(Python3 COMPONENTS Interpreter)
if(${Z3_FOUND})
get_target_property(Z3_HEADER_HINTS z3::libz3 INTERFACE_INCLUDE_DIRECTORIES)
endif()
find_path(Z3_HEADER_PATH z3.h HINTS ${Z3_HEADER_HINTS})
if(Z3_HEADER_PATH)
set(Z3_FOUND TRUE)
else()
message(SEND_ERROR "Dynamic loading of Z3 requires Z3 headers to be present at build time.")
endif()
if(NOT ${Python3_FOUND})
message(SEND_ERROR "Dynamic loading of Z3 requires Python 3 to be present at build time.")
endif()
if(${SOLC_LINK_STATIC})
message(SEND_ERROR "solc cannot be linked statically when dynamically loading Z3.")
endif()
elseif (${Z3_FOUND})
add_definitions(-DHAVE_Z3)
message("Z3 SMT solver found. This enables optional SMT checking with Z3.")
endif()

find_package(CVC4 QUIET)
if (${CVC4_FOUND})
add_definitions(-DHAVE_CVC4)
message("CVC4 SMT solver found. This enables optional SMT checking with CVC4.")
endif()

if (NOT (${Z3_FOUND} OR ${CVC4_FOUND}))
message("No SMT solver found (or it has been forcefully disabled). Optional SMT checking will not be available.\
\nPlease install Z3 or CVC4 or remove the option disabling them (USE_Z3, USE_CVC4).")
if(EMSCRIPTEN)
set(TESTED_Z3_VERSION "4.13.3")
set(MINIMUM_Z3_VERSION "4.8.16")
find_package(Z3)
if (${Z3_FOUND})
add_definitions(-DEMSCRIPTEN_BUILD)
if (${STRICT_Z3_VERSION})
if (NOT ("${Z3_VERSION_STRING}" VERSION_EQUAL ${TESTED_Z3_VERSION}))
message(
FATAL_ERROR
"SMTChecker tests require Z3 ${TESTED_Z3_VERSION} for all tests to pass.\n"
)
endif()
else()
if ("${Z3_VERSION_STRING}" VERSION_LESS ${MINIMUM_Z3_VERSION})
message(
FATAL_ERROR
"Solidity requires Z3 ${MINIMUM_Z3_VERSION} or newer."
)
endif()
endif()
else()
message(FATAL_ERROR "Solidity requires Z3 for emscripten build.")
endif()
endif()

add_subdirectory(libsolutil)
Expand All @@ -140,13 +131,15 @@ add_subdirectory(libevmasm)
add_subdirectory(libyul)
add_subdirectory(libsolidity)
add_subdirectory(libsolc)
add_subdirectory(libstdlib)
add_subdirectory(tools)

if (NOT EMSCRIPTEN)
add_subdirectory(solc)
endif()
if (NOT ONLY_BUILD_SOLIDITY_LIBRARIES)
add_subdirectory(tools)

if (TESTS AND NOT EMSCRIPTEN)
add_subdirectory(test)
if (NOT EMSCRIPTEN)
add_subdirectory(solc)
endif()

if (TESTS AND NOT EMSCRIPTEN)
add_subdirectory(test)
endif()
endif()
2 changes: 1 addition & 1 deletion docs/050-breaking-changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This section highlights the main breaking changes introduced in Solidity
version 0.5.0, along with the reasoning behind the changes and how to update
affected code.
For the full list check
`the release changelog <https://github.com/ethereum/solidity/releases/tag/v0.5.0>`_.
`the release changelog <https://github.com/argotorg/solidity/releases/tag/v0.5.0>`_.

.. note::
Contracts compiled with Solidity v0.5.0 can still interface with contracts
Expand Down
4 changes: 2 additions & 2 deletions docs/060-breaking-changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This section highlights the main breaking changes introduced in Solidity
version 0.6.0, along with the reasoning behind the changes and how to update
affected code.
For the full list check
`the release changelog <https://github.com/ethereum/solidity/releases/tag/v0.6.0>`_.
`the release changelog <https://github.com/argotorg/solidity/releases/tag/v0.6.0>`_.


Changes the Compiler Might not Warn About
Expand Down Expand Up @@ -119,7 +119,7 @@ Metadata Hash Options

The compiler now appends the `IPFS <https://ipfs.io/>`_ hash of the metadata file to the end of the bytecode by default
(for details, see documentation on :doc:`contract metadata <metadata>`). Before 0.6.0, the compiler appended the
`Swarm <https://ethersphere.github.io/swarm-home/>`_ hash by default, and in order to still support this behavior,
`Swarm <https://www.ethswarm.org/>`_ hash by default, and in order to still support this behavior,
the new command-line option ``--metadata-hash`` was introduced. It allows you to select the hash to be produced and
appended, by passing either ``ipfs`` or ``swarm`` as value to the ``--metadata-hash`` command-line option.
Passing the value ``none`` completely removes the hash.
Expand Down
2 changes: 1 addition & 1 deletion docs/070-breaking-changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ This section highlights the main breaking changes introduced in Solidity
version 0.7.0, along with the reasoning behind the changes and how to update
affected code.
For the full list check
`the release changelog <https://github.com/ethereum/solidity/releases/tag/v0.7.0>`_.
`the release changelog <https://github.com/argotorg/solidity/releases/tag/v0.7.0>`_.


Silent Changes of the Semantics
Expand Down
12 changes: 12 additions & 0 deletions docs/080-breaking-changes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,16 @@
Cambios introducidos en Solidity v0.8.0
***************************************

<<<<<<< HEAD
Esta sección versa sobre los principales cambios introducidos en la versión 0.8.0 de Solidity.
Para ver la lista completa
`registro de cambios de lanzamiento <https://github.com/ethereum/solidity/releases/tag/v0.8.0>`_.
=======
This section highlights the main breaking changes introduced in Solidity
version 0.8.0.
For the full list check
`the release changelog <https://github.com/argotorg/solidity/releases/tag/v0.8.0>`_.
>>>>>>> english/develop

Cambios silenciosos en la semántica
===================================
Expand Down Expand Up @@ -160,8 +167,13 @@ Cambios en el interface
* La salida de ``--combined-json`` ha cambiado: Los campos JSON ``abi``, ``devdoc``, ``userdoc`` y
``storage-layout`` ahora son subobjetos. Antes de la versión 0.8.0 se usaban serializados como strings.

<<<<<<< HEAD
* El "legacy AST" ha sido eliminado (``--ast-json`` en el interfaz de linea de comandos ``legacyAST`` para el
standard JSON). Use "compact AST" (``--ast-compact--json`` para ``AST``) en su lugar.
=======
* The "legacy AST" has been removed (``--ast-json`` on the commandline interface and ``legacyAST`` for standard JSON).
Use the "compact AST" (``--ast-compact-json`` resp. ``AST``) as replacement.
>>>>>>> english/develop

* El antigüo informador (``--old-reporter``) ha sido eliminado.

Expand Down
2 changes: 1 addition & 1 deletion docs/_static/css/custom-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -590,6 +590,6 @@
stroke: white;
}

:root[style*=dark] .a4 .sig-name {
:root[style*=dark] .sig-name {
background-color: transparent !important;
}
20 changes: 17 additions & 3 deletions docs/_static/css/custom.css
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ h1 {
}

section:first-of-type h1:first-of-type {
font-family: 'Overpass mono', monospace;
font-family: 'Overpass Mono', monospace;
font-size: 48px;
margin-top: 3rem;
margin-bottom: 5rem;
Expand Down Expand Up @@ -229,7 +229,7 @@ small * {
.wy-side-nav-search {
background-color: transparent !important;
color: var(--color-a) !important;
box-shadow: 0 4 4 0 var(--color-a);
box-shadow: 0 4px 4px 0 var(--color-a);
border-bottom: 1px solid var(--color-d) !important;
}

Expand Down Expand Up @@ -463,6 +463,20 @@ footer .rst-footer-buttons {
border-bottom: 1px solid var(--color-c);
}

/* Read the Docs Addons version-warning notification.
The addon hardcodes top:2rem / z-index:1750 inside its shadow DOM, so the
fixed site header (--navHeight tall, z-index:99999) both overlaps and covers
it. Style the host element to sit below the header and above its z-index;
the transform makes the host the containing block for the addon's fixed
toast, shifting its internal top:2rem offset down past the header. */
readthedocs-notification {
position: fixed;
top: var(--navHeight);
right: 0;
z-index: 100000;
transform: translateZ(0);
}

/* Rest: Flex-row, with two children: side bar, and content */
.unified-wrapper .wy-grid-for-nav {
position: relative !important;
Expand Down Expand Up @@ -823,4 +837,4 @@ a.skip-to-content:focus {
#content {
scroll-margin-top: 6rem;
scroll-behavior: smooth;
}
}
5 changes: 5 additions & 0 deletions docs/_static/css/toggle.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,9 @@ html.transition *:after {

.wy-menu-vertical a:hover {
background-color: #0002;
}

body {
font-weight: 300;
letter-spacing: 0.5px;
}
12 changes: 6 additions & 6 deletions docs/_static/js/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,12 +26,12 @@ const CONTRIBUTE_PATH = `/en/latest/contributing.html`;
const ABOUT_PATH = `${SOLIDITY_HOME_URL}/about`;
const FORUM_URL = "https://forum.soliditylang.org/";
const NAV_LINKS = [
{ name: "Blog", href: BLOG_URL },
{ name: "Documentation", href: DOCS_URL },
{ name: "Use cases", href: USE_CASES_PATH },
{ name: "Contribute", href: CONTRIBUTE_PATH },
{ name: "About", href: ABOUT_PATH },
{ name: "Forum", href: FORUM_URL },
{ name: window.NAV_LINKS.blog, href: BLOG_URL },
{ name: window.NAV_LINKS.documentation, href: DOCS_URL },
{ name: window.NAV_LINKS.use_cases, href: USE_CASES_PATH },
{ name: window.NAV_LINKS.contribute, href: CONTRIBUTE_PATH },
{ name: window.NAV_LINKS.about, href: ABOUT_PATH },
{ name: window.NAV_LINKS.forum, href: FORUM_URL },
];

const MOBILE_MENU_TOGGLE_CLASS = "shift";
Expand Down
Loading