mirror of
https://github.com/pezkuwichain/revive.git
synced 2026-06-14 23:51:06 +00:00
Compare commits
1 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| 2913fbc494 |
@@ -1,52 +0,0 @@
|
|||||||
name: Build
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
branches: ["main"]
|
|
||||||
pull_request:
|
|
||||||
branches: ["main"]
|
|
||||||
|
|
||||||
env:
|
|
||||||
CARGO_TERM_COLOR: always
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
build-ubuntu-x86:
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v4
|
|
||||||
|
|
||||||
- name: Install solc
|
|
||||||
run: |
|
|
||||||
mkdir -p solc
|
|
||||||
curl -sSL --output solc/solc https://github.com/ethereum/solidity/releases/download/v0.8.26/solc-static-linux
|
|
||||||
chmod +x solc/solc
|
|
||||||
echo "$(pwd)/solc/" >> $GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Install LLVM
|
|
||||||
run: |
|
|
||||||
curl -sSL --output llvm.tar.xz https://github.com/llvm/llvm-project/releases/download/llvmorg-18.1.4/clang+llvm-18.1.4-x86_64-linux-gnu-ubuntu-18.04.tar.xz
|
|
||||||
tar Jxf llvm.tar.xz
|
|
||||||
mv clang+llvm-18.1.4-x86_64-linux-gnu-ubuntu-18.04 llvm18/
|
|
||||||
echo "$(pwd)/llvm18/bin" >> $GITHUB_PATH
|
|
||||||
|
|
||||||
- name: Install apt dependencies
|
|
||||||
run: sudo apt update && sudo apt install -y libtinfo5
|
|
||||||
|
|
||||||
- name: Format
|
|
||||||
run: make format
|
|
||||||
|
|
||||||
- name: Clippy
|
|
||||||
run: make clippy
|
|
||||||
|
|
||||||
- name: Test cargo workspace
|
|
||||||
run: make test-workspace
|
|
||||||
|
|
||||||
- name: Test CLI
|
|
||||||
run: make test-cli
|
|
||||||
|
|
||||||
- uses: actions/upload-artifact@v4
|
|
||||||
with:
|
|
||||||
name: ${{ github.job }}-resolc
|
|
||||||
path: ./target/release/resolc
|
|
||||||
retention-days: 1
|
|
||||||
+1
-3
@@ -11,6 +11,4 @@
|
|||||||
node_modules
|
node_modules
|
||||||
artifacts
|
artifacts
|
||||||
tmp
|
tmp
|
||||||
package-lock.json
|
package-lock.json
|
||||||
/*.html
|
|
||||||
/build
|
|
||||||
Generated
+378
-8476
File diff suppressed because it is too large
Load Diff
+6
-34
@@ -2,30 +2,7 @@
|
|||||||
resolver = "2"
|
resolver = "2"
|
||||||
members = ["crates/*"]
|
members = ["crates/*"]
|
||||||
|
|
||||||
[workspace.package]
|
|
||||||
version = "0.1.0"
|
|
||||||
authors = [
|
|
||||||
"Cyrill Leutwiler <cyrill@parity.io>",
|
|
||||||
"Parity Technologies <admin@parity.io>",
|
|
||||||
]
|
|
||||||
license = "MIT/Apache-2.0"
|
|
||||||
edition = "2021"
|
|
||||||
repository = "https://github.com/xermicus/revive"
|
|
||||||
|
|
||||||
[workspace.dependencies]
|
[workspace.dependencies]
|
||||||
revive-benchmarks = { version = "0.1.0", path = "crates/benchmarks" }
|
|
||||||
revive-builtins = { version = "0.1.0", path = "crates/builtins" }
|
|
||||||
revive-common = { version = "0.1.0", path = "crates/common" }
|
|
||||||
revive-differential = { version = "0.1.0", path = "crates/differential" }
|
|
||||||
revive-integration = { version = "0.1.0", path = "crates/integration" }
|
|
||||||
revive-linker = { version = "0.1.0", path = "crates/linker" }
|
|
||||||
lld-sys = { version = "0.1.0", path = "crates/lld-sys" }
|
|
||||||
revive-llvm-context = { version = "0.1.0", path = "crates/llvm-context" }
|
|
||||||
pallet-contracts-pvm-llapi = { version = "0.1.0", path = "crates/pallet-contracts-pvm-llapi" }
|
|
||||||
revive-runner = { version = "0.1.0", path = "crates/runner" }
|
|
||||||
revive-solidity = { version = "0.1.0", path = "crates/solidity" }
|
|
||||||
revive-stdlib = { version = "0.1.0", path = "crates/stdlib" }
|
|
||||||
|
|
||||||
hex = "0.4"
|
hex = "0.4"
|
||||||
petgraph = "0.6"
|
petgraph = "0.6"
|
||||||
cc = "1.0"
|
cc = "1.0"
|
||||||
@@ -48,32 +25,27 @@ thiserror = "1.0"
|
|||||||
which = "5.0"
|
which = "5.0"
|
||||||
path-slash = "0.2"
|
path-slash = "0.2"
|
||||||
rayon = "1.8"
|
rayon = "1.8"
|
||||||
clap = { version = "4", default-features = false, features = ["derive"] }
|
structopt = { version = "0.3", default-features = false }
|
||||||
rand = "0.8"
|
rand = "0.8"
|
||||||
polkavm-common = { git = "https://github.com/koute/polkavm.git", rev = "360029e" }
|
polkavm-common = { branch = "master_byteswap", git = "https://github.com/koute/polkavm.git" }
|
||||||
polkavm-linker = { git = "https://github.com/koute/polkavm.git", rev = "360029e" }
|
polkavm-linker = { branch = "master_byteswap", git = "https://github.com/koute/polkavm.git" }
|
||||||
polkavm-disassembler = { git = "https://github.com/koute/polkavm.git", rev = "360029e" }
|
polkavm = { branch = "master_byteswap", git = "https://github.com/koute/polkavm.git" }
|
||||||
polkavm = { git = "https://github.com/koute/polkavm.git", rev = "360029e" }
|
|
||||||
alloy-primitives = "0.6"
|
alloy-primitives = "0.6"
|
||||||
alloy-sol-types = "0.6"
|
alloy-sol-types = "0.6"
|
||||||
env_logger = { version = "0.10.0", default-features = false }
|
env_logger = { version = "0.10.0", default-features = false }
|
||||||
serde_stacker = "0.1"
|
serde_stacker = "0.1"
|
||||||
criterion = { version = "0.5", features = ["html_reports"] }
|
criterion = { version = "0.5", features = ["html_reports"] }
|
||||||
log = { version = "0.4" }
|
|
||||||
codec = { version = "3.6.12", default-features = false, package = "parity-scale-codec" }
|
|
||||||
scale-info = { version = "2.11.1", default-features = false }
|
|
||||||
polkadot-sdk = { git = "https://github.com/paritytech/polkadot-sdk", rev = "559fa1db0594a81d5dbf343613ba2f3fc16708da" }
|
|
||||||
|
|
||||||
# Benchmarking against EVM
|
# Benchmarking against EVM
|
||||||
primitive-types = { version = "0.12", features = ["codec"] }
|
primitive-types = { version = "0.12", features = ["codec"] }
|
||||||
evm-interpreter = { git = "https://github.com/xermicus/evm.git", branch = "separate-compilation" }
|
evm-interpreter = { git = "https://github.com/xermicus/evm.git", branch = "separate-compilation" }
|
||||||
|
|
||||||
[workspace.dependencies.inkwell]
|
[workspace.dependencies.inkwell]
|
||||||
version = "0.5"
|
git = "https://github.com/TheDan64/inkwell.git"
|
||||||
|
commit = "d916c66"
|
||||||
default-features = false
|
default-features = false
|
||||||
features = ["serde", "llvm18-0", "no-libffi-linking", "target-riscv"]
|
features = ["serde", "llvm18-0", "no-libffi-linking", "target-riscv"]
|
||||||
|
|
||||||
[profile.benchmark]
|
[profile.benchmark]
|
||||||
inherits = "release"
|
inherits = "release"
|
||||||
lto = true
|
lto = true
|
||||||
codegen-units = 1
|
|
||||||
|
|||||||
@@ -1,4 +1,4 @@
|
|||||||
.PHONY: install format test test-solidity test-cli test-integration test-workspace clean docs docs-build
|
.PHONY: install test test-solidity test-cli test-integration clean
|
||||||
|
|
||||||
install: install-bin install-npm
|
install: install-bin install-npm
|
||||||
|
|
||||||
@@ -8,11 +8,7 @@ install-bin:
|
|||||||
install-npm:
|
install-npm:
|
||||||
npm install && npm fund
|
npm install && npm fund
|
||||||
|
|
||||||
format:
|
test: install test-integration test-cli test-solidity
|
||||||
cargo fmt --all --check
|
|
||||||
|
|
||||||
test: format clippy test-cli test-workspace
|
|
||||||
cargo test --workspace
|
|
||||||
|
|
||||||
test-integration: install-bin
|
test-integration: install-bin
|
||||||
cargo test --package revive-integration
|
cargo test --package revive-integration
|
||||||
@@ -20,9 +16,6 @@ test-integration: install-bin
|
|||||||
test-solidity: install
|
test-solidity: install
|
||||||
cargo test --package revive-solidity
|
cargo test --package revive-solidity
|
||||||
|
|
||||||
test-workspace: install
|
|
||||||
cargo test --workspace
|
|
||||||
|
|
||||||
test-cli: install
|
test-cli: install
|
||||||
npm run test:cli
|
npm run test:cli
|
||||||
|
|
||||||
@@ -45,14 +38,6 @@ bench: install-bin
|
|||||||
cargo criterion --all --features bench-evm,bench-pvm --message-format=json \
|
cargo criterion --all --features bench-evm,bench-pvm --message-format=json \
|
||||||
| criterion-table > crates/benchmarks/BENCHMARKS.md
|
| criterion-table > crates/benchmarks/BENCHMARKS.md
|
||||||
|
|
||||||
clippy:
|
|
||||||
cargo clippy --all-features --workspace --tests --benches
|
|
||||||
|
|
||||||
docs: docs-build
|
|
||||||
mdbook serve --open docs/
|
|
||||||
|
|
||||||
docs-build:
|
|
||||||
mdbook test docs/ && mdbook build docs/
|
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
cargo clean ; \
|
cargo clean ; \
|
||||||
|
|||||||
@@ -1,38 +1,38 @@
|
|||||||

|
|
||||||
|
|
||||||
# revive
|
# revive
|
||||||
|
|
||||||
YUL and EVM assembly recompiler to LLVM, targetting RISC-V on [PolkaVM](https://github.com/koute/polkavm).
|
YUL and EVM bytecode recompiler to LLVM, targetting RISC-V on PolkaVM.
|
||||||
|
|
||||||
[Frontend](https://github.com/matter-labs/era-compiler-solidity) and [code generator](https://github.com/matter-labs/era-compiler-llvm-context) are based of ZKSync `zksolc`.
|
Code bases of [frontend](https://github.com/matter-labs/era-compiler-solidity) and [code generator](https://github.com/matter-labs/era-compiler-llvm-context) are forked and adapted from ZKSync `zksolc`.
|
||||||
|
|
||||||
## Status
|
# Status
|
||||||
|
|
||||||
This is experimental software in active development and not ready just yet for production usage.
|
Currently, primary goal of this codebase is to allow for benchmarks comparing performance against ink! and solang artifacts as well as EVM interpreters.
|
||||||
|
|
||||||
Discussion around the development is hosted on the [Polkadot Forum](https://forum.polkadot.network/t/contracts-update-solidity-on-polkavm/6949#a-new-solidity-compiler-1).
|
# TODO
|
||||||
|
|
||||||
## Installation
|
The project is in a very early PoC phase. Don't yet expect the produced code to be working nor to be correct for anything more than a basic flipper contract at the current stage.
|
||||||
|
|
||||||
`resolc` depends on the [solc](https://github.com/ethereum/solidity) binary installed on your system.
|
- [ ] Efficient implementations of byte swaps, memset, memmove, mulmod and the like
|
||||||
|
- [ ] Use `drink` for integration tests once we have 64bit support in PolkaVM
|
||||||
To install the `resolc` Solidity frontend executable:
|
- [x] Use PolkaVM allocator for heap space
|
||||||
|
- [ ] Exercice `schlau` and possibly `smart-bench` benchmark cases
|
||||||
```bash
|
- [x] Tests currently rely on the binary being in $PATH, which is very annoying and requires `cargo install` all the times
|
||||||
bash build-llvm.sh
|
- [ ] Define how to do deployments
|
||||||
export PATH=${PWD}/llvm18.0/bin:$PATH
|
- [ ] Calling conventions for calling other contracts
|
||||||
make install-bin
|
- [ ] Runtime environment isn't fully figured out; implement all EVM builtins
|
||||||
resolc --version
|
- [ ] Iron out many leftovers from the ZKVM target
|
||||||
```
|
- [ ] Use of exceptions
|
||||||
|
- [ ] Change long calls (contract calls)
|
||||||
### LLVM
|
- [ ] Check all alignments, attributes etc. if they still make sense with our target
|
||||||
|
- [x] Custom extensions related to zk VM
|
||||||
`revive` requires a build of LLVM 18.1.4 or later including `compiler-rt`. Use the provided [build-llvm.sh](build-llvm.sh) build script to compile a compatible LLVM build locally in `$PWD/llvm18.0` (don't forget to add that to `$PATH` afterwards).
|
- [ ] `Active Pointer`: Redundant to calldata forwarding in pallet contracts. [Mainly used here](https://github.com/matter-labs/era-contracts/blob/4aa7006153ad571643342dff22c16eaf4a70fdc1/system-contracts/contracts/libraries/EfficientCall.sol) however we could offer a similar optimization.
|
||||||
|
- []
|
||||||
### Development
|
- [ ] Add a lot more test cases
|
||||||
|
- [ ] Debug information
|
||||||
Please consult the [Makefile](Makefile) targets to learn how to run tests and benchmarks.
|
- [ ] Look for and implement further optimizations
|
||||||
Ensure that your branch passes `make test` locally when submitting a pull request.
|
- [ ] Differential testing against EVM
|
||||||
|
- [x] Switch to LLVM 18 which has `RV{32,64}E` targets upstream
|
||||||
## Design overview
|
- [ ] Minimize scope of "stdlib"
|
||||||
`revive` uses [solc](https://github.com/ethereum/solidity/), the Ethereum Solidity compiler, as the [Solidity frontend](crates/solidity/src/lib.rs) to process smart contracts written in Solidity. The YUL IR code (or legacy EVM assembly as a fallback for older `solc` versions) emitted by `solc` is then translated to LLVM IR, targetting a runtime similar to [Polkadots `contracts` pallet](https://docs.rs/pallet-contracts/latest/pallet_contracts/api_doc/trait.Current.html).
|
- [ ] Document differences from EVM
|
||||||
|
- [ ] Audit for bugs and correctness
|
||||||
|
- [ ] Rebranding
|
||||||
|
|||||||
+38
-60
@@ -3,7 +3,7 @@
|
|||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
|
||||||
INSTALL_DIR="${PWD}/llvm18.0"
|
INSTALL_DIR="${PWD}/llvm18.0"
|
||||||
mkdir -p ${INSTALL_DIR}
|
mkdir -p $INSTALL_DIR
|
||||||
|
|
||||||
|
|
||||||
# Clone LLVM 18 (any revision after commit bd32aaa is supposed to work)
|
# Clone LLVM 18 (any revision after commit bd32aaa is supposed to work)
|
||||||
@@ -13,17 +13,11 @@ fi
|
|||||||
|
|
||||||
|
|
||||||
# Build LLVM, clang
|
# Build LLVM, clang
|
||||||
LLVM_SRC_PREFIX=${PWD}/llvm-project
|
cd llvm-project
|
||||||
LLVM_SRC_DIR=${LLVM_SRC_PREFIX}/llvm
|
|
||||||
LLVM_BUILD_DIR=${PWD}/build/llvm
|
|
||||||
if [ ! -d ${LLVM_BUILD_DIR} ] ; then
|
|
||||||
mkdir -p ${LLVM_BUILD_DIR}
|
|
||||||
fi
|
|
||||||
|
|
||||||
cmake -G Ninja \
|
mkdir -p build
|
||||||
-S ${LLVM_SRC_DIR} \
|
cd build
|
||||||
-B ${LLVM_BUILD_DIR} \
|
cmake -G Ninja -DLLVM_ENABLE_ASSERTIONS=On \
|
||||||
-DLLVM_ENABLE_ASSERTIONS=On \
|
|
||||||
-DLLVM_ENABLE_TERMINFO=Off \
|
-DLLVM_ENABLE_TERMINFO=Off \
|
||||||
-DLLVM_ENABLE_LIBXML2=Off \
|
-DLLVM_ENABLE_LIBXML2=Off \
|
||||||
-DLLVM_ENABLE_ZLIB=Off \
|
-DLLVM_ENABLE_ZLIB=Off \
|
||||||
@@ -31,61 +25,45 @@ cmake -G Ninja \
|
|||||||
-DLLVM_TARGETS_TO_BUILD='RISCV' \
|
-DLLVM_TARGETS_TO_BUILD='RISCV' \
|
||||||
-DLLVM_ENABLE_ZSTD=Off \
|
-DLLVM_ENABLE_ZSTD=Off \
|
||||||
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
-DCMAKE_BUILD_TYPE=MinSizeRel \
|
||||||
-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR}
|
-DCMAKE_INSTALL_PREFIX=$INSTALL_DIR \
|
||||||
|
../llvm
|
||||||
|
|
||||||
|
ninja
|
||||||
|
ninja install
|
||||||
|
|
||||||
cmake --build ${LLVM_BUILD_DIR}
|
|
||||||
cmake --install ${LLVM_BUILD_DIR}
|
|
||||||
|
|
||||||
# Build compiler builtins
|
# Build compiler builtins
|
||||||
COMPILER_RT_SRC_DIR=${LLVM_SRC_PREFIX}/compiler-rt
|
cd ../compiler-rt
|
||||||
COMPILER_RT_BUILD_DIR=${PWD}/build/compiler-rt
|
mkdir -p build
|
||||||
if [ ! -d ${COMPILER_RT_BUILD_DIR} ] ; then
|
cd build
|
||||||
mkdir -p ${COMPILER_RT_BUILD_DIR}
|
|
||||||
fi
|
|
||||||
|
|
||||||
build_compiler_rt() {
|
CFLAGS="--target=riscv32 -march=rv32em -mabi=ilp32e -nostdlib -nodefaultlibs -mcpu=generic-rv32"
|
||||||
case "$1" in
|
cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DCMAKE_INSTALL_PREFIX=$INSTALL_DIR \
|
||||||
64) TARGET_ABI=lp64e ;;
|
-DCOMPILER_RT_BUILD_BUILTINS=ON \
|
||||||
32) TARGET_ABI=ilp32e ;;
|
-DCOMPILER_RT_BUILD_LIBFUZZER=OFF \
|
||||||
*) exit -1
|
-DCOMPILER_RT_BUILD_MEMPROF=OFF \
|
||||||
esac
|
-DCOMPILER_RT_BUILD_PROFILE=OFF \
|
||||||
CFLAGS="--target=riscv${1} -march=rv${1}em -mabi=${TARGET_ABI} -mcpu=generic-rv${1} -nostdlib -nodefaultlibs"
|
-DCOMPILER_RT_BUILD_SANITIZERS=OFF \
|
||||||
|
-DCOMPILER_RT_BUILD_XRAY=OFF \
|
||||||
|
-DCMAKE_C_COMPILER=$INSTALL_DIR/bin/clang \
|
||||||
|
-DCMAKE_C_COMPILER_TARGET="riscv32" \
|
||||||
|
-DCMAKE_ASM_COMPILER_TARGET="riscv32" \
|
||||||
|
-DCMAKE_AR=$INSTALL_DIR/bin/llvm-ar \
|
||||||
|
-DCMAKE_NM=$INSTALL_DIR/bin/llvm-nm \
|
||||||
|
-DCMAKE_RANLIB=$INSTALL_DIR/bin/llvm-ranlib \
|
||||||
|
-DCOMPILER_RT_BAREMETAL_BUILD=ON \
|
||||||
|
-DLLVM_CONFIG_PATH=$INSTALL_DIR/bin/llvm-config \
|
||||||
|
-DCMAKE_C_FLAGS="$CFLAGS" \
|
||||||
|
-DCMAKE_ASM_FLAGS="$CFLAGS" \
|
||||||
|
-DCOMPILER_RT_TEST_COMPILER=$INSTALL_DIR/bin/clang \
|
||||||
|
-DCMAKE_CXX_FLAGS="$CFLAGS" \
|
||||||
|
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON \
|
||||||
|
-DCMAKE_SYSTEM_NAME=Linux \
|
||||||
|
..
|
||||||
|
|
||||||
cmake -G Ninja \
|
ninja
|
||||||
-S ${COMPILER_RT_SRC_DIR} \
|
ninja install
|
||||||
-B ${COMPILER_RT_BUILD_DIR} \
|
|
||||||
-DCMAKE_BUILD_TYPE=Release \
|
|
||||||
-DCMAKE_INSTALL_PREFIX=${INSTALL_DIR} \
|
|
||||||
-DCOMPILER_RT_BUILD_BUILTINS=ON \
|
|
||||||
-DCOMPILER_RT_BUILD_LIBFUZZER=OFF \
|
|
||||||
-DCOMPILER_RT_BUILD_MEMPROF=OFF \
|
|
||||||
-DCOMPILER_RT_BUILD_PROFILE=OFF \
|
|
||||||
-DCOMPILER_RT_BUILD_SANITIZERS=OFF \
|
|
||||||
-DCOMPILER_RT_BUILD_XRAY=OFF \
|
|
||||||
-DCMAKE_C_COMPILER=${INSTALL_DIR}/bin/clang \
|
|
||||||
-DCMAKE_C_COMPILER_TARGET=riscv${1} \
|
|
||||||
-DCMAKE_ASM_COMPILER_TARGET=riscv${1} \
|
|
||||||
-DCMAKE_CXX_COMPILER_TARGET=riscv${1} \
|
|
||||||
-DCMAKE_C_TARGET_BITS=riscv${1} \
|
|
||||||
-DCMAKE_ASM_TARGET_BITS=riscv${1} \
|
|
||||||
-DCMAKE_AR=${INSTALL_DIR}/bin/llvm-ar \
|
|
||||||
-DCMAKE_NM=${INSTALL_DIR}/bin/llvm-nm \
|
|
||||||
-DCMAKE_RANLIB=${INSTALL_DIR}/bin/llvm-ranlib \
|
|
||||||
-DCOMPILER_RT_BAREMETAL_BUILD=ON \
|
|
||||||
-DLLVM_CONFIG_PATH=${INSTALL_DIR}/bin/llvm-config \
|
|
||||||
-DCMAKE_C_FLAGS="${CFLAGS}" \
|
|
||||||
-DCMAKE_ASM_FLAGS="${CFLAGS}" \
|
|
||||||
-DCOMPILER_RT_TEST_COMPILER=${INSTALL_DIR}/bin/clang \
|
|
||||||
-DCMAKE_CXX_FLAGS="${CFLAGS}" \
|
|
||||||
-DCMAKE_SYSTEM_NAME=unknown \
|
|
||||||
-DCOMPILER_RT_DEFAULT_TARGET_ONLY=ON
|
|
||||||
|
|
||||||
cmake --build ${COMPILER_RT_BUILD_DIR}
|
|
||||||
cmake --install ${COMPILER_RT_BUILD_DIR}
|
|
||||||
}
|
|
||||||
|
|
||||||
build_compiler_rt 32
|
|
||||||
build_compiler_rt 64
|
|
||||||
|
|
||||||
echo ""
|
echo ""
|
||||||
echo "success"
|
echo "success"
|
||||||
|
|||||||
@@ -1,11 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revive-benchmarks"
|
name = "revive-benchmarks"
|
||||||
version.workspace = true
|
version = "0.1.0"
|
||||||
license.workspace = true
|
edition = "2021"
|
||||||
edition.workspace = true
|
authors = [
|
||||||
repository.workspace = true
|
"Cyrill Leutwiler <cyrill@parity.io>",
|
||||||
authors.workspace = true
|
]
|
||||||
description = "revive compiler benchmarks"
|
|
||||||
|
|
||||||
[features]
|
[features]
|
||||||
default = ["bench-pvm-interpreter"]
|
default = ["bench-pvm-interpreter"]
|
||||||
@@ -17,8 +16,8 @@ bench-extensive = []
|
|||||||
[dependencies]
|
[dependencies]
|
||||||
hex = { workspace = true }
|
hex = { workspace = true }
|
||||||
polkavm = { workspace = true }
|
polkavm = { workspace = true }
|
||||||
revive-integration = { workspace = true }
|
revive-integration = { path = "../integration" }
|
||||||
revive-differential = { workspace = true, optional = true }
|
revive-differential = { path = "../differential", optional = true }
|
||||||
alloy-primitives = { workspace = true }
|
alloy-primitives = { workspace = true }
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
|
|||||||
@@ -1,8 +1,14 @@
|
|||||||
use alloy_primitives::U256;
|
#[cfg(feature = "bench-extensive")]
|
||||||
|
use std::time::Duration;
|
||||||
|
|
||||||
use criterion::{
|
use criterion::{
|
||||||
criterion_group, criterion_main, measurement::Measurement, BenchmarkGroup, BenchmarkId,
|
criterion_group, criterion_main, measurement::Measurement, BenchmarkGroup, BenchmarkId,
|
||||||
Criterion,
|
Criterion,
|
||||||
};
|
};
|
||||||
|
#[cfg(any(feature = "bench-pvm-interpreter", feature = "bench-pvm"))]
|
||||||
|
use polkavm::BackendKind;
|
||||||
|
|
||||||
|
use revive_benchmarks::prepare_pvm;
|
||||||
use revive_integration::cases::Contract;
|
use revive_integration::cases::Contract;
|
||||||
|
|
||||||
fn bench<P, L, I, M>(mut group: BenchmarkGroup<'_, M>, parameters: &[P], labels: &[L], contract: I)
|
fn bench<P, L, I, M>(mut group: BenchmarkGroup<'_, M>, parameters: &[P], labels: &[L], contract: I)
|
||||||
@@ -18,118 +24,82 @@ where
|
|||||||
#[cfg(feature = "bench-evm")]
|
#[cfg(feature = "bench-evm")]
|
||||||
{
|
{
|
||||||
let contract = contract(p.clone());
|
let contract = contract(p.clone());
|
||||||
|
let vm = revive_differential::prepare(contract.evm_runtime, contract.calldata);
|
||||||
group.bench_with_input(BenchmarkId::new("EVM", l), p, move |b, _| {
|
group.bench_with_input(BenchmarkId::new("EVM", l), p, move |b, _| {
|
||||||
b.iter(|| {
|
b.iter(|| {
|
||||||
revive_differential::execute(revive_differential::prepare(
|
revive_differential::execute(vm.clone());
|
||||||
contract.evm_runtime.clone(),
|
|
||||||
contract.calldata.clone(),
|
|
||||||
));
|
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(not(feature = "bench-extensive"))]
|
#[cfg(feature = "bench-pvm-interpreter")]
|
||||||
{
|
{
|
||||||
#[cfg(all(feature = "bench-pvm-interpreter", not(feature = "bench-extensive")))]
|
let contract = contract(p.clone());
|
||||||
{
|
let (state, mut instance, export) = prepare_pvm(
|
||||||
let contract = contract(p.clone());
|
&contract.pvm_runtime,
|
||||||
let (transaction, mut instance, export) = revive_benchmarks::prepare_pvm(
|
&contract.calldata,
|
||||||
&contract.pvm_runtime,
|
BackendKind::Interpreter,
|
||||||
contract.calldata,
|
);
|
||||||
polkavm::BackendKind::Interpreter,
|
group.bench_with_input(BenchmarkId::new("PVMInterpreter", l), p, |b, _| {
|
||||||
);
|
b.iter(|| {
|
||||||
group.bench_with_input(BenchmarkId::new("PVMInterpreter", l), p, |b, _| {
|
revive_integration::mock_runtime::call(state.clone(), &mut instance, export);
|
||||||
b.iter(|| {
|
|
||||||
let _ = transaction.clone().call_on(&mut instance, export);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
#[cfg(all(feature = "bench-pvm", not(feature = "bench-extensive")))]
|
|
||||||
{
|
|
||||||
let contract = contract(p.clone());
|
|
||||||
let (transaction, mut instance, export) = revive_benchmarks::prepare_pvm(
|
|
||||||
&contract.pvm_runtime,
|
|
||||||
contract.calldata,
|
|
||||||
polkavm::BackendKind::Compiler,
|
|
||||||
);
|
|
||||||
group.bench_with_input(BenchmarkId::new("PVM", l), p, |b, _| {
|
|
||||||
b.iter(|| {
|
|
||||||
let _ = transaction.clone().call_on(&mut instance, export);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
#[cfg(feature = "bench-extensive")]
|
|
||||||
|
#[cfg(feature = "bench-pvm")]
|
||||||
{
|
{
|
||||||
use revive_benchmarks::instantiate_engine;
|
let contract = contract(p.clone());
|
||||||
use revive_integration::mock_runtime::{instantiate_module, recompile_code, State};
|
let (state, mut instance, export) = prepare_pvm(
|
||||||
|
&contract.pvm_runtime,
|
||||||
#[cfg(feature = "bench-pvm-interpreter")]
|
&contract.calldata,
|
||||||
{
|
BackendKind::Compiler,
|
||||||
let contract = contract(p.clone());
|
);
|
||||||
let engine = instantiate_engine(polkavm::BackendKind::Interpreter);
|
group.bench_with_input(BenchmarkId::new("PVM", l), p, |b, _| {
|
||||||
let module = recompile_code(&contract.pvm_runtime, &engine);
|
b.iter(|| {
|
||||||
let transaction = State::default()
|
revive_integration::mock_runtime::call(state.clone(), &mut instance, export);
|
||||||
.transaction()
|
|
||||||
.with_default_account(&contract.pvm_runtime)
|
|
||||||
.calldata(contract.calldata);
|
|
||||||
group.bench_with_input(BenchmarkId::new("PVMInterpreter", l), p, |b, _| {
|
|
||||||
b.iter(|| {
|
|
||||||
let (mut instance, export) = instantiate_module(&module, &engine);
|
|
||||||
let _ = transaction.clone().call_on(&mut instance, export);
|
|
||||||
});
|
|
||||||
});
|
});
|
||||||
}
|
});
|
||||||
|
|
||||||
#[cfg(feature = "bench-pvm")]
|
|
||||||
{
|
|
||||||
let contract = contract(p.clone());
|
|
||||||
let engine = instantiate_engine(polkavm::BackendKind::Compiler);
|
|
||||||
let module = recompile_code(&contract.pvm_runtime, &engine);
|
|
||||||
let transaction = State::default()
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(&contract.pvm_runtime)
|
|
||||||
.calldata(contract.calldata);
|
|
||||||
group.bench_with_input(BenchmarkId::new("PVM", l), p, |b, _| {
|
|
||||||
b.iter(|| {
|
|
||||||
let (mut instance, export) = instantiate_module(&module, &engine);
|
|
||||||
let _ = transaction.clone().call_on(&mut instance, export);
|
|
||||||
});
|
|
||||||
});
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
group.finish();
|
group.finish();
|
||||||
}
|
}
|
||||||
|
|
||||||
fn group<'error, M>(c: &'error mut Criterion<M>, group_name: &str) -> BenchmarkGroup<'error, M>
|
#[cfg(feature = "bench-extensive")]
|
||||||
|
fn group_extensive<'error, M>(
|
||||||
|
c: &'error mut Criterion<M>,
|
||||||
|
group_name: &str,
|
||||||
|
) -> BenchmarkGroup<'error, M>
|
||||||
where
|
where
|
||||||
M: Measurement,
|
M: Measurement,
|
||||||
{
|
{
|
||||||
#[cfg(feature = "bench-extensive")]
|
let mut group = c.benchmark_group(group_name);
|
||||||
{
|
group
|
||||||
let mut group = c.benchmark_group(group_name);
|
.sample_size(10)
|
||||||
group.sample_size(10);
|
.measurement_time(Duration::from_secs(60));
|
||||||
group
|
group
|
||||||
}
|
|
||||||
|
|
||||||
#[cfg(not(feature = "bench-extensive"))]
|
|
||||||
return c.benchmark_group(group_name);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn bench_baseline(c: &mut Criterion) {
|
fn bench_baseline(c: &mut Criterion) {
|
||||||
let group = group(c, "Baseline");
|
|
||||||
let parameters = &[0u8];
|
let parameters = &[0u8];
|
||||||
|
|
||||||
bench(group, parameters, parameters, |_| Contract::baseline());
|
bench(
|
||||||
|
c.benchmark_group("Baseline"),
|
||||||
|
parameters,
|
||||||
|
parameters,
|
||||||
|
|_| Contract::baseline(),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn bench_odd_product(c: &mut Criterion) {
|
fn bench_odd_product(c: &mut Criterion) {
|
||||||
let group = group(c, "OddPorduct");
|
|
||||||
#[cfg(feature = "bench-extensive")]
|
#[cfg(feature = "bench-extensive")]
|
||||||
let parameters = &[300000, 1200000, 12000000, 180000000, 720000000];
|
let group = group_extensive(c, "OddProduct");
|
||||||
|
#[cfg(not(feature = "bench-extensive"))]
|
||||||
|
let group = c.benchmark_group("OddProduct");
|
||||||
|
|
||||||
|
#[cfg(feature = "bench-extensive")]
|
||||||
|
let parameters = &[2_000_000i32, 4_000_000, 8_000_000, 120_000_000];
|
||||||
#[cfg(not(feature = "bench-extensive"))]
|
#[cfg(not(feature = "bench-extensive"))]
|
||||||
let parameters = &[10_000, 100_000];
|
let parameters = &[10_000, 100_000];
|
||||||
|
|
||||||
@@ -137,9 +107,13 @@ fn bench_odd_product(c: &mut Criterion) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn bench_triangle_number(c: &mut Criterion) {
|
fn bench_triangle_number(c: &mut Criterion) {
|
||||||
let group = group(c, "TriangleNumber");
|
|
||||||
#[cfg(feature = "bench-extensive")]
|
#[cfg(feature = "bench-extensive")]
|
||||||
let parameters = &[360000, 1440000, 14400000, 216000000, 864000000];
|
let group = group_extensive(c, "TriangleNumber");
|
||||||
|
#[cfg(not(feature = "bench-extensive"))]
|
||||||
|
let group = c.benchmark_group("TriangleNumber");
|
||||||
|
|
||||||
|
#[cfg(feature = "bench-extensive")]
|
||||||
|
let parameters = &[3_000_000i64, 6_000_000, 12_000_000, 180_000_000];
|
||||||
#[cfg(not(feature = "bench-extensive"))]
|
#[cfg(not(feature = "bench-extensive"))]
|
||||||
let parameters = &[10_000, 100_000];
|
let parameters = &[10_000, 100_000];
|
||||||
|
|
||||||
@@ -147,53 +121,54 @@ fn bench_triangle_number(c: &mut Criterion) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn bench_fibonacci_recurisve(c: &mut Criterion) {
|
fn bench_fibonacci_recurisve(c: &mut Criterion) {
|
||||||
let group = group(c, "FibonacciRecursive");
|
|
||||||
#[cfg(feature = "bench-extensive")]
|
|
||||||
let parameters = [24, 27, 31, 36, 39]
|
|
||||||
.iter()
|
|
||||||
.map(|p| U256::from(*p))
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
#[cfg(not(feature = "bench-extensive"))]
|
#[cfg(not(feature = "bench-extensive"))]
|
||||||
let parameters = [12, 16, 20]
|
let group = c.benchmark_group("FibonacciRecursive");
|
||||||
.iter()
|
#[cfg(feature = "bench-extensive")]
|
||||||
.map(|p| U256::from(*p))
|
let group = group_extensive(c, "FibonacciRecursive");
|
||||||
.collect::<Vec<_>>();
|
|
||||||
|
|
||||||
bench(group, ¶meters, ¶meters, Contract::fib_recursive);
|
#[cfg(feature = "bench-extensive")]
|
||||||
|
let parameters = &[26, 30, 34, 38];
|
||||||
|
#[cfg(not(feature = "bench-extensive"))]
|
||||||
|
let parameters = &[12, 16, 20];
|
||||||
|
|
||||||
|
bench(group, parameters, parameters, Contract::fib_recursive);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn bench_fibonacci_iterative(c: &mut Criterion) {
|
fn bench_fibonacci_iterative(c: &mut Criterion) {
|
||||||
let group = group(c, "FibonacciIterative");
|
|
||||||
#[cfg(feature = "bench-extensive")]
|
|
||||||
let parameters = [256, 162500, 650000, 6500000, 100000000, 400000000]
|
|
||||||
.iter()
|
|
||||||
.map(|p| U256::from(*p))
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
#[cfg(not(feature = "bench-extensive"))]
|
#[cfg(not(feature = "bench-extensive"))]
|
||||||
let parameters = [64, 128, 256]
|
let group = c.benchmark_group("FibonacciIterative");
|
||||||
.iter()
|
#[cfg(feature = "bench-extensive")]
|
||||||
.map(|p| U256::from(*p))
|
let group = group_extensive(c, "FibonacciIterative");
|
||||||
.collect::<Vec<_>>();
|
|
||||||
|
|
||||||
bench(group, ¶meters, ¶meters, Contract::fib_iterative);
|
#[cfg(feature = "bench-extensive")]
|
||||||
|
let parameters = &[256, 100000, 1000000, 100000000];
|
||||||
|
#[cfg(not(feature = "bench-extensive"))]
|
||||||
|
let parameters = &[64, 128, 256];
|
||||||
|
|
||||||
|
bench(group, parameters, parameters, Contract::fib_iterative);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn bench_fibonacci_binet(c: &mut Criterion) {
|
fn bench_fibonacci_binet(c: &mut Criterion) {
|
||||||
let group = group(c, "FibonacciBinet");
|
let parameters = &[64, 128, 256];
|
||||||
let parameters = [64, 128, 256]
|
|
||||||
.iter()
|
|
||||||
.map(|p| U256::from(*p))
|
|
||||||
.collect::<Vec<_>>();
|
|
||||||
|
|
||||||
bench(group, ¶meters, ¶meters, Contract::fib_binet);
|
bench(
|
||||||
|
c.benchmark_group("FibonacciBinet"),
|
||||||
|
parameters,
|
||||||
|
parameters,
|
||||||
|
Contract::fib_binet,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
fn bench_sha1(c: &mut Criterion) {
|
fn bench_sha1(c: &mut Criterion) {
|
||||||
let group = group(c, "SHA1");
|
|
||||||
let parameters = &[vec![0xff], vec![0xff; 64], vec![0xff; 512]];
|
let parameters = &[vec![0xff], vec![0xff; 64], vec![0xff; 512]];
|
||||||
let labels = parameters.iter().map(|p| p.len()).collect::<Vec<_>>();
|
let labels = parameters.iter().map(|p| p.len()).collect::<Vec<_>>();
|
||||||
|
|
||||||
bench(group, parameters, &labels, Contract::sha1);
|
bench(
|
||||||
|
c.benchmark_group("SHA1"),
|
||||||
|
parameters,
|
||||||
|
&labels,
|
||||||
|
Contract::sha1,
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
criterion_group!(
|
criterion_group!(
|
||||||
|
|||||||
@@ -1,6 +1,7 @@
|
|||||||
use alloy_primitives::U256;
|
|
||||||
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
|
use criterion::{criterion_group, criterion_main, BenchmarkId, Criterion};
|
||||||
|
use polkavm::BackendKind;
|
||||||
|
|
||||||
|
use revive_benchmarks::instantiate_engine;
|
||||||
use revive_integration::cases::Contract;
|
use revive_integration::cases::Contract;
|
||||||
|
|
||||||
fn bench(
|
fn bench(
|
||||||
@@ -21,7 +22,7 @@ fn bench(
|
|||||||
|
|
||||||
#[cfg(feature = "bench-pvm-interpreter")]
|
#[cfg(feature = "bench-pvm-interpreter")]
|
||||||
{
|
{
|
||||||
let engine = revive_benchmarks::instantiate_engine(polkavm::BackendKind::Interpreter);
|
let engine = instantiate_engine(BackendKind::Interpreter);
|
||||||
group.bench_with_input(
|
group.bench_with_input(
|
||||||
BenchmarkId::new("PVMInterpreterCompile", code_size),
|
BenchmarkId::new("PVMInterpreterCompile", code_size),
|
||||||
&(&pvm_runtime, engine),
|
&(&pvm_runtime, engine),
|
||||||
@@ -35,7 +36,7 @@ fn bench(
|
|||||||
|
|
||||||
#[cfg(feature = "bench-pvm-interpreter")]
|
#[cfg(feature = "bench-pvm-interpreter")]
|
||||||
{
|
{
|
||||||
let engine = revive_benchmarks::instantiate_engine(polkavm::BackendKind::Interpreter);
|
let engine = instantiate_engine(BackendKind::Interpreter);
|
||||||
let module = revive_integration::mock_runtime::recompile_code(&pvm_runtime, &engine);
|
let module = revive_integration::mock_runtime::recompile_code(&pvm_runtime, &engine);
|
||||||
group.bench_with_input(
|
group.bench_with_input(
|
||||||
BenchmarkId::new("PVMInterpreterInstantiate", code_size),
|
BenchmarkId::new("PVMInterpreterInstantiate", code_size),
|
||||||
@@ -50,7 +51,7 @@ fn bench(
|
|||||||
|
|
||||||
#[cfg(feature = "bench-pvm")]
|
#[cfg(feature = "bench-pvm")]
|
||||||
{
|
{
|
||||||
let engine = revive_benchmarks::instantiate_engine(polkavm::BackendKind::Compiler);
|
let engine = instantiate_engine(BackendKind::Compiler);
|
||||||
group.bench_with_input(
|
group.bench_with_input(
|
||||||
BenchmarkId::new("PVMCompile", code_size),
|
BenchmarkId::new("PVMCompile", code_size),
|
||||||
&(&pvm_runtime, engine),
|
&(&pvm_runtime, engine),
|
||||||
@@ -64,7 +65,7 @@ fn bench(
|
|||||||
|
|
||||||
#[cfg(feature = "bench-pvm")]
|
#[cfg(feature = "bench-pvm")]
|
||||||
{
|
{
|
||||||
let engine = revive_benchmarks::instantiate_engine(polkavm::BackendKind::Compiler);
|
let engine = instantiate_engine(BackendKind::Compiler);
|
||||||
let module = revive_integration::mock_runtime::recompile_code(&pvm_runtime, &engine);
|
let module = revive_integration::mock_runtime::recompile_code(&pvm_runtime, &engine);
|
||||||
group.bench_with_input(
|
group.bench_with_input(
|
||||||
BenchmarkId::new("PVMInstantiate", code_size),
|
BenchmarkId::new("PVMInstantiate", code_size),
|
||||||
@@ -118,9 +119,9 @@ fn bench_fibonacci_recursive(c: &mut Criterion) {
|
|||||||
c,
|
c,
|
||||||
"PrepareFibonacciRecursive",
|
"PrepareFibonacciRecursive",
|
||||||
#[cfg(feature = "bench-evm")]
|
#[cfg(feature = "bench-evm")]
|
||||||
Contract::fib_recursive(U256::ZERO).evm_runtime,
|
Contract::fib_recursive(0).evm_runtime,
|
||||||
#[cfg(any(feature = "bench-pvm-interpreter", feature = "bench-pvm"))]
|
#[cfg(any(feature = "bench-pvm-interpreter", feature = "bench-pvm"))]
|
||||||
Contract::fib_recursive(U256::ZERO).pvm_runtime,
|
Contract::fib_recursive(0).pvm_runtime,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -129,9 +130,9 @@ fn bench_fibonacci_iterative(c: &mut Criterion) {
|
|||||||
c,
|
c,
|
||||||
"PrepareFibonacciIterative",
|
"PrepareFibonacciIterative",
|
||||||
#[cfg(feature = "bench-evm")]
|
#[cfg(feature = "bench-evm")]
|
||||||
Contract::fib_iterative(U256::ZERO).evm_runtime,
|
Contract::fib_iterative(0).evm_runtime,
|
||||||
#[cfg(any(feature = "bench-pvm-interpreter", feature = "bench-pvm"))]
|
#[cfg(any(feature = "bench-pvm-interpreter", feature = "bench-pvm"))]
|
||||||
Contract::fib_iterative(U256::ZERO).pvm_runtime,
|
Contract::fib_iterative(0).pvm_runtime,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -140,9 +141,9 @@ fn bench_fibonacci_binet(c: &mut Criterion) {
|
|||||||
c,
|
c,
|
||||||
"PrepareFibonacciBinet",
|
"PrepareFibonacciBinet",
|
||||||
#[cfg(feature = "bench-evm")]
|
#[cfg(feature = "bench-evm")]
|
||||||
Contract::fib_binet(U256::ZERO).evm_runtime,
|
Contract::fib_binet(0).evm_runtime,
|
||||||
#[cfg(any(feature = "bench-pvm-interpreter", feature = "bench-pvm"))]
|
#[cfg(any(feature = "bench-pvm-interpreter", feature = "bench-pvm"))]
|
||||||
Contract::fib_binet(U256::ZERO).pvm_runtime,
|
Contract::fib_binet(0).pvm_runtime,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,23 +1,19 @@
|
|||||||
use polkavm::{BackendKind, Config, Engine, ExportIndex, Instance, SandboxKind};
|
use polkavm::{BackendKind, Config, Engine, ExportIndex, Instance, SandboxKind};
|
||||||
use revive_integration::mock_runtime::{self, TransactionBuilder};
|
use revive_integration::mock_runtime;
|
||||||
use revive_integration::mock_runtime::{State, Transaction};
|
use revive_integration::mock_runtime::State;
|
||||||
|
|
||||||
pub fn prepare_pvm(
|
pub fn prepare_pvm(
|
||||||
code: &[u8],
|
code: &[u8],
|
||||||
input: Vec<u8>,
|
input: &[u8],
|
||||||
backend: BackendKind,
|
backend: BackendKind,
|
||||||
) -> (TransactionBuilder, Instance<Transaction>, ExportIndex) {
|
) -> (State, Instance<State>, ExportIndex) {
|
||||||
let mut config = Config::new();
|
let mut config = Config::new();
|
||||||
config.set_backend(Some(backend));
|
config.set_backend(Some(backend));
|
||||||
config.set_sandbox(Some(SandboxKind::Linux));
|
config.set_sandbox(Some(SandboxKind::Linux));
|
||||||
|
|
||||||
let (instance, export_index) = mock_runtime::prepare(code, Some(config));
|
let (instance, export_index) = mock_runtime::prepare(code, Some(config));
|
||||||
let transaction = State::default()
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(code)
|
|
||||||
.calldata(input);
|
|
||||||
|
|
||||||
(transaction, instance, export_index)
|
(State::new(input.to_vec()), instance, export_index)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn instantiate_engine(backend: BackendKind) -> Engine {
|
pub fn instantiate_engine(backend: BackendKind) -> Engine {
|
||||||
|
|||||||
@@ -1,14 +1,9 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revive-builtins"
|
name = "revive-builtins"
|
||||||
version.workspace = true
|
version = "0.1.0"
|
||||||
license.workspace = true
|
edition = "2021"
|
||||||
edition.workspace = true
|
|
||||||
repository.workspace = true
|
|
||||||
authors.workspace = true
|
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
description = "compiler builtins for the revive compiler"
|
|
||||||
|
|
||||||
[features]
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
riscv-64 = []
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
|
|||||||
@@ -1,11 +1,7 @@
|
|||||||
use std::{env, fs, io::Read, path::Path, process::Command};
|
use std::{env, fs, io::Read, path::Path, process::Command};
|
||||||
|
|
||||||
#[cfg(not(feature = "riscv-64"))]
|
|
||||||
pub const BUILTINS_ARCHIVE_FILE: &str = "libclang_rt.builtins-riscv32.a";
|
|
||||||
#[cfg(feature = "riscv-64")]
|
|
||||||
pub const BUILTINS_ARCHIVE_FILE: &str = "libclang_rt.builtins-riscv64.a";
|
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
let lib = "libclang_rt.builtins-riscv32.a";
|
||||||
let mut llvm_lib_dir = String::new();
|
let mut llvm_lib_dir = String::new();
|
||||||
|
|
||||||
Command::new("llvm-config")
|
Command::new("llvm-config")
|
||||||
@@ -17,24 +13,18 @@ fn main() {
|
|||||||
.read_to_string(&mut llvm_lib_dir)
|
.read_to_string(&mut llvm_lib_dir)
|
||||||
.expect("llvm-config output should be utf8");
|
.expect("llvm-config output should be utf8");
|
||||||
|
|
||||||
let mut lib_path = std::path::PathBuf::from(llvm_lib_dir.trim())
|
let lib_path = std::path::PathBuf::from(llvm_lib_dir.trim())
|
||||||
.join("linux")
|
.join("linux")
|
||||||
.join(BUILTINS_ARCHIVE_FILE);
|
.join(lib);
|
||||||
if !lib_path.exists() {
|
let archive = fs::read(lib_path).expect("clang builtins for riscv32 not found");
|
||||||
lib_path = std::path::PathBuf::from(std::env::var("CARGO_MANIFEST_DIR").unwrap())
|
|
||||||
.join(BUILTINS_ARCHIVE_FILE);
|
|
||||||
}
|
|
||||||
let archive = fs::read(lib_path).expect("clang builtins not found");
|
|
||||||
|
|
||||||
let out_dir = env::var_os("OUT_DIR").expect("has OUT_DIR");
|
let out_dir = env::var_os("OUT_DIR").expect("has OUT_DIR");
|
||||||
let archive_path = Path::new(&out_dir).join(BUILTINS_ARCHIVE_FILE);
|
let archive_path = Path::new(&out_dir).join(lib);
|
||||||
let len = archive.len();
|
let len = archive.len();
|
||||||
std::fs::write(archive_path, &archive).expect("can write to OUT_DIR");
|
std::fs::write(archive_path, &archive).expect("can write to OUT_DIR");
|
||||||
|
|
||||||
let src_path = Path::new(&out_dir).join("compiler_rt.rs");
|
let src_path = Path::new(&out_dir).join("compiler_rt.rs");
|
||||||
let src = format!(
|
let src = format!("pub static COMPILER_RT: &[u8; {len}] = include_bytes!(\"{lib}\");");
|
||||||
"pub static COMPILER_RT: &[u8; {len}] = include_bytes!(\"{BUILTINS_ARCHIVE_FILE}\");"
|
|
||||||
);
|
|
||||||
fs::write(src_path, src).expect("can write to OUT_DIR");
|
fs::write(src_path, src).expect("can write to OUT_DIR");
|
||||||
|
|
||||||
println!("cargo:rerun-if-changed=build.rs");
|
println!("cargo:rerun-if-changed=build.rs");
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
@@ -1,21 +1,17 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revive-common"
|
name = "revive-common"
|
||||||
version.workspace = true
|
version = "0.1.0"
|
||||||
license.workspace = true
|
|
||||||
edition.workspace = true
|
|
||||||
repository.workspace = true
|
|
||||||
authors = [
|
authors = [
|
||||||
"Cyrill Leutwiler <cyrill@parity.io>",
|
"Cyrill Leutwiler <cyrill@parity.io>",
|
||||||
"Oleksandr Zarudnyi <a.zarudnyy@matterlabs.dev>",
|
"Oleksandr Zarudnyi <a.zarudnyy@matterlabs.dev>",
|
||||||
]
|
]
|
||||||
|
license = "MIT OR Apache-2.0"
|
||||||
|
edition = "2021"
|
||||||
description = "Shared constants of the revive compiler"
|
description = "Shared constants of the revive compiler"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[features]
|
|
||||||
riscv-64 = []
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
serde = { workspace = true, features = ["derive"] }
|
serde = { workspace = true, features = ["derive"] }
|
||||||
|
|||||||
+26
-1
@@ -1,4 +1,13 @@
|
|||||||
# revive: Compiler Common
|
# zkSync Era: Compiler Common
|
||||||
|
|
||||||
|
[](https://zksync.io/)
|
||||||
|
|
||||||
|
zkSync Era is a layer 2 rollup that uses zero-knowledge proofs to scale Ethereum without compromising on security
|
||||||
|
or decentralization. As it's EVM-compatible (with Solidity/Vyper), 99% of Ethereum projects can redeploy without
|
||||||
|
needing to refactor or re-audit any code. zkSync Era also uses an LLVM-based compiler that will eventually enable
|
||||||
|
developers to write smart contracts in popular languages such as C++ and Rust.
|
||||||
|
|
||||||
|
This repository contains the common compiler constants.
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
@@ -8,3 +17,19 @@ This library is distributed under the terms of either
|
|||||||
- MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
|
- MIT license ([LICENSE-MIT](LICENSE-MIT) or <http://opensource.org/licenses/MIT>)
|
||||||
|
|
||||||
at your option.
|
at your option.
|
||||||
|
|
||||||
|
## Official Links
|
||||||
|
|
||||||
|
- [Website](https://zksync.io/)
|
||||||
|
- [GitHub](https://github.com/matter-labs)
|
||||||
|
- [Twitter](https://twitter.com/zksync)
|
||||||
|
- [Twitter for Devs](https://twitter.com/zkSyncDevs)
|
||||||
|
- [Discord](https://join.zksync.dev/)
|
||||||
|
|
||||||
|
## Disclaimer
|
||||||
|
|
||||||
|
zkSync Era has been through extensive testing and audits, and although it is live, it is still in alpha state and
|
||||||
|
will undergo further audits and bug bounty programs. We would love to hear our community's thoughts and suggestions
|
||||||
|
about it!
|
||||||
|
It's important to note that forking it now could potentially lead to missing important
|
||||||
|
security updates, critical features, and performance improvements.
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
|
//!
|
||||||
//! The number base constants.
|
//! The number base constants.
|
||||||
|
//!
|
||||||
|
|
||||||
/// The binary number base.
|
/// The binary number base.
|
||||||
pub const BASE_BINARY: u32 = 2;
|
pub const BASE_BINARY: u32 = 2;
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
|
//!
|
||||||
//! The common sizes in bits.
|
//! The common sizes in bits.
|
||||||
|
//!
|
||||||
|
|
||||||
/// The `bool` type bit-length.
|
/// The `bool` type bit-length.
|
||||||
pub const BIT_LENGTH_BOOLEAN: usize = 1;
|
pub const BIT_LENGTH_BOOLEAN: usize = 1;
|
||||||
@@ -16,16 +18,8 @@ pub const BIT_LENGTH_X64: usize = crate::byte_length::BYTE_LENGTH_X64 * BIT_LENG
|
|||||||
pub const BIT_LENGTH_ETH_ADDRESS: usize =
|
pub const BIT_LENGTH_ETH_ADDRESS: usize =
|
||||||
crate::byte_length::BYTE_LENGTH_ETH_ADDRESS * BIT_LENGTH_BYTE;
|
crate::byte_length::BYTE_LENGTH_ETH_ADDRESS * BIT_LENGTH_BYTE;
|
||||||
|
|
||||||
/// The VM word (usually `u256` or `i256`) bit-length.
|
/// The field (usually `u256` or `i256`) bit-length.
|
||||||
pub const BIT_LENGTH_WORD: usize = crate::byte_length::BYTE_LENGTH_WORD * BIT_LENGTH_BYTE;
|
pub const BIT_LENGTH_FIELD: usize = crate::byte_length::BYTE_LENGTH_FIELD * BIT_LENGTH_BYTE;
|
||||||
|
|
||||||
/// Bit length of the runtime value type.
|
/// Bit length of the runtime value type.
|
||||||
pub const BIT_LENGTH_VALUE: usize = crate::byte_length::BYTE_LENGTH_VALUE * BIT_LENGTH_BYTE;
|
pub const BIT_LENGTH_VALUE: usize = crate::byte_length::BYTE_LENGTH_VALUE * BIT_LENGTH_BYTE;
|
||||||
|
|
||||||
/// Bit length of thre runimte block number type.
|
|
||||||
pub const BIT_LENGTH_BLOCK_NUMBER: usize =
|
|
||||||
crate::byte_length::BYTE_LENGTH_BLOCK_NUMBER * BIT_LENGTH_BYTE;
|
|
||||||
|
|
||||||
/// Bit length of thre runimte block timestamp type.
|
|
||||||
pub const BIT_LENGTH_BLOCK_TIMESTAMP: usize =
|
|
||||||
crate::byte_length::BYTE_LENGTH_BLOCK_TIMESTAMP * BIT_LENGTH_BYTE;
|
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
|
//!
|
||||||
//! The common sizes in bytes.
|
//! The common sizes in bytes.
|
||||||
|
//!
|
||||||
|
|
||||||
/// The byte-length.
|
/// The byte-length.
|
||||||
pub const BYTE_LENGTH_BYTE: usize = 1;
|
pub const BYTE_LENGTH_BYTE: usize = 1;
|
||||||
@@ -7,10 +9,7 @@ pub const BYTE_LENGTH_BYTE: usize = 1;
|
|||||||
pub const BYTE_LENGTH_X32: usize = 4;
|
pub const BYTE_LENGTH_X32: usize = 4;
|
||||||
|
|
||||||
/// Native stack alignment size in bytes
|
/// Native stack alignment size in bytes
|
||||||
#[cfg(not(feature = "riscv-64"))]
|
|
||||||
pub const BYTE_LENGTH_STACK_ALIGN: usize = 4;
|
pub const BYTE_LENGTH_STACK_ALIGN: usize = 4;
|
||||||
#[cfg(feature = "riscv-64")]
|
|
||||||
pub const BYTE_LENGTH_STACK_ALIGN: usize = 8;
|
|
||||||
|
|
||||||
/// The x86_64 word byte-length.
|
/// The x86_64 word byte-length.
|
||||||
pub const BYTE_LENGTH_X64: usize = 8;
|
pub const BYTE_LENGTH_X64: usize = 8;
|
||||||
@@ -18,14 +17,8 @@ pub const BYTE_LENGTH_X64: usize = 8;
|
|||||||
/// The ETH address byte-length.
|
/// The ETH address byte-length.
|
||||||
pub const BYTE_LENGTH_ETH_ADDRESS: usize = 20;
|
pub const BYTE_LENGTH_ETH_ADDRESS: usize = 20;
|
||||||
|
|
||||||
/// The word byte-length.
|
/// The field byte-length.
|
||||||
pub const BYTE_LENGTH_WORD: usize = 32;
|
pub const BYTE_LENGTH_FIELD: usize = 32;
|
||||||
|
|
||||||
/// Byte length of the runtime value type.
|
/// Byte length of the runtime value type.
|
||||||
pub const BYTE_LENGTH_VALUE: usize = 32;
|
pub const BYTE_LENGTH_VALUE: usize = 16;
|
||||||
|
|
||||||
/// Byte length of the runtime block number type.
|
|
||||||
pub const BYTE_LENGTH_BLOCK_NUMBER: usize = 8;
|
|
||||||
|
|
||||||
/// Byte length of the runtime block timestamp type.
|
|
||||||
pub const BYTE_LENGTH_BLOCK_TIMESTAMP: usize = 8;
|
|
||||||
|
|||||||
@@ -0,0 +1,117 @@
|
|||||||
|
//!
|
||||||
|
//! The EraVM address constants.
|
||||||
|
//!
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_TO_L1: u16 = 0xFFFF;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_PRECOMPILE: u16 = 0xFFFD;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_META: u16 = 0xFFFC;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_MIMIC_CALL: u16 = 0xFFFB;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_SYSTEM_MIMIC_CALL: u16 = 0xFFFA;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_MIMIC_CALL_BYREF: u16 = 0xFFF9;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_SYSTEM_MIMIC_CALL_BYREF: u16 = 0xFFF8;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_RAW_FAR_CALL: u16 = 0xFFF7;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_RAW_FAR_CALL_BYREF: u16 = 0xFFF6;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_SYSTEM_CALL: u16 = 0xFFF5;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_SYSTEM_CALL_BYREF: u16 = 0xFFF4;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_SET_CONTEXT_VALUE_CALL: u16 = 0xFFF3;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_SET_PUBDATA_PRICE: u16 = 0xFFF2;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_INCREMENT_TX_COUNTER: u16 = 0xFFF1;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_GET_GLOBAL_PTR_CALLDATA: u16 = 0xFFF0;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_GET_GLOBAL_CALL_FLAGS: u16 = 0xFFEF;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_GET_GLOBAL_PTR_RETURN_DATA: u16 = 0xFFEE;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_EVENT_INITIALIZE: u16 = 0xFFED;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_EVENT_WRITE: u16 = 0xFFEC;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_LOAD_CALLDATA: u16 = 0xFFEB;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_LOAD_RETURN_DATA: u16 = 0xFFEA;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_ADD: u16 = 0xFFE9;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_SHRINK: u16 = 0xFFE8;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_PACK: u16 = 0xFFE7;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_MULTIPLICATION_HIGH_REGISTER: u16 = 0xFFE6;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_GET_GLOBAL_EXTRA_ABI_DATA: u16 = 0xFFE5;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_DATA_LOAD: u16 = 0xFFE4;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_DATA_COPY: u16 = 0xFFE3;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_DATA_SIZE: u16 = 0xFFE2;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_CONST_ARRAY_DECLARE: u16 = 0xFFE1;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_CONST_ARRAY_SET: u16 = 0xFFE0;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_CONST_ARRAY_FINALIZE: u16 = 0xFFDF;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_CONST_ARRAY_GET: u16 = 0xFFDE;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_DECOMMIT: u16 = 0xFFDD;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_LOAD_DECOMMIT: u16 = 0xFFDC;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_RETURN_FORWARD: u16 = 0xFFDB;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_REVERT_FORWARD: u16 = 0xFFDA;
|
||||||
|
|
||||||
|
/// The corresponding simulation predefined address.
|
||||||
|
pub const ERAVM_ADDRESS_ACTIVE_PTR_SWAP: u16 = 0xFFD9;
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
//!
|
||||||
|
//! The EraVM constants.
|
||||||
|
//!
|
||||||
|
|
||||||
|
pub mod address;
|
||||||
@@ -1,9 +1,13 @@
|
|||||||
|
//!
|
||||||
//! The EVM version.
|
//! The EVM version.
|
||||||
|
//!
|
||||||
|
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
|
|
||||||
|
///
|
||||||
/// The EVM version.
|
/// The EVM version.
|
||||||
|
///
|
||||||
#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
#[serde(rename_all = "camelCase")]
|
#[serde(rename_all = "camelCase")]
|
||||||
pub enum EVMVersion {
|
pub enum EVMVersion {
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
|
//!
|
||||||
//! The file extensions.
|
//! The file extensions.
|
||||||
|
//!
|
||||||
|
|
||||||
/// The manifest file extension.
|
/// The manifest file extension.
|
||||||
pub static EXTENSION_MANIFEST: &str = "toml";
|
pub static EXTENSION_MANIFEST: &str = "toml";
|
||||||
@@ -30,14 +32,17 @@ pub static EXTENSION_SOLIDITY: &str = "sol";
|
|||||||
/// The LLL IR file extension.
|
/// The LLL IR file extension.
|
||||||
pub static EXTENSION_LLL: &str = "lll";
|
pub static EXTENSION_LLL: &str = "lll";
|
||||||
|
|
||||||
|
/// The Vyper file extension.
|
||||||
|
pub static EXTENSION_VYPER: &str = "vy";
|
||||||
|
|
||||||
/// The LLVM source code file extension.
|
/// The LLVM source code file extension.
|
||||||
pub static EXTENSION_LLVM_SOURCE: &str = "ll";
|
pub static EXTENSION_LLVM_SOURCE: &str = "ll";
|
||||||
|
|
||||||
/// The LLVM bitcode file extension.
|
/// The LLVM bitcode file extension.
|
||||||
pub static EXTENSION_LLVM_BINARY: &str = "bc";
|
pub static EXTENSION_LLVM_BINARY: &str = "bc";
|
||||||
|
|
||||||
/// The PolkaVM assembly file extension.
|
/// The EraVM assembly file extension.
|
||||||
pub static EXTENSION_POLKAVM_ASSEMBLY: &str = "pvmasm";
|
pub static EXTENSION_ERAVM_ASSEMBLY: &str = "zasm";
|
||||||
|
|
||||||
/// The PolkaVM bytecode file extension.
|
/// The EraVM bytecode file extension.
|
||||||
pub static EXTENSION_POLKAVM_BINARY: &str = "pvm";
|
pub static EXTENSION_ERAVM_BINARY: &str = "zbin";
|
||||||
|
|||||||
@@ -1,19 +1,21 @@
|
|||||||
|
//!
|
||||||
//! The compiler common library.
|
//! The compiler common library.
|
||||||
|
//!
|
||||||
|
|
||||||
pub(crate) mod base;
|
pub(crate) mod base;
|
||||||
pub(crate) mod bit_length;
|
pub(crate) mod bit_length;
|
||||||
pub(crate) mod byte_length;
|
pub(crate) mod byte_length;
|
||||||
|
pub(crate) mod eravm;
|
||||||
pub(crate) mod evm_version;
|
pub(crate) mod evm_version;
|
||||||
pub(crate) mod exit_code;
|
pub(crate) mod exit_code;
|
||||||
pub(crate) mod extension;
|
pub(crate) mod extension;
|
||||||
pub(crate) mod polkavm;
|
|
||||||
pub(crate) mod utils;
|
pub(crate) mod utils;
|
||||||
|
|
||||||
pub use self::base::*;
|
pub use self::base::*;
|
||||||
pub use self::bit_length::*;
|
pub use self::bit_length::*;
|
||||||
pub use self::byte_length::*;
|
pub use self::byte_length::*;
|
||||||
|
pub use self::eravm::address::*;
|
||||||
pub use self::evm_version::EVMVersion;
|
pub use self::evm_version::EVMVersion;
|
||||||
pub use self::exit_code::*;
|
pub use self::exit_code::*;
|
||||||
pub use self::extension::*;
|
pub use self::extension::*;
|
||||||
pub use self::polkavm::address::*;
|
|
||||||
pub use self::utils::*;
|
pub use self::utils::*;
|
||||||
|
|||||||
@@ -1,115 +0,0 @@
|
|||||||
//! The PolkaVM address constants.
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_TO_L1: u16 = 0xFFFF;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_PRECOMPILE: u16 = 0xFFFD;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_META: u16 = 0xFFFC;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_MIMIC_CALL: u16 = 0xFFFB;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_SYSTEM_MIMIC_CALL: u16 = 0xFFFA;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_MIMIC_CALL_BYREF: u16 = 0xFFF9;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_SYSTEM_MIMIC_CALL_BYREF: u16 = 0xFFF8;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_RAW_FAR_CALL: u16 = 0xFFF7;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_RAW_FAR_CALL_BYREF: u16 = 0xFFF6;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_SYSTEM_CALL: u16 = 0xFFF5;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_SYSTEM_CALL_BYREF: u16 = 0xFFF4;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_SET_CONTEXT_VALUE_CALL: u16 = 0xFFF3;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_SET_PUBDATA_PRICE: u16 = 0xFFF2;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_INCREMENT_TX_COUNTER: u16 = 0xFFF1;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_GET_GLOBAL_PTR_CALLDATA: u16 = 0xFFF0;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_GET_GLOBAL_CALL_FLAGS: u16 = 0xFFEF;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_GET_GLOBAL_PTR_RETURN_DATA: u16 = 0xFFEE;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_EVENT_INITIALIZE: u16 = 0xFFED;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_EVENT_WRITE: u16 = 0xFFEC;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_LOAD_CALLDATA: u16 = 0xFFEB;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_LOAD_RETURN_DATA: u16 = 0xFFEA;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_ADD: u16 = 0xFFE9;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_SHRINK: u16 = 0xFFE8;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_PACK: u16 = 0xFFE7;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_MULTIPLICATION_HIGH_REGISTER: u16 = 0xFFE6;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_GET_GLOBAL_EXTRA_ABI_DATA: u16 = 0xFFE5;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_DATA_LOAD: u16 = 0xFFE4;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_DATA_COPY: u16 = 0xFFE3;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_DATA_SIZE: u16 = 0xFFE2;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_CONST_ARRAY_DECLARE: u16 = 0xFFE1;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_CONST_ARRAY_SET: u16 = 0xFFE0;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_CONST_ARRAY_FINALIZE: u16 = 0xFFDF;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_CONST_ARRAY_GET: u16 = 0xFFDE;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_DECOMMIT: u16 = 0xFFDD;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_LOAD_DECOMMIT: u16 = 0xFFDC;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_RETURN_FORWARD: u16 = 0xFFDB;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_REVERT_FORWARD: u16 = 0xFFDA;
|
|
||||||
|
|
||||||
/// The corresponding simulation predefined address.
|
|
||||||
pub const POLKAVM_ADDRESS_ACTIVE_PTR_SWAP: u16 = 0xFFD9;
|
|
||||||
@@ -1,5 +0,0 @@
|
|||||||
//!
|
|
||||||
//! The PolkaVM constants.
|
|
||||||
//!
|
|
||||||
|
|
||||||
pub mod address;
|
|
||||||
@@ -1,7 +1,12 @@
|
|||||||
|
//!
|
||||||
//! The compiler common utils.
|
//! The compiler common utils.
|
||||||
|
//!
|
||||||
|
|
||||||
|
///
|
||||||
/// Deserializes a `serde_json` object from slice with the recursion limit disabled.
|
/// Deserializes a `serde_json` object from slice with the recursion limit disabled.
|
||||||
|
///
|
||||||
/// Must be used for all JSON I/O to avoid crashes due to the aforementioned limit.
|
/// Must be used for all JSON I/O to avoid crashes due to the aforementioned limit.
|
||||||
|
///
|
||||||
pub fn deserialize_from_slice<O>(input: &[u8]) -> anyhow::Result<O>
|
pub fn deserialize_from_slice<O>(input: &[u8]) -> anyhow::Result<O>
|
||||||
where
|
where
|
||||||
O: serde::de::DeserializeOwned,
|
O: serde::de::DeserializeOwned,
|
||||||
@@ -13,8 +18,11 @@ where
|
|||||||
Ok(result)
|
Ok(result)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Deserializes a `serde_json` object from string with the recursion limit disabled.
|
/// Deserializes a `serde_json` object from string with the recursion limit disabled.
|
||||||
|
///
|
||||||
/// Must be used for all JSON I/O to avoid crashes due to the aforementioned limit.
|
/// Must be used for all JSON I/O to avoid crashes due to the aforementioned limit.
|
||||||
|
///
|
||||||
pub fn deserialize_from_str<O>(input: &str) -> anyhow::Result<O>
|
pub fn deserialize_from_str<O>(input: &str) -> anyhow::Result<O>
|
||||||
where
|
where
|
||||||
O: serde::de::DeserializeOwned,
|
O: serde::de::DeserializeOwned,
|
||||||
|
|||||||
@@ -1,12 +1,10 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revive-differential"
|
name = "revive-differential"
|
||||||
version.workspace = true
|
version = "0.1.0"
|
||||||
license.workspace = true
|
edition = "2021"
|
||||||
edition.workspace = true
|
|
||||||
authors.workspace = true
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
repository.workspace = true
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
evm-interpreter = { workspace = true }
|
evm-interpreter = { workspace = true }
|
||||||
primitive-types = { workspace = true }
|
primitive-types = { workspace = true }
|
||||||
alloy-primitives = { workspace = true }
|
|
||||||
@@ -1,4 +1,3 @@
|
|||||||
use alloy_primitives::{keccak256, Address, B256};
|
|
||||||
use evm_interpreter::{
|
use evm_interpreter::{
|
||||||
interpreter::{EtableInterpreter, RunInterpreter},
|
interpreter::{EtableInterpreter, RunInterpreter},
|
||||||
trap::CallCreateTrap,
|
trap::CallCreateTrap,
|
||||||
@@ -10,23 +9,20 @@ use primitive_types::{H160, H256, U256};
|
|||||||
static RUNTIME_ETABLE: Etable<RuntimeState, UnimplementedHandler, CallCreateTrap> =
|
static RUNTIME_ETABLE: Etable<RuntimeState, UnimplementedHandler, CallCreateTrap> =
|
||||||
Etable::runtime();
|
Etable::runtime();
|
||||||
|
|
||||||
#[derive(Default)]
|
pub struct UnimplementedHandler;
|
||||||
pub struct UnimplementedHandler {
|
|
||||||
logs: Vec<Log>,
|
|
||||||
}
|
|
||||||
|
|
||||||
impl RuntimeEnvironment for UnimplementedHandler {
|
impl RuntimeEnvironment for UnimplementedHandler {
|
||||||
fn block_hash(&self, _number: U256) -> H256 {
|
fn block_hash(&self, _number: U256) -> H256 {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
fn block_number(&self) -> U256 {
|
fn block_number(&self) -> U256 {
|
||||||
U256::from(123)
|
unimplemented!()
|
||||||
}
|
}
|
||||||
fn block_coinbase(&self) -> H160 {
|
fn block_coinbase(&self) -> H160 {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
fn block_timestamp(&self) -> U256 {
|
fn block_timestamp(&self) -> U256 {
|
||||||
U256::from(456)
|
unimplemented!()
|
||||||
}
|
}
|
||||||
fn block_difficulty(&self) -> U256 {
|
fn block_difficulty(&self) -> U256 {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
@@ -90,9 +86,8 @@ impl RuntimeBackend for UnimplementedHandler {
|
|||||||
fn set_storage(&mut self, _address: H160, _index: H256, _value: H256) -> Result<(), ExitError> {
|
fn set_storage(&mut self, _address: H160, _index: H256, _value: H256) -> Result<(), ExitError> {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
}
|
}
|
||||||
fn log(&mut self, log: Log) -> Result<(), ExitError> {
|
fn log(&mut self, _log: Log) -> Result<(), ExitError> {
|
||||||
self.logs.push(log);
|
unimplemented!()
|
||||||
Ok(())
|
|
||||||
}
|
}
|
||||||
fn mark_delete(&mut self, _address: H160) {
|
fn mark_delete(&mut self, _address: H160) {
|
||||||
unimplemented!()
|
unimplemented!()
|
||||||
@@ -128,13 +123,10 @@ pub struct PreparedEvm {
|
|||||||
}
|
}
|
||||||
|
|
||||||
pub fn prepare(code: Vec<u8>, data: Vec<u8>) -> PreparedEvm {
|
pub fn prepare(code: Vec<u8>, data: Vec<u8>) -> PreparedEvm {
|
||||||
let address = Address::default().create2(B256::default(), keccak256([]).0);
|
|
||||||
let caller = Address::default().create2(B256::default(), keccak256([]).0);
|
|
||||||
|
|
||||||
let state = RuntimeState {
|
let state = RuntimeState {
|
||||||
context: Context {
|
context: Context {
|
||||||
address: H160::from(address.0 .0),
|
address: H160::default(),
|
||||||
caller: H160::from(caller.0 .0),
|
caller: H160::default(),
|
||||||
apparent_value: U256::default(),
|
apparent_value: U256::default(),
|
||||||
},
|
},
|
||||||
transaction_context: TransactionContext {
|
transaction_context: TransactionContext {
|
||||||
@@ -151,9 +143,12 @@ pub fn prepare(code: Vec<u8>, data: Vec<u8>) -> PreparedEvm {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn execute(pre: PreparedEvm) -> (Vec<u8>, Vec<Log>) {
|
pub fn execute(pre: PreparedEvm) -> Vec<u8> {
|
||||||
let mut vm = EtableInterpreter::new_valid(pre.vm, &RUNTIME_ETABLE, pre.valids);
|
let mut vm = EtableInterpreter::new_valid(pre.vm, &RUNTIME_ETABLE, pre.valids);
|
||||||
let mut handler = UnimplementedHandler::default();
|
vm.run(&mut UnimplementedHandler {})
|
||||||
vm.run(&mut handler).exit().unwrap().unwrap();
|
.exit()
|
||||||
(vm.retval.clone(), handler.logs)
|
.unwrap()
|
||||||
|
.unwrap();
|
||||||
|
|
||||||
|
vm.retval.clone()
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -0,0 +1,9 @@
|
|||||||
|
[package]
|
||||||
|
name = "revive-extensions"
|
||||||
|
version = "0.1.0"
|
||||||
|
edition = "2021"
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
inkwell = { workspace = true, features = ["target-riscv", "no-libffi-linking", "llvm18-0"] }
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
target datalayout = "e-m:e-p:32:32-i64:64-n32-S128"
|
||||||
|
target triple = "riscv32-unknown-unknown-elf"
|
||||||
|
|
||||||
|
define dso_local noundef i256 @__bswap(i256 noundef %0) local_unnamed_addr #0 {
|
||||||
|
%2 = tail call i256 @llvm.bswap.i256(i256 %0)
|
||||||
|
ret i256 %2
|
||||||
|
}
|
||||||
|
|
||||||
|
; Function Attrs: mustprogress nocallback nofree nosync nounwind speculatable willreturn memory(none)
|
||||||
|
declare i256 @llvm.bswap.i256(i256) #1
|
||||||
|
|
||||||
|
attributes #0 = { alwaysinline mustprogress nofree norecurse nosync nounwind willreturn memory(none) }
|
||||||
|
attributes #1 = { mustprogress nocallback nofree nosync nounwind speculatable willreturn memory(none) }
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
use std::{env, fs, path::Path, process::Command};
|
||||||
|
|
||||||
|
fn compile(source_path: &str, output_path: &str) {
|
||||||
|
let output = Command::new("llc")
|
||||||
|
.args([
|
||||||
|
"-O3",
|
||||||
|
"-filetype=asm",
|
||||||
|
"-mattr=+zbb,+e,+m",
|
||||||
|
source_path,
|
||||||
|
"-o",
|
||||||
|
output_path,
|
||||||
|
])
|
||||||
|
.output()
|
||||||
|
.expect("should be able to invoke llc");
|
||||||
|
|
||||||
|
assert!(
|
||||||
|
output.status.success(),
|
||||||
|
"failed to compile {}: {:?}",
|
||||||
|
source_path,
|
||||||
|
output
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let in_file = "bswap.ll";
|
||||||
|
let out_file = "bswap.s";
|
||||||
|
let out_dir = env::var_os("OUT_DIR").expect("env should have $OUT_DIR");
|
||||||
|
let out_path = Path::new(&out_dir).join(out_file);
|
||||||
|
compile(
|
||||||
|
in_file,
|
||||||
|
out_path.to_str().expect("$OUT_DIR should be UTF-8"),
|
||||||
|
);
|
||||||
|
|
||||||
|
let src_path = Path::new(&out_dir).join("bswap.rs");
|
||||||
|
let src = format!("pub static ASSEMBLY: &str = include_str!(\"{out_file}\");");
|
||||||
|
fs::write(src_path, src).expect("should be able to write in $OUT_DIR");
|
||||||
|
|
||||||
|
println!("cargo:rerun-if-changed=build.rs");
|
||||||
|
println!("cargo:rerun-if-changed=bswap.ll");
|
||||||
|
}
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
//! Custom RISC-V extension in PolkaVM that are partially supported.
|
||||||
|
//! We use inline assembly to emit partially supported instructions.
|
||||||
|
|
||||||
|
use inkwell::{context::Context, module::Module, support::LLVMString};
|
||||||
|
|
||||||
|
include!(concat!(env!("OUT_DIR"), "/bswap.rs"));
|
||||||
|
|
||||||
|
/// Returns a LLVM module containing a `__bswap` function, which
|
||||||
|
/// - Takes a `i256` value argument
|
||||||
|
/// - Byte swaps it using `rev8` from the `zbb` extension
|
||||||
|
/// - Returns the `i256` value
|
||||||
|
///
|
||||||
|
/// Returns `Error` if the module fails to validate, which should never happen.
|
||||||
|
pub fn module<'context>(
|
||||||
|
context: &'context Context,
|
||||||
|
module_name: &str,
|
||||||
|
) -> Result<Module<'context>, LLVMString> {
|
||||||
|
let module = context.create_module(module_name);
|
||||||
|
|
||||||
|
module.set_inline_assembly(ASSEMBLY);
|
||||||
|
module.verify()?;
|
||||||
|
|
||||||
|
Ok(module)
|
||||||
|
}
|
||||||
|
|
||||||
|
#[cfg(test)]
|
||||||
|
mod tests {
|
||||||
|
#[test]
|
||||||
|
fn assembly_contains_rev8_instruction() {
|
||||||
|
assert!(crate::ASSEMBLY.contains("rev8"));
|
||||||
|
}
|
||||||
|
|
||||||
|
#[test]
|
||||||
|
fn module_is_valid() {
|
||||||
|
inkwell::targets::Target::initialize_riscv(&Default::default());
|
||||||
|
let context = inkwell::context::Context::create();
|
||||||
|
|
||||||
|
assert!(crate::module(&context, "polkavm_bswap").is_ok());
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,9 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revive-integration"
|
name = "revive-integration"
|
||||||
version.workspace = true
|
version = "0.1.0"
|
||||||
license.workspace = true
|
edition = "2021"
|
||||||
edition.workspace = true
|
|
||||||
repository.workspace = true
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
authors.workspace = true
|
|
||||||
description = "revive compiler integration test cases"
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
polkavm = { workspace = true }
|
polkavm = { workspace = true }
|
||||||
@@ -13,15 +11,10 @@ alloy-primitives = { workspace = true }
|
|||||||
alloy-sol-types = { workspace = true }
|
alloy-sol-types = { workspace = true }
|
||||||
hex = { workspace = true }
|
hex = { workspace = true }
|
||||||
env_logger = { workspace = true }
|
env_logger = { workspace = true }
|
||||||
log = { workspace = true }
|
|
||||||
|
|
||||||
revive-solidity = { workspace = true }
|
revive-solidity = { path = "../solidity" }
|
||||||
revive-differential = { workspace = true }
|
revive-differential = { path = "../differential" }
|
||||||
revive-llvm-context = { workspace = true }
|
era-compiler-llvm-context = { path = "../llvm-context" }
|
||||||
revive-common = { workspace = true }
|
|
||||||
|
|
||||||
[dev-dependencies]
|
[dev-dependencies]
|
||||||
sha1 = { workspace = true }
|
sha1 = { workspace = true }
|
||||||
serde = { workspace = true }
|
|
||||||
serde_json = { workspace = true }
|
|
||||||
rayon = { workspace = true }
|
|
||||||
|
|||||||
@@ -1,10 +0,0 @@
|
|||||||
{
|
|
||||||
"Baseline": 934,
|
|
||||||
"Computation": 4360,
|
|
||||||
"DivisionArithmetics": 39824,
|
|
||||||
"ERC20": 46471,
|
|
||||||
"Events": 1749,
|
|
||||||
"FibonacciIterative": 2973,
|
|
||||||
"Flipper": 3563,
|
|
||||||
"SHA1": 32543
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
pragma solidity ^0.8.24;
|
||||||
|
|
||||||
contract Baseline {
|
contract Baseline {
|
||||||
function baseline() public payable {}
|
function baseline() public payable {}
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract Bitwise {
|
|
||||||
function opByte(uint i, uint x) public payable returns (uint ret) {
|
|
||||||
assembly {
|
|
||||||
ret := byte(i, x)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract Block {
|
|
||||||
function timestamp() public view returns (uint ret) {
|
|
||||||
ret = block.timestamp;
|
|
||||||
}
|
|
||||||
|
|
||||||
function number() public view returns (uint ret) {
|
|
||||||
ret = block.number;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,20 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract Call {
|
|
||||||
function value_transfer(address payable destination) public payable {
|
|
||||||
destination.transfer(msg.value);
|
|
||||||
}
|
|
||||||
|
|
||||||
function echo(bytes memory payload) public pure returns (bytes memory) {
|
|
||||||
return payload;
|
|
||||||
}
|
|
||||||
|
|
||||||
function call(
|
|
||||||
address callee,
|
|
||||||
bytes memory payload
|
|
||||||
) public pure returns (bytes memory) {
|
|
||||||
return Call(callee).echo(payload);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
pragma solidity ^0.8.24;
|
||||||
|
|
||||||
contract Computation {
|
contract Computation {
|
||||||
function triangle_number(int64 n) public pure returns (int64 sum) {
|
function triangle_number(int64 n) public pure returns (int64 sum) {
|
||||||
|
|||||||
@@ -1,13 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract Context {
|
|
||||||
function address_this() public view returns (address ret) {
|
|
||||||
ret = address(this);
|
|
||||||
}
|
|
||||||
|
|
||||||
function caller() public view returns (address ret) {
|
|
||||||
ret = msg.sender;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,21 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8.24;
|
|
||||||
|
|
||||||
contract CreateA {
|
|
||||||
address creator;
|
|
||||||
|
|
||||||
constructor() payable {
|
|
||||||
creator = msg.sender;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
contract CreateB {
|
|
||||||
receive() external payable {
|
|
||||||
new CreateA{value: msg.value}();
|
|
||||||
}
|
|
||||||
|
|
||||||
fallback() external {
|
|
||||||
new CreateA{salt: hex"01"}();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,29 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract DivisionArithmetics {
|
|
||||||
function div(uint n, uint d) public pure returns (uint q) {
|
|
||||||
assembly {
|
|
||||||
q := div(n, d)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function sdiv(int n, int d) public pure returns (int q) {
|
|
||||||
assembly {
|
|
||||||
q := sdiv(n, d)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function mod(uint n, uint d) public pure returns (uint r) {
|
|
||||||
assembly {
|
|
||||||
r := mod(n, d)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function smod(int n, int d) public pure returns (int r) {
|
|
||||||
assembly {
|
|
||||||
r := smod(n, d)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
pragma solidity ^0.8.20;
|
||||||
|
|
||||||
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.0/contracts/token/ERC20/IERC20.sol
|
// https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v3.0.0/contracts/token/ERC20/IERC20.sol
|
||||||
interface IERC20 {
|
interface IERC20 {
|
||||||
|
|||||||
@@ -1,16 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract Events {
|
|
||||||
event A() anonymous;
|
|
||||||
event E(uint, uint indexed, uint indexed, uint indexed);
|
|
||||||
|
|
||||||
function emitEvent(uint topics) public {
|
|
||||||
if (topics == 0) {
|
|
||||||
emit A();
|
|
||||||
} else {
|
|
||||||
emit E(topics, 1, 2, 3);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,17 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract ExtCode {
|
|
||||||
function ExtCodeSize(address who) public view returns (uint ret) {
|
|
||||||
assembly {
|
|
||||||
ret := extcodesize(who)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
function CodeSize() public pure returns (uint ret) {
|
|
||||||
assembly {
|
|
||||||
ret := codesize()
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: UNLICENSED
|
// SPDX-License-Identifier: UNLICENSED
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
pragma solidity ^0.8.24;
|
||||||
|
|
||||||
// https://medium.com/coinmonks/fibonacci-in-solidity-8477d907e22a
|
// https://medium.com/coinmonks/fibonacci-in-solidity-8477d907e22a
|
||||||
|
|
||||||
|
|||||||
@@ -1,9 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract MCopy {
|
|
||||||
function memcpy(bytes memory payload) public pure returns (bytes memory) {
|
|
||||||
return payload;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
pragma solidity ^0.8.24;
|
||||||
|
|
||||||
contract MSize {
|
contract MSize {
|
||||||
uint[] public data;
|
uint[] public data;
|
||||||
|
|||||||
@@ -1,14 +0,0 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
|
||||||
|
|
||||||
contract Storage {
|
|
||||||
function transient(uint value) public returns (uint ret) {
|
|
||||||
assembly {
|
|
||||||
let slot := 123
|
|
||||||
tstore(slot, value)
|
|
||||||
let success := call(0, 0, 0, 0, 0, 0, 0)
|
|
||||||
ret := tload(slot)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,13 +1,9 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
pragma solidity ^0.8.24;
|
||||||
|
|
||||||
contract Value {
|
contract Value {
|
||||||
function value() public payable returns (uint ret) {
|
function value() public payable returns (uint ret) {
|
||||||
ret = msg.value;
|
ret = msg.value;
|
||||||
}
|
}
|
||||||
|
|
||||||
function balance_of(address _address) public view returns (uint ret) {
|
|
||||||
ret = _address.balance;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,13 +1,9 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
pragma solidity ^0.8;
|
pragma solidity ^0.8.24;
|
||||||
|
|
||||||
contract Flipper {
|
contract Flipper {
|
||||||
bool coin;
|
bool coin;
|
||||||
|
|
||||||
constructor(bool _coin) {
|
|
||||||
coin = _coin;
|
|
||||||
}
|
|
||||||
|
|
||||||
function flip() public {
|
function flip() public {
|
||||||
coin = !coin;
|
coin = !coin;
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
// SPDX-License-Identifier: MIT
|
// SPDX-License-Identifier: MIT
|
||||||
|
|
||||||
pragma solidity ^0.8;
|
pragma solidity ^0.8.24;
|
||||||
|
|
||||||
contract MStore8 {
|
contract MStore8 {
|
||||||
function mStore8(uint value) public pure returns (uint256 word) {
|
function mStore8(uint value) public pure returns (uint256 word) {
|
||||||
|
|||||||
+73
-274
@@ -1,320 +1,119 @@
|
|||||||
use alloy_primitives::{Address, I256, U256};
|
use alloy_primitives::U256;
|
||||||
use alloy_sol_types::{sol, SolCall, SolConstructor};
|
use alloy_sol_types::{sol, SolCall};
|
||||||
|
|
||||||
use revive_solidity::test_utils::*;
|
|
||||||
|
|
||||||
use crate::mock_runtime::{CallOutput, State};
|
|
||||||
|
|
||||||
#[derive(Clone)]
|
#[derive(Clone)]
|
||||||
pub struct Contract {
|
pub struct Contract {
|
||||||
pub name: &'static str,
|
|
||||||
pub evm_runtime: Vec<u8>,
|
pub evm_runtime: Vec<u8>,
|
||||||
pub pvm_runtime: Vec<u8>,
|
pub pvm_runtime: Vec<u8>,
|
||||||
pub calldata: Vec<u8>,
|
pub calldata: Vec<u8>,
|
||||||
}
|
}
|
||||||
|
|
||||||
macro_rules! case {
|
|
||||||
// Arguments:
|
|
||||||
// 1. The file name, expect to live under "../contracts/"
|
|
||||||
// 2. The Solidity contract name
|
|
||||||
// 3. The derived Solidity function call name
|
|
||||||
// 4. The method name on [Contract]
|
|
||||||
// 5. Any parameters to the Solidity functions
|
|
||||||
($file_name:literal, $contract_name:ident, $contract_method:ident, $method_name:ident, $( $v:ident: $t:ty ),* ) => {
|
|
||||||
impl Contract {
|
|
||||||
pub fn $method_name($($v: $t),*) -> Self {
|
|
||||||
let code = include_str!(concat!("../contracts/", $file_name));
|
|
||||||
let args = $contract_name::$contract_method::new(($($v,)*)).abi_encode();
|
|
||||||
let name = stringify!($contract_name);
|
|
||||||
Contract::build(args, name, code)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
|
|
||||||
// Arguments:
|
|
||||||
// 1. The file name, expect to live under "../contracts/"
|
|
||||||
// 2. The Solidity contract name
|
|
||||||
// 3. Raw Calldata
|
|
||||||
// 4. The method name on [Contract]
|
|
||||||
($file_name:literal, $contract_name:literal, $calldata:expr, $method_name:ident) => {
|
|
||||||
impl Contract {
|
|
||||||
pub fn $method_name() -> Self {
|
|
||||||
let code = include_str!(concat!("../contracts/", $file_name));
|
|
||||||
Contract::build($calldata, $contract_name, code)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
||||||
case!("Create.sol", "CreateA", vec![0; 4], create_a);
|
|
||||||
case!("Create.sol", "CreateB", vec![0; 4], create_b);
|
|
||||||
|
|
||||||
sol!(contract Baseline { function baseline() public payable; });
|
sol!(contract Baseline { function baseline() public payable; });
|
||||||
case!("Baseline.sol", Baseline, baselineCall, baseline,);
|
|
||||||
|
|
||||||
sol!(contract Flipper {
|
|
||||||
constructor (bool);
|
|
||||||
|
|
||||||
function flip() public;
|
|
||||||
});
|
|
||||||
case!("flipper.sol", Flipper, flipCall, flipper,);
|
|
||||||
case!("flipper.sol", Flipper, constructorCall, flipper_constructor, coin: bool);
|
|
||||||
|
|
||||||
sol!(contract Computation {
|
sol!(contract Computation {
|
||||||
function odd_product(int32 n) public pure returns (int64);
|
function odd_product(int32 n) public pure returns (int64);
|
||||||
function triangle_number(int64 n) public pure returns (int64 sum);
|
function triangle_number(int64 n) public pure returns (int64 sum);
|
||||||
});
|
});
|
||||||
case!("Computation.sol", Computation, odd_productCall, odd_product, n: i32);
|
|
||||||
case!("Computation.sol", Computation, triangle_numberCall, triangle_number, n: i64);
|
|
||||||
|
|
||||||
sol!(
|
sol!(
|
||||||
contract FibonacciRecursive {
|
contract FibonacciRecursive {
|
||||||
function fib3(uint n) public pure returns (uint);
|
function fib3(uint n) public pure returns (uint);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
case!("Fibonacci.sol", FibonacciRecursive, fib3Call, fib_recursive, n: U256);
|
|
||||||
|
|
||||||
sol!(
|
sol!(
|
||||||
contract FibonacciIterative {
|
contract FibonacciIterative {
|
||||||
function fib3(uint n) external pure returns (uint b);
|
function fib3(uint n) external pure returns (uint b);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
case!("Fibonacci.sol", FibonacciIterative, fib3Call, fib_iterative, n: U256);
|
|
||||||
|
|
||||||
sol!(
|
sol!(
|
||||||
contract FibonacciBinet {
|
contract FibonacciBinet {
|
||||||
function fib3(uint n) external pure returns (uint a);
|
function fib3(uint n) external pure returns (uint a);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
case!("Fibonacci.sol", FibonacciBinet, fib3Call, fib_binet, n: U256);
|
|
||||||
|
|
||||||
sol!(
|
sol!(
|
||||||
contract SHA1 {
|
contract SHA1 {
|
||||||
function sha1(bytes memory data) public pure returns (bytes20 ret);
|
function sha1(bytes memory data) public pure returns (bytes20 ret);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
case!("SHA1.sol", SHA1, sha1Call, sha1, pre: Vec<u8>);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract ERC20 {
|
|
||||||
function totalSupply() external view returns (uint);
|
|
||||||
|
|
||||||
function balanceOf(address account) external view returns (uint);
|
|
||||||
|
|
||||||
function transfer(address recipient, uint amount) external returns (bool);
|
|
||||||
|
|
||||||
function allowance(
|
|
||||||
address owner,
|
|
||||||
address spender
|
|
||||||
) external view returns (uint);
|
|
||||||
|
|
||||||
function approve(address spender, uint amount) external returns (bool);
|
|
||||||
|
|
||||||
function transferFrom(
|
|
||||||
address sender,
|
|
||||||
address recipient,
|
|
||||||
uint amount
|
|
||||||
) external returns (bool);
|
|
||||||
|
|
||||||
event Transfer(address indexed from, address indexed to, uint value);
|
|
||||||
event Approval(address indexed owner, address indexed spender, uint value);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("ERC20.sol", ERC20, totalSupplyCall, erc20,);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract Block {
|
|
||||||
function timestamp() public view returns (uint ret);
|
|
||||||
|
|
||||||
function number() public view returns (uint ret);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("Block.sol", Block, numberCall, block_number,);
|
|
||||||
case!("Block.sol", Block, timestampCall, block_timestamp,);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract Context {
|
|
||||||
function address_this() public view returns (address);
|
|
||||||
|
|
||||||
function caller() public pure returns (address);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("Context.sol", Context, address_thisCall, context_address,);
|
|
||||||
case!("Context.sol", Context, callerCall, context_caller,);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract DivisionArithmetics {
|
|
||||||
function div(uint n, uint d) public pure returns (uint q);
|
|
||||||
|
|
||||||
function sdiv(int n, int d) public pure returns (int q);
|
|
||||||
|
|
||||||
function mod(uint n, uint d) public pure returns (uint r);
|
|
||||||
|
|
||||||
function smod(int n, int d) public pure returns (int r);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("DivisionArithmetics.sol", DivisionArithmetics, divCall, division_arithmetics_div, n: U256, d: U256);
|
|
||||||
case!("DivisionArithmetics.sol", DivisionArithmetics, sdivCall, division_arithmetics_sdiv, n: I256, d: I256);
|
|
||||||
case!("DivisionArithmetics.sol", DivisionArithmetics, modCall, division_arithmetics_mod, n: U256, d: U256);
|
|
||||||
case!("DivisionArithmetics.sol", DivisionArithmetics, smodCall, division_arithmetics_smod, n: I256, d: I256);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract MStore8 {
|
|
||||||
function mStore8(uint value) public pure returns (uint256 word);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("mStore8.sol", MStore8, mStore8Call, mstore8, value: U256);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract Events {
|
|
||||||
event A(uint) anonymous;
|
|
||||||
event E(uint indexed, uint indexed, uint indexed);
|
|
||||||
|
|
||||||
function emitEvent(uint topics) public;
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("Events.sol", Events, emitEventCall, event, topics: U256);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract ExtCode {
|
|
||||||
function ExtCodeSize(address who) public view returns (uint ret);
|
|
||||||
|
|
||||||
function CodeSize() public pure returns (uint ret);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("ExtCode.sol", ExtCode, ExtCodeSizeCall, ext_code_size, address: Address);
|
|
||||||
case!("ExtCode.sol", ExtCode, CodeSizeCall, code_size,);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract MCopy {
|
|
||||||
function memcpy(bytes memory payload) public pure returns (bytes memory);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("MCopy.sol", MCopy, memcpyCall, memcpy, payload: Vec<u8>);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract Call {
|
|
||||||
function value_transfer(address payable destination) public payable;
|
|
||||||
|
|
||||||
function echo(bytes memory payload) public payable returns (bytes memory);
|
|
||||||
|
|
||||||
function call(
|
|
||||||
address callee,
|
|
||||||
bytes memory payload
|
|
||||||
) public payable returns (bytes memory);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("Call.sol", Call, value_transferCall, call_value_transfer, destination: Address);
|
|
||||||
case!("Call.sol", Call, callCall, call_call, destination: Address, payload: Vec<u8>);
|
|
||||||
case!("Call.sol", "Call", vec![], call_constructor);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract Value {
|
|
||||||
function balance_of(address _address) public view returns (uint ret);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("Value.sol", Value, balance_ofCall, value_balance_of, address: Address);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract Bitwise {
|
|
||||||
function opByte(uint i, uint x) public payable returns (uint ret);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("Bitwise.sol", Bitwise, opByteCall, bitwise_byte, index: U256, value: U256);
|
|
||||||
|
|
||||||
sol!(
|
|
||||||
contract Storage {
|
|
||||||
function transient(uint value) public returns (uint ret);
|
|
||||||
}
|
|
||||||
);
|
|
||||||
case!("Storage.sol", Storage, transientCall, storage_transient, value: U256);
|
|
||||||
|
|
||||||
impl Contract {
|
impl Contract {
|
||||||
/// Execute the contract.
|
pub fn baseline() -> Self {
|
||||||
///
|
let code = include_str!("../contracts/Baseline.sol");
|
||||||
/// Useful helper if the contract state can be ignored,
|
let name = "Baseline";
|
||||||
/// as it spares the deploy transaciton.
|
|
||||||
///
|
Self {
|
||||||
/// - Inserts an account with given `code` into a new state.
|
evm_runtime: crate::compile_evm_bin_runtime(name, code),
|
||||||
/// - Callee and caller account will be `Transaction::default_address()`.
|
pvm_runtime: crate::compile_blob(name, code),
|
||||||
/// - Sets the calldata.
|
calldata: Baseline::baselineCall::new(()).abi_encode(),
|
||||||
/// - Doesn't execute the constructor or deploy code.
|
}
|
||||||
/// - Calls the "call" export on a default backend config.
|
|
||||||
pub fn execute(&self) -> (State, CallOutput) {
|
|
||||||
State::default()
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(&self.pvm_runtime)
|
|
||||||
.calldata(self.calldata.clone())
|
|
||||||
.call()
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn build(calldata: Vec<u8>, name: &'static str, code: &str) -> Self {
|
pub fn odd_product(n: i32) -> Self {
|
||||||
|
let code = include_str!("../contracts/Computation.sol");
|
||||||
|
let name = "Computation";
|
||||||
|
|
||||||
Self {
|
Self {
|
||||||
name,
|
evm_runtime: crate::compile_evm_bin_runtime(name, code),
|
||||||
evm_runtime: compile_evm_bin_runtime(name, code),
|
pvm_runtime: crate::compile_blob(name, code),
|
||||||
pvm_runtime: compile_blob(name, code),
|
calldata: Computation::odd_productCall::new((n,)).abi_encode(),
|
||||||
calldata,
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn triangle_number(n: i64) -> Self {
|
||||||
|
let code = include_str!("../contracts/Computation.sol");
|
||||||
|
let name = "Computation";
|
||||||
|
|
||||||
|
Self {
|
||||||
|
evm_runtime: crate::compile_evm_bin_runtime(name, code),
|
||||||
|
pvm_runtime: crate::compile_blob(name, code),
|
||||||
|
calldata: Computation::triangle_numberCall::new((n,)).abi_encode(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn fib_recursive(n: u32) -> Self {
|
||||||
|
let code = include_str!("../contracts/Fibonacci.sol");
|
||||||
|
let name = "FibonacciRecursive";
|
||||||
|
|
||||||
|
Self {
|
||||||
|
evm_runtime: crate::compile_evm_bin_runtime(name, code),
|
||||||
|
pvm_runtime: crate::compile_blob(name, code),
|
||||||
|
calldata: FibonacciRecursive::fib3Call::new((U256::from(n),)).abi_encode(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn fib_iterative(n: u32) -> Self {
|
||||||
|
let code = include_str!("../contracts/Fibonacci.sol");
|
||||||
|
let name = "FibonacciIterative";
|
||||||
|
|
||||||
|
Self {
|
||||||
|
evm_runtime: crate::compile_evm_bin_runtime(name, code),
|
||||||
|
pvm_runtime: crate::compile_blob(name, code),
|
||||||
|
calldata: FibonacciIterative::fib3Call::new((U256::from(n),)).abi_encode(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn fib_binet(n: u32) -> Self {
|
||||||
|
let code = include_str!("../contracts/Fibonacci.sol");
|
||||||
|
let name = "FibonacciBinet";
|
||||||
|
|
||||||
|
Self {
|
||||||
|
evm_runtime: crate::compile_evm_bin_runtime(name, code),
|
||||||
|
pvm_runtime: crate::compile_blob(name, code),
|
||||||
|
calldata: FibonacciBinet::fib3Call::new((U256::from(n),)).abi_encode(),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn sha1(pre: Vec<u8>) -> Self {
|
||||||
|
let code = include_str!("../contracts/SHA1.sol");
|
||||||
|
let name = "SHA1";
|
||||||
|
|
||||||
|
Self {
|
||||||
|
evm_runtime: crate::compile_evm_bin_runtime(name, code),
|
||||||
|
pvm_runtime: crate::compile_blob(name, code),
|
||||||
|
calldata: SHA1::sha1Call::new((pre,)).abi_encode(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(test)]
|
|
||||||
mod tests {
|
|
||||||
use alloy_primitives::U256;
|
|
||||||
use rayon::iter::{IntoParallelIterator, ParallelIterator};
|
|
||||||
use serde::{de::Deserialize, Serialize};
|
|
||||||
use std::{collections::BTreeMap, fs::File};
|
|
||||||
|
|
||||||
use super::Contract;
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn codesize() {
|
|
||||||
let path = "codesize.json";
|
|
||||||
|
|
||||||
let existing = File::open(path)
|
|
||||||
.map(|file| {
|
|
||||||
BTreeMap::<String, usize>::deserialize(&mut serde_json::Deserializer::from_reader(
|
|
||||||
file,
|
|
||||||
))
|
|
||||||
.expect("should be able to deserialze codesize data")
|
|
||||||
})
|
|
||||||
.ok();
|
|
||||||
|
|
||||||
let extract_code_size = |compile: fn() -> Contract| {
|
|
||||||
let contract = compile();
|
|
||||||
let contract_length = contract.pvm_runtime.len();
|
|
||||||
let size_change = existing
|
|
||||||
.as_ref()
|
|
||||||
.and_then(|map| map.get(contract.name))
|
|
||||||
.filter(|old| **old != 0)
|
|
||||||
.map(|old| {
|
|
||||||
let old = *old as f32;
|
|
||||||
let p = (contract_length as f32 - old) / old * 100.0;
|
|
||||||
format!("({p}% change from {old} bytes)",)
|
|
||||||
})
|
|
||||||
.unwrap_or_default();
|
|
||||||
|
|
||||||
println!("{}: {contract_length} bytes {size_change}", contract.name);
|
|
||||||
|
|
||||||
(contract.name, contract_length)
|
|
||||||
};
|
|
||||||
|
|
||||||
[
|
|
||||||
Contract::baseline as fn() -> Contract,
|
|
||||||
Contract::flipper as fn() -> Contract,
|
|
||||||
(|| Contract::odd_product(0)) as fn() -> Contract,
|
|
||||||
(|| Contract::fib_iterative(U256::ZERO)) as fn() -> Contract,
|
|
||||||
Contract::erc20 as fn() -> Contract,
|
|
||||||
(|| Contract::sha1(Vec::new())) as fn() -> Contract,
|
|
||||||
(|| Contract::division_arithmetics_div(U256::ZERO, U256::ZERO)) as fn() -> Contract,
|
|
||||||
(|| Contract::event(U256::ZERO)) as fn() -> Contract,
|
|
||||||
]
|
|
||||||
.into_par_iter()
|
|
||||||
.map(extract_code_size)
|
|
||||||
.collect::<BTreeMap<_, _>>()
|
|
||||||
.serialize(&mut serde_json::Serializer::pretty(
|
|
||||||
File::create(path).unwrap(),
|
|
||||||
))
|
|
||||||
.unwrap_or_else(|err| panic!("can not write codesize data to '{path}': {err}"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,8 +1,5 @@
|
|||||||
use alloy_primitives::{Address, U256};
|
|
||||||
use cases::Contract;
|
use cases::Contract;
|
||||||
use mock_runtime::{CallOutput, State};
|
use mock_runtime::State;
|
||||||
|
|
||||||
use crate::mock_runtime::{Event, ReturnFlags};
|
|
||||||
|
|
||||||
pub mod cases;
|
pub mod cases;
|
||||||
pub mod mock_runtime;
|
pub mod mock_runtime;
|
||||||
@@ -10,33 +7,79 @@ pub mod mock_runtime;
|
|||||||
#[cfg(test)]
|
#[cfg(test)]
|
||||||
mod tests;
|
mod tests;
|
||||||
|
|
||||||
pub fn assert_success(contract: &Contract, differential: bool) -> (State, CallOutput) {
|
/// Compile the blob of `contract_name` found in given `source_code`.
|
||||||
let (state, output) = contract.execute();
|
/// The `solc` optimizer will be enabled
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
pub fn compile_blob(contract_name: &str, source_code: &str) -> Vec<u8> {
|
||||||
|
compile_blob_with_options(
|
||||||
|
contract_name,
|
||||||
|
source_code,
|
||||||
|
true,
|
||||||
|
revive_solidity::SolcPipeline::Yul,
|
||||||
|
)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Compile the EVM bin-runtime of `contract_name` found in given `source_code`.
|
||||||
|
/// The `solc` optimizer will be enabled
|
||||||
|
pub fn compile_evm_bin_runtime(contract_name: &str, source_code: &str) -> Vec<u8> {
|
||||||
|
let file_name = "contract.sol";
|
||||||
|
|
||||||
|
let contracts = revive_solidity::test_utils::build_solidity_with_options_evm(
|
||||||
|
[(file_name.into(), source_code.into())].into(),
|
||||||
|
Default::default(),
|
||||||
|
None,
|
||||||
|
revive_solidity::SolcPipeline::Yul,
|
||||||
|
true,
|
||||||
|
)
|
||||||
|
.expect("source should compile");
|
||||||
|
let bin_runtime = &contracts
|
||||||
|
.get(contract_name)
|
||||||
|
.unwrap_or_else(|| panic!("contract '{}' didn't produce bin-runtime", contract_name))
|
||||||
|
.object;
|
||||||
|
|
||||||
|
hex::decode(bin_runtime).expect("bin-runtime shold be hex encoded")
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Compile the blob of `contract_name` found in given `source_code`.
|
||||||
|
pub fn compile_blob_with_options(
|
||||||
|
contract_name: &str,
|
||||||
|
source_code: &str,
|
||||||
|
solc_optimizer_enabled: bool,
|
||||||
|
pipeline: revive_solidity::SolcPipeline,
|
||||||
|
) -> Vec<u8> {
|
||||||
|
let file_name = "contract.sol";
|
||||||
|
|
||||||
|
let contracts = revive_solidity::test_utils::build_solidity_with_options(
|
||||||
|
[(file_name.into(), source_code.into())].into(),
|
||||||
|
Default::default(),
|
||||||
|
None,
|
||||||
|
pipeline,
|
||||||
|
era_compiler_llvm_context::OptimizerSettings::cycles(),
|
||||||
|
solc_optimizer_enabled,
|
||||||
|
)
|
||||||
|
.expect("source should compile")
|
||||||
|
.contracts
|
||||||
|
.expect("source should contain at least one contract");
|
||||||
|
|
||||||
|
let bytecode = contracts[file_name][contract_name]
|
||||||
|
.evm
|
||||||
|
.as_ref()
|
||||||
|
.expect("source should produce EVM output")
|
||||||
|
.assembly_text
|
||||||
|
.as_ref()
|
||||||
|
.expect("source should produce assembly text");
|
||||||
|
|
||||||
|
hex::decode(bytecode).expect("hex encoding should always be valid")
|
||||||
|
}
|
||||||
|
|
||||||
|
pub fn assert_success(contract: Contract, differential: bool) -> State {
|
||||||
|
let (mut instance, export) = mock_runtime::prepare(&contract.pvm_runtime, None);
|
||||||
|
let state = mock_runtime::call(State::new(contract.calldata.clone()), &mut instance, export);
|
||||||
|
assert_eq!(state.output.flags, 0);
|
||||||
|
|
||||||
if differential {
|
if differential {
|
||||||
let evm =
|
let evm = revive_differential::prepare(contract.evm_runtime, contract.calldata);
|
||||||
revive_differential::prepare(contract.evm_runtime.clone(), contract.calldata.clone());
|
assert_eq!(state.output.data.clone(), revive_differential::execute(evm));
|
||||||
let (evm_output, evm_log) = revive_differential::execute(evm);
|
|
||||||
|
|
||||||
assert_eq!(output.data.clone(), evm_output);
|
|
||||||
assert_eq!(output.events.len(), evm_log.len());
|
|
||||||
assert_eq!(
|
|
||||||
output.events,
|
|
||||||
evm_log
|
|
||||||
.iter()
|
|
||||||
.map(|log| Event {
|
|
||||||
address: Address::from_slice(log.address.as_bytes()),
|
|
||||||
data: log.data.clone(),
|
|
||||||
topics: log
|
|
||||||
.topics
|
|
||||||
.iter()
|
|
||||||
.map(|topic| U256::from_be_bytes(topic.0))
|
|
||||||
.collect(),
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>()
|
|
||||||
);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
(state, output)
|
state
|
||||||
}
|
}
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
+73
-446
@@ -1,16 +1,11 @@
|
|||||||
use std::str::FromStr;
|
use alloy_primitives::{FixedBytes, Keccak256, I256, U256};
|
||||||
|
use alloy_sol_types::{sol, SolCall};
|
||||||
use alloy_primitives::{keccak256, Address, FixedBytes, B256, I256, U256};
|
|
||||||
use alloy_sol_types::{sol, SolCall, SolValue};
|
|
||||||
use rayon::iter::{IntoParallelRefIterator, ParallelIterator};
|
|
||||||
use sha1::Digest;
|
use sha1::Digest;
|
||||||
|
|
||||||
use revive_solidity::test_utils::*;
|
|
||||||
|
|
||||||
use crate::{
|
use crate::{
|
||||||
assert_success,
|
assert_success,
|
||||||
cases::Contract,
|
cases::Contract,
|
||||||
mock_runtime::{self, ReturnFlags, State, Transaction},
|
mock_runtime::{self, State},
|
||||||
};
|
};
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
@@ -18,12 +13,12 @@ fn fibonacci() {
|
|||||||
let parameter = 6;
|
let parameter = 6;
|
||||||
|
|
||||||
for contract in [
|
for contract in [
|
||||||
Contract::fib_recursive(U256::from(parameter)),
|
Contract::fib_recursive(parameter),
|
||||||
Contract::fib_iterative(U256::from(parameter)),
|
Contract::fib_iterative(parameter),
|
||||||
Contract::fib_binet(U256::from(parameter)),
|
Contract::fib_binet(parameter),
|
||||||
] {
|
] {
|
||||||
let (_, output) = assert_success(&contract, true);
|
let state = assert_success(contract, true);
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
let received = U256::from_be_bytes::<32>(state.output.data.try_into().unwrap());
|
||||||
let expected = U256::from(8);
|
let expected = U256::from(8);
|
||||||
assert_eq!(received, expected);
|
assert_eq!(received, expected);
|
||||||
}
|
}
|
||||||
@@ -31,24 +26,17 @@ fn fibonacci() {
|
|||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn flipper() {
|
fn flipper() {
|
||||||
let (state, address) = State::new_deployed(Contract::flipper_constructor(true));
|
let code = crate::compile_blob("Flipper", include_str!("../contracts/flipper.sol"));
|
||||||
|
let state = State::new(0xcde4efa9u32.to_be_bytes().to_vec());
|
||||||
|
let (mut instance, export) = mock_runtime::prepare(&code, None);
|
||||||
|
|
||||||
let contract = Contract::flipper();
|
let state = crate::mock_runtime::call(state, &mut instance, export);
|
||||||
let (state, output) = state
|
assert_eq!(state.output.flags, 0);
|
||||||
.transaction()
|
assert_eq!(state.storage[&U256::ZERO], U256::try_from(1).unwrap());
|
||||||
.calldata(contract.calldata.clone())
|
|
||||||
.callee(address)
|
|
||||||
.call();
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
|
||||||
state.assert_storage_key(address, U256::ZERO, U256::ZERO);
|
|
||||||
|
|
||||||
let (state, output) = state
|
let state = crate::mock_runtime::call(state, &mut instance, export);
|
||||||
.transaction()
|
assert_eq!(state.output.flags, 0);
|
||||||
.calldata(contract.calldata)
|
assert_eq!(state.storage[&U256::ZERO], U256::ZERO);
|
||||||
.callee(address)
|
|
||||||
.call();
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
|
||||||
state.assert_storage_key(address, U256::ZERO, U256::from(1));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
@@ -64,41 +52,41 @@ fn hash_keccak_256() {
|
|||||||
hash = keccak256(bytes(_pre));
|
hash = keccak256(bytes(_pre));
|
||||||
}
|
}
|
||||||
}"#;
|
}"#;
|
||||||
let code = compile_blob("TestSha3", source);
|
let code = crate::compile_blob("TestSha3", source);
|
||||||
|
|
||||||
let param = "hello";
|
let param = "hello";
|
||||||
let input = TestSha3::testCall::new((param.to_string(),)).abi_encode();
|
let input = TestSha3::testCall::new((param.to_string(),)).abi_encode();
|
||||||
|
|
||||||
let (_, output) = State::default()
|
let state = State::new(input);
|
||||||
.transaction()
|
let (mut instance, export) = mock_runtime::prepare(&code, None);
|
||||||
.with_default_account(&code)
|
let state = crate::mock_runtime::call(state, &mut instance, export);
|
||||||
.calldata(input)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
assert_eq!(state.output.flags, 0);
|
||||||
|
|
||||||
let expected = keccak256(param.as_bytes());
|
let mut hasher = Keccak256::new();
|
||||||
let received = FixedBytes::<32>::from_slice(&output.data);
|
hasher.update(param);
|
||||||
|
let expected = hasher.finalize();
|
||||||
|
let received = FixedBytes::<32>::from_slice(&state.output.data);
|
||||||
assert_eq!(received, expected);
|
assert_eq!(received, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn erc20() {
|
fn erc20() {
|
||||||
let _ = compile_blob("ERC20", include_str!("../contracts/ERC20.sol"));
|
let _ = crate::compile_blob("ERC20", include_str!("../contracts/ERC20.sol"));
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn triangle_number() {
|
fn triangle_number() {
|
||||||
let (_, output) = assert_success(&Contract::triangle_number(13), true);
|
let state = assert_success(Contract::triangle_number(13), true);
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
let received = U256::from_be_bytes::<32>(state.output.data.try_into().unwrap());
|
||||||
let expected = U256::try_from(91).unwrap();
|
let expected = U256::try_from(91).unwrap();
|
||||||
assert_eq!(received, expected);
|
assert_eq!(received, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn odd_product() {
|
fn odd_product() {
|
||||||
let (_, output) = assert_success(&Contract::odd_product(5), true);
|
let state = assert_success(Contract::odd_product(5), true);
|
||||||
let received = I256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
let received = I256::from_be_bytes::<32>(state.output.data.try_into().unwrap());
|
||||||
let expected = I256::try_from(945i64).unwrap();
|
let expected = I256::try_from(945i64).unwrap();
|
||||||
assert_eq!(received, expected);
|
assert_eq!(received, expected);
|
||||||
}
|
}
|
||||||
@@ -111,25 +99,22 @@ fn msize_plain() {
|
|||||||
function mSize() public pure returns (uint);
|
function mSize() public pure returns (uint);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
let code = compile_blob_with_options(
|
let code = crate::compile_blob_with_options(
|
||||||
"MSize",
|
"MSize",
|
||||||
include_str!("../contracts/MSize.sol"),
|
include_str!("../contracts/MSize.sol"),
|
||||||
false,
|
false,
|
||||||
revive_solidity::SolcPipeline::EVMLA,
|
revive_solidity::SolcPipeline::EVMLA,
|
||||||
);
|
);
|
||||||
|
let (mut instance, export) = mock_runtime::prepare(&code, None);
|
||||||
|
|
||||||
let input = MSize::mSizeCall::new(()).abi_encode();
|
let input = MSize::mSizeCall::new(()).abi_encode();
|
||||||
let (_, output) = State::default()
|
let state = crate::mock_runtime::call(State::new(input), &mut instance, export);
|
||||||
.transaction()
|
|
||||||
.calldata(input)
|
|
||||||
.with_default_account(&code)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
assert_eq!(state.output.flags, 0);
|
||||||
|
|
||||||
// Solidity always stores the "free memory pointer" (32 byte int) at offset 64.
|
// Solidity always stores the "free memory pointer" (32 byte int) at offset 64.
|
||||||
let expected = U256::try_from(64 + 32).unwrap();
|
let expected = U256::try_from(64 + 32).unwrap();
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
let received = U256::from_be_bytes::<32>(state.output.data.try_into().unwrap());
|
||||||
assert_eq!(received, expected);
|
assert_eq!(received, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -140,19 +125,17 @@ fn transferred_value() {
|
|||||||
function value() public payable returns (uint);
|
function value() public payable returns (uint);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
let code = compile_blob("Value", include_str!("../contracts/Value.sol"));
|
let code = crate::compile_blob("Value", include_str!("../contracts/Value.sol"));
|
||||||
|
let mut state = State::new(Value::valueCall::SELECTOR.to_vec());
|
||||||
|
state.value = 0x1;
|
||||||
|
|
||||||
let (_, output) = State::default()
|
let (mut instance, export) = mock_runtime::prepare(&code, None);
|
||||||
.transaction()
|
let state = crate::mock_runtime::call(state, &mut instance, export);
|
||||||
.calldata(Value::valueCall::SELECTOR.to_vec())
|
|
||||||
.callvalue(U256::from(123))
|
|
||||||
.with_default_account(&code)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
assert_eq!(state.output.flags, 0);
|
||||||
|
|
||||||
let expected = I256::try_from(123).unwrap();
|
let expected = I256::try_from(state.value).unwrap();
|
||||||
let received = I256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
let received = I256::from_be_bytes::<32>(state.output.data.try_into().unwrap());
|
||||||
assert_eq!(received, expected);
|
assert_eq!(received, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -164,33 +147,49 @@ fn msize_non_word_sized_access() {
|
|||||||
function mStore100() public pure returns (uint);
|
function mStore100() public pure returns (uint);
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
let code = compile_blob_with_options(
|
let code = crate::compile_blob_with_options(
|
||||||
"MSize",
|
"MSize",
|
||||||
include_str!("../contracts/MSize.sol"),
|
include_str!("../contracts/MSize.sol"),
|
||||||
false,
|
false,
|
||||||
revive_solidity::SolcPipeline::Yul,
|
revive_solidity::SolcPipeline::Yul,
|
||||||
);
|
);
|
||||||
|
let (mut instance, export) = mock_runtime::prepare(&code, None);
|
||||||
|
|
||||||
let input = MSize::mStore100Call::new(()).abi_encode();
|
let input = MSize::mStore100Call::new(()).abi_encode();
|
||||||
let (_, output) = State::default()
|
let state = crate::mock_runtime::call(State::new(input), &mut instance, export);
|
||||||
.transaction()
|
|
||||||
.with_default_account(&code)
|
|
||||||
.calldata(input)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
assert_eq!(state.output.flags, 0);
|
||||||
|
|
||||||
// https://docs.zksync.io/build/developer-reference/differences-with-ethereum.html#mstore-mload
|
// https://docs.zksync.io/build/developer-reference/differences-with-ethereum.html#mstore-mload
|
||||||
// "Unlike EVM, where the memory growth is in words, on zkEVM the memory growth is counted in bytes."
|
// "Unlike EVM, where the memory growth is in words, on zkEVM the memory growth is counted in bytes."
|
||||||
// "For example, if you write mstore(100, 0) the msize on zkEVM will be 132, but on the EVM it will be 160."
|
// "For example, if you write mstore(100, 0) the msize on zkEVM will be 132, but on the EVM it will be 160."
|
||||||
let expected = U256::try_from(132).unwrap();
|
let expected = U256::try_from(132).unwrap();
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
let received = U256::from_be_bytes::<32>(state.output.data.try_into().unwrap());
|
||||||
assert_eq!(received, expected);
|
assert_eq!(received, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
#[test]
|
||||||
fn mstore8() {
|
fn mstore8() {
|
||||||
for (received, expected) in [
|
sol!(
|
||||||
|
#[derive(Debug, PartialEq, Eq)]
|
||||||
|
contract MStore8 {
|
||||||
|
function mStore8(uint value) public pure returns (uint256 word);
|
||||||
|
}
|
||||||
|
);
|
||||||
|
let code = crate::compile_blob("MStore8", include_str!("../contracts/mStore8.sol"));
|
||||||
|
let (mut instance, export) = mock_runtime::prepare(&code, None);
|
||||||
|
|
||||||
|
let mut assert = |parameter, expected| {
|
||||||
|
let input = MStore8::mStore8Call::new((parameter,)).abi_encode();
|
||||||
|
let state = crate::mock_runtime::call(State::new(input), &mut instance, export);
|
||||||
|
|
||||||
|
assert_eq!(state.output.flags, 0);
|
||||||
|
|
||||||
|
let received = U256::from_be_bytes::<32>(state.output.data.try_into().unwrap());
|
||||||
|
assert_eq!(received, expected);
|
||||||
|
};
|
||||||
|
|
||||||
|
for (parameter, expected) in [
|
||||||
(U256::MIN, U256::MIN),
|
(U256::MIN, U256::MIN),
|
||||||
(
|
(
|
||||||
U256::from(1),
|
U256::from(1),
|
||||||
@@ -249,16 +248,8 @@ fn mstore8() {
|
|||||||
)
|
)
|
||||||
.unwrap(),
|
.unwrap(),
|
||||||
),
|
),
|
||||||
]
|
] {
|
||||||
.par_iter()
|
assert(parameter, expected);
|
||||||
.map(|(parameter, expected)| {
|
|
||||||
let (_, output) = assert_success(&Contract::mstore8(*parameter), true);
|
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
|
||||||
(received, *expected)
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>()
|
|
||||||
{
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -269,372 +260,8 @@ fn sha1() {
|
|||||||
hasher.update(&pre);
|
hasher.update(&pre);
|
||||||
let hash = hasher.finalize();
|
let hash = hasher.finalize();
|
||||||
|
|
||||||
let (_, output) = assert_success(&Contract::sha1(pre), true);
|
let state = assert_success(Contract::sha1(pre), true);
|
||||||
let expected = FixedBytes::<20>::from_slice(&hash[..]);
|
let expected = FixedBytes::<20>::from_slice(&hash[..]);
|
||||||
let received = FixedBytes::<20>::from_slice(&output.data[..20]);
|
let received = FixedBytes::<20>::from_slice(&state.output.data[..20]);
|
||||||
assert_eq!(received, expected);
|
assert_eq!(received, expected);
|
||||||
}
|
}
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn block_number() {
|
|
||||||
let (_, output) = assert_success(&Contract::block_number(), true);
|
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
|
||||||
let expected = U256::from(mock_runtime::State::BLOCK_NUMBER);
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn block_timestamp() {
|
|
||||||
let (_, output) = assert_success(&Contract::block_timestamp(), true);
|
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
|
||||||
let expected = U256::from(mock_runtime::State::BLOCK_TIMESTAMP);
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn address() {
|
|
||||||
let contract = Contract::context_address();
|
|
||||||
let (_, output) = assert_success(&contract, true);
|
|
||||||
let received = Address::from_slice(&output.data[12..]);
|
|
||||||
let expected = Transaction::default_address();
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn caller() {
|
|
||||||
let (_, output) = assert_success(&Contract::context_caller(), true);
|
|
||||||
let received = Address::from_slice(&output.data[12..]);
|
|
||||||
let expected = Transaction::default_address();
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn unsigned_division() {
|
|
||||||
let one = U256::from(1);
|
|
||||||
let two = U256::from(2);
|
|
||||||
let five = U256::from(5);
|
|
||||||
for (received, expected) in [
|
|
||||||
(five, five, one),
|
|
||||||
(five, one, five),
|
|
||||||
(U256::ZERO, U256::MAX, U256::ZERO),
|
|
||||||
(five, two, two),
|
|
||||||
(one, U256::ZERO, U256::ZERO),
|
|
||||||
]
|
|
||||||
.par_iter()
|
|
||||||
.map(|(n, d, q)| {
|
|
||||||
let (_, output) = assert_success(&Contract::division_arithmetics_div(*n, *d), true);
|
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
|
||||||
(received, *q)
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>()
|
|
||||||
{
|
|
||||||
assert_eq!(received, expected)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn signed_division() {
|
|
||||||
let one = I256::try_from(1).unwrap();
|
|
||||||
let two = I256::try_from(2).unwrap();
|
|
||||||
let minus_two = I256::try_from(-2).unwrap();
|
|
||||||
let five = I256::try_from(5).unwrap();
|
|
||||||
let minus_five = I256::try_from(-5).unwrap();
|
|
||||||
for (received, expected) in [
|
|
||||||
(five, five, one),
|
|
||||||
(five, one, five),
|
|
||||||
(I256::ZERO, I256::MAX, I256::ZERO),
|
|
||||||
(I256::ZERO, I256::MINUS_ONE, I256::ZERO),
|
|
||||||
(five, two, two),
|
|
||||||
(five, I256::MINUS_ONE, minus_five),
|
|
||||||
(I256::MINUS_ONE, minus_two, I256::ZERO),
|
|
||||||
(minus_five, minus_five, one),
|
|
||||||
(minus_five, two, minus_two),
|
|
||||||
(I256::MINUS_ONE, I256::MIN, I256::ZERO),
|
|
||||||
(one, I256::ZERO, I256::ZERO),
|
|
||||||
]
|
|
||||||
.par_iter()
|
|
||||||
.map(|(n, d, q)| {
|
|
||||||
let (_, output) = assert_success(&Contract::division_arithmetics_sdiv(*n, *d), true);
|
|
||||||
let received = I256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
|
||||||
(received, *q)
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>()
|
|
||||||
{
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn unsigned_remainder() {
|
|
||||||
let one = U256::from(1);
|
|
||||||
let two = U256::from(2);
|
|
||||||
let five = U256::from(5);
|
|
||||||
for (received, expected) in [
|
|
||||||
(five, five, U256::ZERO),
|
|
||||||
(five, one, U256::ZERO),
|
|
||||||
(U256::ZERO, U256::MAX, U256::ZERO),
|
|
||||||
(U256::MAX, U256::MAX, U256::ZERO),
|
|
||||||
(five, two, one),
|
|
||||||
(two, five, two),
|
|
||||||
(U256::MAX, U256::ZERO, U256::ZERO),
|
|
||||||
]
|
|
||||||
.par_iter()
|
|
||||||
.map(|(n, d, q)| {
|
|
||||||
let (_, output) = assert_success(&Contract::division_arithmetics_mod(*n, *d), true);
|
|
||||||
let received = U256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
|
||||||
(received, *q)
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>()
|
|
||||||
{
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn signed_remainder() {
|
|
||||||
let one = I256::try_from(1).unwrap();
|
|
||||||
let two = I256::try_from(2).unwrap();
|
|
||||||
let minus_two = I256::try_from(-2).unwrap();
|
|
||||||
let five = I256::try_from(5).unwrap();
|
|
||||||
let minus_five = I256::try_from(-5).unwrap();
|
|
||||||
for (received, expected) in [
|
|
||||||
(five, five, I256::ZERO),
|
|
||||||
(five, one, I256::ZERO),
|
|
||||||
(I256::ZERO, I256::MAX, I256::ZERO),
|
|
||||||
(I256::MAX, I256::MAX, I256::ZERO),
|
|
||||||
(five, two, one),
|
|
||||||
(two, five, two),
|
|
||||||
(five, minus_five, I256::ZERO),
|
|
||||||
(five, I256::MINUS_ONE, I256::ZERO),
|
|
||||||
(five, minus_two, one),
|
|
||||||
(minus_five, two, I256::MINUS_ONE),
|
|
||||||
(minus_two, five, minus_two),
|
|
||||||
(minus_five, minus_five, I256::ZERO),
|
|
||||||
(minus_five, I256::MINUS_ONE, I256::ZERO),
|
|
||||||
(minus_five, minus_two, I256::MINUS_ONE),
|
|
||||||
(minus_two, minus_five, minus_two),
|
|
||||||
(I256::MIN, I256::MINUS_ONE, I256::ZERO),
|
|
||||||
(I256::ZERO, I256::ZERO, I256::ZERO),
|
|
||||||
]
|
|
||||||
.par_iter()
|
|
||||||
.map(|(n, d, q)| {
|
|
||||||
let (_, output) = assert_success(&Contract::division_arithmetics_smod(*n, *d), true);
|
|
||||||
let received = I256::from_be_bytes::<32>(output.data.try_into().unwrap());
|
|
||||||
(received, *q)
|
|
||||||
})
|
|
||||||
.collect::<Vec<_>>()
|
|
||||||
{
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn events() {
|
|
||||||
assert_success(&Contract::event(U256::ZERO), true);
|
|
||||||
assert_success(&Contract::event(U256::from(123)), true);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn create2() {
|
|
||||||
let mut state = State::default();
|
|
||||||
let contract_a = Contract::create_a();
|
|
||||||
state.upload_code(&contract_a.pvm_runtime);
|
|
||||||
|
|
||||||
let contract = Contract::create_b();
|
|
||||||
let (state, output) = state
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(&contract.pvm_runtime)
|
|
||||||
.calldata(contract.calldata)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
|
||||||
assert_eq!(state.accounts().len(), 2);
|
|
||||||
|
|
||||||
for address in state.accounts().keys() {
|
|
||||||
if *address != Transaction::default_address() {
|
|
||||||
let derived_address = Transaction::default_address().create2(
|
|
||||||
B256::from(U256::from(1)),
|
|
||||||
keccak256(&contract_a.pvm_runtime).0,
|
|
||||||
);
|
|
||||||
assert_eq!(*address, derived_address);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn create2_failure() {
|
|
||||||
let mut state = State::default();
|
|
||||||
let contract_a = Contract::create_a();
|
|
||||||
state.upload_code(&contract_a.pvm_runtime);
|
|
||||||
|
|
||||||
let contract = Contract::create_b();
|
|
||||||
let (state, output) = state
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(&contract.pvm_runtime)
|
|
||||||
.calldata(contract.calldata.clone())
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
|
||||||
|
|
||||||
// The address already exists, which should cause the contract to revert
|
|
||||||
|
|
||||||
let (_, output) = state
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(&contract.pvm_runtime)
|
|
||||||
.calldata(contract.calldata)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Revert);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn create_with_value() {
|
|
||||||
let mut state = State::default();
|
|
||||||
state.upload_code(&Contract::create_a().pvm_runtime);
|
|
||||||
let amount = U256::from(123);
|
|
||||||
|
|
||||||
let contract = Contract::create_b();
|
|
||||||
let (state, output) = state
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(&contract.pvm_runtime)
|
|
||||||
.callvalue(amount)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
|
||||||
assert_eq!(state.accounts().len(), 2);
|
|
||||||
|
|
||||||
for (address, account) in state.accounts() {
|
|
||||||
if *address == Transaction::default_address() {
|
|
||||||
assert_eq!(account.value, U256::ZERO);
|
|
||||||
} else {
|
|
||||||
assert_eq!(account.value, amount);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn ext_code_size() {
|
|
||||||
let contract = Contract::ext_code_size(Transaction::default_address());
|
|
||||||
let (_, output) = assert_success(&contract, false);
|
|
||||||
let received = U256::from_be_slice(&output.data);
|
|
||||||
let expected = U256::from(contract.pvm_runtime.len());
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
|
|
||||||
let contract = Contract::ext_code_size(Default::default());
|
|
||||||
let (_, output) = assert_success(&contract, false);
|
|
||||||
let received = U256::from_be_slice(&output.data);
|
|
||||||
let expected = U256::ZERO;
|
|
||||||
assert_eq!(received, expected);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn code_size() {
|
|
||||||
let contract = Contract::code_size();
|
|
||||||
let (_, output) = assert_success(&contract, false);
|
|
||||||
let expected = U256::from(contract.pvm_runtime.len());
|
|
||||||
let received = U256::from_be_slice(&output.data);
|
|
||||||
assert_eq!(expected, received);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn value_transfer() {
|
|
||||||
// Succeeds in remix (shanghai) but traps the interpreter
|
|
||||||
let (state, _) = assert_success(&Contract::call_value_transfer(Default::default()), false);
|
|
||||||
|
|
||||||
assert_eq!(state.accounts().len(), 2);
|
|
||||||
assert!(state.accounts().get(&Address::default()).is_some());
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn echo() {
|
|
||||||
let (state, address) = State::new_deployed(Contract::call_constructor());
|
|
||||||
|
|
||||||
let expected = vec![1, 2, 3, 4, 5];
|
|
||||||
let contract = Contract::call_call(address, expected.clone());
|
|
||||||
let (_, output) = state
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(&contract.pvm_runtime)
|
|
||||||
.calldata(contract.calldata)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(output.flags, ReturnFlags::Success);
|
|
||||||
|
|
||||||
let received = alloy_primitives::Bytes::abi_decode(&output.data, true)
|
|
||||||
.unwrap()
|
|
||||||
.to_vec();
|
|
||||||
|
|
||||||
assert_eq!(expected, received);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn mcopy() {
|
|
||||||
let expected = vec![1, 2, 3];
|
|
||||||
|
|
||||||
let (_, output) = assert_success(&Contract::memcpy(expected.clone()), false);
|
|
||||||
|
|
||||||
let received = alloy_primitives::Bytes::abi_decode(&output.data, true)
|
|
||||||
.unwrap()
|
|
||||||
.to_vec();
|
|
||||||
|
|
||||||
assert_eq!(expected, received);
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn balance() {
|
|
||||||
let (_, output) = assert_success(&Contract::value_balance_of(Default::default()), false);
|
|
||||||
|
|
||||||
let expected = U256::ZERO;
|
|
||||||
let received = U256::from_be_slice(&output.data);
|
|
||||||
assert_eq!(expected, received);
|
|
||||||
|
|
||||||
let expected = U256::from(54589);
|
|
||||||
let (mut state, address) = State::new_deployed(Contract::value_balance_of(Default::default()));
|
|
||||||
state.accounts_mut().get_mut(&address).unwrap().value = expected;
|
|
||||||
|
|
||||||
let contract = Contract::value_balance_of(address);
|
|
||||||
let (_, output) = state
|
|
||||||
.transaction()
|
|
||||||
.with_default_account(&contract.pvm_runtime)
|
|
||||||
.calldata(contract.calldata)
|
|
||||||
.call();
|
|
||||||
|
|
||||||
assert_eq!(ReturnFlags::Success, output.flags);
|
|
||||||
|
|
||||||
let received = U256::from_be_slice(&output.data);
|
|
||||||
assert_eq!(expected, received)
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn bitwise_byte() {
|
|
||||||
assert_success(&Contract::bitwise_byte(U256::ZERO, U256::ZERO), true);
|
|
||||||
assert_success(&Contract::bitwise_byte(U256::ZERO, U256::MAX), true);
|
|
||||||
assert_success(&Contract::bitwise_byte(U256::MAX, U256::ZERO), true);
|
|
||||||
assert_success(
|
|
||||||
&Contract::bitwise_byte(U256::from_str("18446744073709551619").unwrap(), U256::MAX),
|
|
||||||
true,
|
|
||||||
);
|
|
||||||
|
|
||||||
let de_bruijn_sequence =
|
|
||||||
hex::decode("4060503824160d0784426150b864361d0f88c4a27148ac5a2f198d46e391d8f4").unwrap();
|
|
||||||
let value = U256::from_be_bytes::<32>(de_bruijn_sequence.clone().try_into().unwrap());
|
|
||||||
|
|
||||||
for (index, byte) in de_bruijn_sequence.iter().enumerate() {
|
|
||||||
let (_, output) = assert_success(&Contract::bitwise_byte(U256::from(index), value), true);
|
|
||||||
let expected = U256::from(*byte as i32);
|
|
||||||
let received = U256::abi_decode(&output.data, true).unwrap();
|
|
||||||
assert_eq!(expected, received)
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
#[test]
|
|
||||||
fn transient_storage() {
|
|
||||||
let expected = U256::MAX;
|
|
||||||
let (state, output) = assert_success(&Contract::storage_transient(expected), false);
|
|
||||||
let received = U256::abi_decode(&output.data, true).unwrap();
|
|
||||||
assert_eq!(expected, received);
|
|
||||||
|
|
||||||
assert!(state
|
|
||||||
.accounts()
|
|
||||||
.values()
|
|
||||||
.all(|account| account.storage.is_empty()));
|
|
||||||
}
|
|
||||||
|
|||||||
@@ -1,14 +1,9 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revive-linker"
|
name = "revive-linker"
|
||||||
version.workspace = true
|
version = "0.1.0"
|
||||||
license.workspace = true
|
edition = "2021"
|
||||||
edition.workspace = true
|
|
||||||
repository.workspace = true
|
|
||||||
authors.workspace = true
|
|
||||||
description = "revive compiler linker utils"
|
|
||||||
|
|
||||||
[features]
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
riscv-64 = []
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
inkwell = { workspace = true }
|
inkwell = { workspace = true }
|
||||||
@@ -18,5 +13,5 @@ polkavm-common = { workspace = true }
|
|||||||
libc = { workspace = true }
|
libc = { workspace = true }
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
|
|
||||||
revive-builtins = { workspace = true }
|
revive-builtins = { path = "../builtins" }
|
||||||
lld-sys = { workspace = true }
|
lld-sys = { path = "../lld-sys" }
|
||||||
|
|||||||
@@ -8,16 +8,6 @@ SECTIONS {
|
|||||||
.text : { KEEP(*(.text.polkavm_export)) *(.text .text.*) }
|
.text : { KEEP(*(.text.polkavm_export)) *(.text .text.*) }
|
||||||
}"#;
|
}"#;
|
||||||
|
|
||||||
#[cfg(not(feature = "riscv-64"))]
|
|
||||||
const BUILTINS_ARCHIVE_FILE: &str = "libclang_rt.builtins-riscv32.a";
|
|
||||||
#[cfg(feature = "riscv-64")]
|
|
||||||
const BUILTINS_ARCHIVE_FILE: &str = "libclang_rt.builtins-riscv64.a";
|
|
||||||
|
|
||||||
#[cfg(not(feature = "riscv-64"))]
|
|
||||||
const BUILTINS_LIB_NAME: &str = "clang_rt.builtins-riscv32";
|
|
||||||
#[cfg(feature = "riscv-64")]
|
|
||||||
const BUILTINS_LIB_NAME: &str = "clang_rt.builtins-riscv64";
|
|
||||||
|
|
||||||
fn invoke_lld(cmd_args: &[&str]) -> bool {
|
fn invoke_lld(cmd_args: &[&str]) -> bool {
|
||||||
let c_strings = cmd_args
|
let c_strings = cmd_args
|
||||||
.iter()
|
.iter()
|
||||||
@@ -34,6 +24,7 @@ fn polkavm_linker<T: AsRef<[u8]>>(code: T) -> anyhow::Result<Vec<u8>> {
|
|||||||
config.set_strip(true);
|
config.set_strip(true);
|
||||||
|
|
||||||
polkavm_linker::program_from_elf(config, code.as_ref())
|
polkavm_linker::program_from_elf(config, code.as_ref())
|
||||||
|
.map(|blob| blob.as_bytes().to_vec())
|
||||||
.map_err(|reason| anyhow::anyhow!("polkavm linker failed: {}", reason))
|
.map_err(|reason| anyhow::anyhow!("polkavm linker failed: {}", reason))
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -42,7 +33,7 @@ pub fn link<T: AsRef<[u8]>>(input: T) -> anyhow::Result<Vec<u8>> {
|
|||||||
let output_path = dir.path().join("out.so");
|
let output_path = dir.path().join("out.so");
|
||||||
let object_path = dir.path().join("out.o");
|
let object_path = dir.path().join("out.o");
|
||||||
let linker_script_path = dir.path().join("linker.ld");
|
let linker_script_path = dir.path().join("linker.ld");
|
||||||
let compiler_rt_path = dir.path().join(BUILTINS_ARCHIVE_FILE);
|
let compiler_rt_path = dir.path().join("libclang_rt.builtins-riscv32.a");
|
||||||
|
|
||||||
fs::write(&object_path, input).map_err(|msg| anyhow::anyhow!("{msg} {object_path:?}"))?;
|
fs::write(&object_path, input).map_err(|msg| anyhow::anyhow!("{msg} {object_path:?}"))?;
|
||||||
|
|
||||||
@@ -67,7 +58,7 @@ pub fn link<T: AsRef<[u8]>>(input: T) -> anyhow::Result<Vec<u8>> {
|
|||||||
"--library-path",
|
"--library-path",
|
||||||
dir.path().to_str().expect("should be utf8"),
|
dir.path().to_str().expect("should be utf8"),
|
||||||
"--library",
|
"--library",
|
||||||
BUILTINS_LIB_NAME,
|
"clang_rt.builtins-riscv32",
|
||||||
linker_script_path.to_str().expect("should be utf8"),
|
linker_script_path.to_str().expect("should be utf8"),
|
||||||
object_path.to_str().expect("should be utf8"),
|
object_path.to_str().expect("should be utf8"),
|
||||||
"-o",
|
"-o",
|
||||||
|
|||||||
@@ -1,12 +1,11 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "lld-sys"
|
name = "lld-sys"
|
||||||
version.workspace = true
|
version = "0.1.0"
|
||||||
license.workspace = true
|
edition = "2021"
|
||||||
edition.workspace = true
|
|
||||||
repository.workspace = true
|
|
||||||
authors.workspace = true
|
|
||||||
build = "build.rs"
|
build = "build.rs"
|
||||||
description = "bindings for ld.lld core"
|
|
||||||
|
|
||||||
|
# See more keys and their definitions at https://doc.rust-lang.org/cargo/reference/manifest.html
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
libc = { workspace = true }
|
libc = { workspace = true }
|
||||||
|
|||||||
@@ -27,10 +27,7 @@ fn set_rustc_link_flags() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
#[cfg(target_os = "linux")]
|
#[cfg(target_os = "linux")]
|
||||||
{
|
println!("cargo:rustc-link-lib=dylib=stdc++");
|
||||||
println!("cargo:rustc-link-lib=dylib=stdc++");
|
|
||||||
println!("cargo:rustc-link-lib=tinfo");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
fn main() {
|
fn main() {
|
||||||
|
|||||||
@@ -1,22 +1,17 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "revive-llvm-context"
|
name = "era-compiler-llvm-context"
|
||||||
version.workspace = true
|
version = "1.4.1"
|
||||||
license.workspace = true
|
|
||||||
edition.workspace = true
|
|
||||||
repository.workspace = true
|
|
||||||
authors = [
|
authors = [
|
||||||
"Oleksandr Zarudnyi <a.zarudnyy@matterlabs.dev>",
|
"Oleksandr Zarudnyi <a.zarudnyy@matterlabs.dev>",
|
||||||
"Cyrill Leutwiler <cyrill@parity.io>",
|
"Cyrill Leutwiler <cyrill@parity.io>",
|
||||||
]
|
]
|
||||||
description = "Shared front end code of the revive PolkaVM compilers"
|
license = "MIT OR Apache-2.0"
|
||||||
|
edition = "2021"
|
||||||
|
description = "Shared front end code of the EraVM compilers"
|
||||||
|
|
||||||
[lib]
|
[lib]
|
||||||
doctest = false
|
doctest = false
|
||||||
|
|
||||||
[features]
|
|
||||||
riscv-zbb = []
|
|
||||||
riscv-64 = []
|
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
anyhow = { workspace = true }
|
anyhow = { workspace = true }
|
||||||
semver = { workspace = true }
|
semver = { workspace = true }
|
||||||
@@ -30,11 +25,12 @@ sha2 = { workspace = true }
|
|||||||
sha3 = { workspace = true }
|
sha3 = { workspace = true }
|
||||||
md5 = { workspace = true }
|
md5 = { workspace = true }
|
||||||
inkwell = { workspace = true }
|
inkwell = { workspace = true }
|
||||||
polkavm-disassembler = { workspace = true }
|
|
||||||
polkavm-common = { workspace = true }
|
|
||||||
|
|
||||||
revive-common = { workspace = true }
|
zkevm_opcode_defs = { git = "https://github.com/matter-labs/era-zkevm_opcode_defs", branch = "v1.4.1" }
|
||||||
pallet-contracts-pvm-llapi = { workspace = true }
|
revive-common = { path = "../common" }
|
||||||
revive-linker = { workspace = true }
|
|
||||||
revive-builtins = { workspace = true }
|
pallet-contracts-pvm-llapi = { path = "../pallet-contracts-pvm-llapi" }
|
||||||
revive-stdlib = { workspace = true }
|
revive-linker = { path = "../linker" }
|
||||||
|
revive-builtins = { path = "../builtins" }
|
||||||
|
revive-stdlib = { path = "../stdlib" }
|
||||||
|
revive-extensions = { path = "../extensions" }
|
||||||
|
|||||||
@@ -1,6 +1,10 @@
|
|||||||
|
//!
|
||||||
//! The debug IR type.
|
//! The debug IR type.
|
||||||
|
//!
|
||||||
|
|
||||||
|
///
|
||||||
/// The debug IR type.
|
/// The debug IR type.
|
||||||
|
///
|
||||||
#[allow(non_camel_case_types)]
|
#[allow(non_camel_case_types)]
|
||||||
#[allow(clippy::upper_case_acronyms)]
|
#[allow(clippy::upper_case_acronyms)]
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||||
@@ -11,26 +15,26 @@ pub enum IRType {
|
|||||||
EVMLA,
|
EVMLA,
|
||||||
/// Whether to dump the Ethereal IR code.
|
/// Whether to dump the Ethereal IR code.
|
||||||
EthIR,
|
EthIR,
|
||||||
|
/// Whether to dump the Vyper LLL IR code.
|
||||||
|
LLL,
|
||||||
/// Whether to dump the LLVM IR code.
|
/// Whether to dump the LLVM IR code.
|
||||||
LLVM,
|
LLVM,
|
||||||
/// Whether to dump the assembly code.
|
/// Whether to dump the assembly code.
|
||||||
Assembly,
|
Assembly,
|
||||||
/// Whether to jump JSON
|
|
||||||
#[cfg(debug_assertions)]
|
|
||||||
JSON,
|
|
||||||
}
|
}
|
||||||
|
|
||||||
impl IRType {
|
impl IRType {
|
||||||
|
///
|
||||||
/// Returns the file extension for the specified IR.
|
/// Returns the file extension for the specified IR.
|
||||||
|
///
|
||||||
pub fn file_extension(&self) -> &'static str {
|
pub fn file_extension(&self) -> &'static str {
|
||||||
match self {
|
match self {
|
||||||
Self::Yul => revive_common::EXTENSION_YUL,
|
Self::Yul => revive_common::EXTENSION_YUL,
|
||||||
Self::EthIR => revive_common::EXTENSION_ETHIR,
|
Self::EthIR => revive_common::EXTENSION_ETHIR,
|
||||||
Self::EVMLA => revive_common::EXTENSION_EVMLA,
|
Self::EVMLA => revive_common::EXTENSION_EVMLA,
|
||||||
|
Self::LLL => revive_common::EXTENSION_LLL,
|
||||||
Self::LLVM => revive_common::EXTENSION_LLVM_SOURCE,
|
Self::LLVM => revive_common::EXTENSION_LLVM_SOURCE,
|
||||||
Self::Assembly => revive_common::EXTENSION_POLKAVM_ASSEMBLY,
|
Self::Assembly => revive_common::EXTENSION_ERAVM_ASSEMBLY,
|
||||||
#[cfg(debug_assertions)]
|
|
||||||
Self::JSON => revive_common::EXTENSION_JSON,
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,4 +1,6 @@
|
|||||||
|
//!
|
||||||
//! The debug configuration.
|
//! The debug configuration.
|
||||||
|
//!
|
||||||
|
|
||||||
pub mod ir_type;
|
pub mod ir_type;
|
||||||
|
|
||||||
@@ -9,7 +11,9 @@ use serde::Serialize;
|
|||||||
|
|
||||||
use self::ir_type::IRType;
|
use self::ir_type::IRType;
|
||||||
|
|
||||||
|
///
|
||||||
/// The debug configuration.
|
/// The debug configuration.
|
||||||
|
///
|
||||||
#[derive(Debug, Default, Serialize, Deserialize, Clone)]
|
#[derive(Debug, Default, Serialize, Deserialize, Clone)]
|
||||||
pub struct DebugConfig {
|
pub struct DebugConfig {
|
||||||
/// The directory to dump the IRs to.
|
/// The directory to dump the IRs to.
|
||||||
@@ -17,12 +21,16 @@ pub struct DebugConfig {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl DebugConfig {
|
impl DebugConfig {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(output_directory: PathBuf) -> Self {
|
pub fn new(output_directory: PathBuf) -> Self {
|
||||||
Self { output_directory }
|
Self { output_directory }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Dumps the Yul IR.
|
/// Dumps the Yul IR.
|
||||||
|
///
|
||||||
pub fn dump_yul(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
pub fn dump_yul(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
||||||
let mut file_path = self.output_directory.to_owned();
|
let mut file_path = self.output_directory.to_owned();
|
||||||
let full_file_name = Self::full_file_name(contract_path, None, IRType::Yul);
|
let full_file_name = Self::full_file_name(contract_path, None, IRType::Yul);
|
||||||
@@ -32,7 +40,9 @@ impl DebugConfig {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Dumps the EVM legacy assembly IR.
|
/// Dumps the EVM legacy assembly IR.
|
||||||
|
///
|
||||||
pub fn dump_evmla(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
pub fn dump_evmla(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
||||||
let mut file_path = self.output_directory.to_owned();
|
let mut file_path = self.output_directory.to_owned();
|
||||||
let full_file_name = Self::full_file_name(contract_path, None, IRType::EVMLA);
|
let full_file_name = Self::full_file_name(contract_path, None, IRType::EVMLA);
|
||||||
@@ -42,7 +52,9 @@ impl DebugConfig {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Dumps the Ethereal IR.
|
/// Dumps the Ethereal IR.
|
||||||
|
///
|
||||||
pub fn dump_ethir(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
pub fn dump_ethir(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
||||||
let mut file_path = self.output_directory.to_owned();
|
let mut file_path = self.output_directory.to_owned();
|
||||||
let full_file_name = Self::full_file_name(contract_path, None, IRType::EthIR);
|
let full_file_name = Self::full_file_name(contract_path, None, IRType::EthIR);
|
||||||
@@ -52,7 +64,21 @@ impl DebugConfig {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Dumps the LLL IR.
|
||||||
|
///
|
||||||
|
pub fn dump_lll(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
||||||
|
let mut file_path = self.output_directory.to_owned();
|
||||||
|
let full_file_name = Self::full_file_name(contract_path, None, IRType::LLL);
|
||||||
|
file_path.push(full_file_name);
|
||||||
|
std::fs::write(file_path, code)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Dumps the unoptimized LLVM IR.
|
/// Dumps the unoptimized LLVM IR.
|
||||||
|
///
|
||||||
pub fn dump_llvm_ir_unoptimized(
|
pub fn dump_llvm_ir_unoptimized(
|
||||||
&self,
|
&self,
|
||||||
contract_path: &str,
|
contract_path: &str,
|
||||||
@@ -68,7 +94,9 @@ impl DebugConfig {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Dumps the optimized LLVM IR.
|
/// Dumps the optimized LLVM IR.
|
||||||
|
///
|
||||||
pub fn dump_llvm_ir_optimized(
|
pub fn dump_llvm_ir_optimized(
|
||||||
&self,
|
&self,
|
||||||
contract_path: &str,
|
contract_path: &str,
|
||||||
@@ -84,7 +112,9 @@ impl DebugConfig {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Dumps the assembly.
|
/// Dumps the assembly.
|
||||||
|
///
|
||||||
pub fn dump_assembly(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
pub fn dump_assembly(&self, contract_path: &str, code: &str) -> anyhow::Result<()> {
|
||||||
let mut file_path = self.output_directory.to_owned();
|
let mut file_path = self.output_directory.to_owned();
|
||||||
let full_file_name = Self::full_file_name(contract_path, None, IRType::Assembly);
|
let full_file_name = Self::full_file_name(contract_path, None, IRType::Assembly);
|
||||||
@@ -94,23 +124,9 @@ impl DebugConfig {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Dumps the stage output as a json file suitable for use with --recursive-process
|
///
|
||||||
#[cfg(debug_assertions)]
|
|
||||||
pub fn dump_stage_output(
|
|
||||||
&self,
|
|
||||||
contract_path: &str,
|
|
||||||
contract_suffix: Option<&str>,
|
|
||||||
stage_json: &Vec<u8>,
|
|
||||||
) -> anyhow::Result<()> {
|
|
||||||
let mut file_path = self.output_directory.to_owned();
|
|
||||||
let full_file_name = Self::full_file_name(contract_path, contract_suffix, IRType::JSON);
|
|
||||||
file_path.push(full_file_name);
|
|
||||||
std::fs::write(file_path, stage_json)?;
|
|
||||||
|
|
||||||
Ok(())
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Creates a full file name, given the contract full path, suffix, and extension.
|
/// Creates a full file name, given the contract full path, suffix, and extension.
|
||||||
|
///
|
||||||
fn full_file_name(contract_path: &str, suffix: Option<&str>, ir_type: IRType) -> String {
|
fn full_file_name(contract_path: &str, suffix: Option<&str>, ir_type: IRType) -> String {
|
||||||
let mut full_file_name = contract_path.replace('/', "_").replace(':', ".");
|
let mut full_file_name = contract_path.replace('/', "_").replace(':', ".");
|
||||||
if let Some(suffix) = suffix {
|
if let Some(suffix) = suffix {
|
||||||
|
|||||||
+15
-15
@@ -1,12 +1,11 @@
|
|||||||
|
//!
|
||||||
//! The LLVM context constants.
|
//! The LLVM context constants.
|
||||||
|
//!
|
||||||
/// Runtime API methods.
|
|
||||||
pub mod runtime_api;
|
|
||||||
|
|
||||||
/// The LLVM framework version.
|
/// The LLVM framework version.
|
||||||
pub const LLVM_VERSION: semver::Version = semver::Version::new(18, 1, 4);
|
pub const LLVM_VERSION: semver::Version = semver::Version::new(18, 1, 4);
|
||||||
|
|
||||||
/// The PolkaVM version.
|
/// The EraVM version.
|
||||||
pub const ZKEVM_VERSION: semver::Version = semver::Version::new(1, 3, 2);
|
pub const ZKEVM_VERSION: semver::Version = semver::Version::new(1, 3, 2);
|
||||||
|
|
||||||
/// The register width sized type
|
/// The register width sized type
|
||||||
@@ -33,27 +32,21 @@ pub static GLOBAL_CALL_FLAGS: &str = "call_flags";
|
|||||||
/// The extra ABI data global variable name.
|
/// The extra ABI data global variable name.
|
||||||
pub static GLOBAL_EXTRA_ABI_DATA: &str = "extra_abi_data";
|
pub static GLOBAL_EXTRA_ABI_DATA: &str = "extra_abi_data";
|
||||||
|
|
||||||
|
/// The active pointer global variable name.
|
||||||
|
pub static GLOBAL_ACTIVE_POINTER: &str = "ptr_active";
|
||||||
|
|
||||||
/// The constant array global variable name prefix.
|
/// The constant array global variable name prefix.
|
||||||
pub static GLOBAL_CONST_ARRAY_PREFIX: &str = "const_array_";
|
pub static GLOBAL_CONST_ARRAY_PREFIX: &str = "const_array_";
|
||||||
|
|
||||||
/// The global verbatim getter identifier prefix.
|
/// The global verbatim getter identifier prefix.
|
||||||
pub static GLOBAL_VERBATIM_GETTER_PREFIX: &str = "get_global::";
|
pub static GLOBAL_VERBATIM_GETTER_PREFIX: &str = "get_global::";
|
||||||
|
|
||||||
/// The static word size.
|
|
||||||
pub static GLOBAL_I256_SIZE: &str = "i256_size";
|
|
||||||
|
|
||||||
/// The static value size.
|
|
||||||
pub static GLOBAL_I160_SIZE: &str = "i160_size";
|
|
||||||
|
|
||||||
/// The static i64 size.
|
|
||||||
pub static GLOBAL_I64_SIZE: &str = "i64_size";
|
|
||||||
|
|
||||||
/// The external call data offset in the auxiliary heap.
|
/// The external call data offset in the auxiliary heap.
|
||||||
pub const HEAP_AUX_OFFSET_EXTERNAL_CALL: u64 = 0;
|
pub const HEAP_AUX_OFFSET_EXTERNAL_CALL: u64 = 0;
|
||||||
|
|
||||||
/// The constructor return data offset in the auxiliary heap.
|
/// The constructor return data offset in the auxiliary heap.
|
||||||
pub const HEAP_AUX_OFFSET_CONSTRUCTOR_RETURN_DATA: u64 =
|
pub const HEAP_AUX_OFFSET_CONSTRUCTOR_RETURN_DATA: u64 =
|
||||||
8 * (revive_common::BYTE_LENGTH_WORD as u64);
|
8 * (revive_common::BYTE_LENGTH_FIELD as u64);
|
||||||
|
|
||||||
/// The number of the extra ABI data arguments.
|
/// The number of the extra ABI data arguments.
|
||||||
pub const EXTRA_ABI_DATA_SIZE: usize = 0;
|
pub const EXTRA_ABI_DATA_SIZE: usize = 0;
|
||||||
@@ -70,6 +63,13 @@ pub const NO_SYSTEM_CALL_BIT: bool = false;
|
|||||||
/// The system call bit.
|
/// The system call bit.
|
||||||
pub const SYSTEM_CALL_BIT: bool = true;
|
pub const SYSTEM_CALL_BIT: bool = true;
|
||||||
|
|
||||||
|
///
|
||||||
/// The deployer call header size that consists of:
|
/// The deployer call header size that consists of:
|
||||||
|
/// - selector (4 bytes)
|
||||||
|
/// - salt (32 bytes)
|
||||||
/// - bytecode hash (32 bytes)
|
/// - bytecode hash (32 bytes)
|
||||||
pub const DEPLOYER_CALL_HEADER_SIZE: usize = revive_common::BYTE_LENGTH_WORD;
|
/// - constructor arguments offset (32 bytes)
|
||||||
|
/// - constructor arguments length (32 bytes)
|
||||||
|
///
|
||||||
|
pub const DEPLOYER_CALL_HEADER_SIZE: usize =
|
||||||
|
revive_common::BYTE_LENGTH_X32 + (revive_common::BYTE_LENGTH_FIELD * 4);
|
||||||
+13
@@ -1,6 +1,10 @@
|
|||||||
|
//!
|
||||||
//! The address space aliases.
|
//! The address space aliases.
|
||||||
|
//!
|
||||||
|
|
||||||
|
///
|
||||||
/// The address space aliases.
|
/// The address space aliases.
|
||||||
|
///
|
||||||
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
#[derive(Default, Debug, Clone, Copy, PartialEq, Eq, Hash)]
|
||||||
pub enum AddressSpace {
|
pub enum AddressSpace {
|
||||||
/// The stack memory.
|
/// The stack memory.
|
||||||
@@ -8,7 +12,13 @@ pub enum AddressSpace {
|
|||||||
Stack,
|
Stack,
|
||||||
/// The heap memory.
|
/// The heap memory.
|
||||||
Heap,
|
Heap,
|
||||||
|
/// The auxiliary heap memory.
|
||||||
|
HeapAuxiliary,
|
||||||
/// The generic memory page.
|
/// The generic memory page.
|
||||||
|
Generic,
|
||||||
|
/// The code area.
|
||||||
|
Code,
|
||||||
|
/// The storage.
|
||||||
Storage,
|
Storage,
|
||||||
/// The transient storage.
|
/// The transient storage.
|
||||||
TransientStorage,
|
TransientStorage,
|
||||||
@@ -19,6 +29,9 @@ impl From<AddressSpace> for inkwell::AddressSpace {
|
|||||||
match value {
|
match value {
|
||||||
AddressSpace::Stack => Self::from(0),
|
AddressSpace::Stack => Self::from(0),
|
||||||
AddressSpace::Heap => Self::from(1),
|
AddressSpace::Heap => Self::from(1),
|
||||||
|
AddressSpace::HeapAuxiliary => Self::from(2),
|
||||||
|
AddressSpace::Generic => Self::from(3),
|
||||||
|
AddressSpace::Code => Self::from(4),
|
||||||
AddressSpace::Storage => Self::from(5),
|
AddressSpace::Storage => Self::from(5),
|
||||||
AddressSpace::TransientStorage => Self::from(6),
|
AddressSpace::TransientStorage => Self::from(6),
|
||||||
}
|
}
|
||||||
+12
@@ -1,6 +1,10 @@
|
|||||||
|
//!
|
||||||
//! The LLVM argument with metadata.
|
//! The LLVM argument with metadata.
|
||||||
|
//!
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM argument with metadata.
|
/// The LLVM argument with metadata.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct Argument<'ctx> {
|
pub struct Argument<'ctx> {
|
||||||
/// The actual LLVM operand.
|
/// The actual LLVM operand.
|
||||||
@@ -18,7 +22,9 @@ impl<'ctx> Argument<'ctx> {
|
|||||||
/// The calldata length argument index.
|
/// The calldata length argument index.
|
||||||
pub const ARGUMENT_INDEX_CALLDATA_LENGTH: usize = 1;
|
pub const ARGUMENT_INDEX_CALLDATA_LENGTH: usize = 1;
|
||||||
|
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(value: inkwell::values::BasicValueEnum<'ctx>) -> Self {
|
pub fn new(value: inkwell::values::BasicValueEnum<'ctx>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
value,
|
value,
|
||||||
@@ -27,7 +33,9 @@ impl<'ctx> Argument<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new_with_original(
|
pub fn new_with_original(
|
||||||
value: inkwell::values::BasicValueEnum<'ctx>,
|
value: inkwell::values::BasicValueEnum<'ctx>,
|
||||||
original: String,
|
original: String,
|
||||||
@@ -39,7 +47,9 @@ impl<'ctx> Argument<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new_with_constant(
|
pub fn new_with_constant(
|
||||||
value: inkwell::values::BasicValueEnum<'ctx>,
|
value: inkwell::values::BasicValueEnum<'ctx>,
|
||||||
constant: num::BigUint,
|
constant: num::BigUint,
|
||||||
@@ -51,7 +61,9 @@ impl<'ctx> Argument<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the inner LLVM value.
|
/// Returns the inner LLVM value.
|
||||||
|
///
|
||||||
pub fn to_llvm(&self) -> inkwell::values::BasicValueEnum<'ctx> {
|
pub fn to_llvm(&self) -> inkwell::values::BasicValueEnum<'ctx> {
|
||||||
self.value
|
self.value
|
||||||
}
|
}
|
||||||
+9
-1
@@ -4,8 +4,11 @@ use serde::Deserialize;
|
|||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
|
|
||||||
/// The LLVM attribute.
|
/// The LLVM attribute.
|
||||||
|
///
|
||||||
/// In order to check the real order in a new major version of LLVM, find the `Attributes.inc` file
|
/// In order to check the real order in a new major version of LLVM, find the `Attributes.inc` file
|
||||||
/// inside of the LLVM build directory. This order is actually generated during the building.
|
/// inside of the LLVM build directory. This order is actually generated during the building.
|
||||||
|
///
|
||||||
|
/// FIXME: Generate this in build.rs?
|
||||||
#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Debug, Serialize, Deserialize, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
pub enum Attribute {
|
pub enum Attribute {
|
||||||
Unused = 0,
|
Unused = 0,
|
||||||
@@ -81,7 +84,7 @@ pub enum Attribute {
|
|||||||
Writable = 70,
|
Writable = 70,
|
||||||
WriteOnly = 71,
|
WriteOnly = 71,
|
||||||
ZExt = 72,
|
ZExt = 72,
|
||||||
// LastEnumAttr = 72,
|
//LastEnumAttr = 72,
|
||||||
// FirstTypeAttr = 73,
|
// FirstTypeAttr = 73,
|
||||||
ByRef = 73,
|
ByRef = 73,
|
||||||
ByVal = 74,
|
ByVal = 74,
|
||||||
@@ -116,7 +119,12 @@ impl TryFrom<&str> for Attribute {
|
|||||||
"OptimizeForSize" => Ok(Attribute::OptimizeForSize),
|
"OptimizeForSize" => Ok(Attribute::OptimizeForSize),
|
||||||
"NoInline" => Ok(Attribute::NoInline),
|
"NoInline" => Ok(Attribute::NoInline),
|
||||||
"WillReturn" => Ok(Attribute::WillReturn),
|
"WillReturn" => Ok(Attribute::WillReturn),
|
||||||
|
"WriteOnly" => Ok(Attribute::WriteOnly),
|
||||||
|
"ReadNone" => Ok(Attribute::ReadNone),
|
||||||
|
"ReadOnly" => Ok(Attribute::ReadOnly),
|
||||||
"NoReturn" => Ok(Attribute::NoReturn),
|
"NoReturn" => Ok(Attribute::NoReturn),
|
||||||
|
// FIXME: Not in Attributes.inc
|
||||||
|
//"InaccessibleMemOnly" => Ok(Attribute::InaccessibleMemOnly),
|
||||||
"MustProgress" => Ok(Attribute::MustProgress),
|
"MustProgress" => Ok(Attribute::MustProgress),
|
||||||
_ => Err(value.to_owned()),
|
_ => Err(value.to_owned()),
|
||||||
}
|
}
|
||||||
+11
-5
@@ -1,30 +1,36 @@
|
|||||||
|
//!
|
||||||
//! The LLVM module build.
|
//! The LLVM module build.
|
||||||
|
//!
|
||||||
|
|
||||||
use std::collections::BTreeMap;
|
use std::collections::BTreeMap;
|
||||||
|
|
||||||
use serde::Deserialize;
|
use serde::Deserialize;
|
||||||
use serde::Serialize;
|
use serde::Serialize;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM module build.
|
/// The LLVM module build.
|
||||||
|
///
|
||||||
#[derive(Debug, Serialize, Deserialize)]
|
#[derive(Debug, Serialize, Deserialize)]
|
||||||
pub struct Build {
|
pub struct Build {
|
||||||
/// The PolkaVM text assembly.
|
/// The EraVM text assembly.
|
||||||
pub assembly_text: String,
|
pub assembly_text: String,
|
||||||
/// The metadata hash.
|
/// The metadata hash.
|
||||||
pub metadata_hash: Option<[u8; revive_common::BYTE_LENGTH_WORD]>,
|
pub metadata_hash: Option<[u8; revive_common::BYTE_LENGTH_FIELD]>,
|
||||||
/// The PolkaVM binary bytecode.
|
/// The EraVM binary bytecode.
|
||||||
pub bytecode: Vec<u8>,
|
pub bytecode: Vec<u8>,
|
||||||
/// The PolkaVM bytecode hash.
|
/// The EraVM bytecode hash.
|
||||||
pub bytecode_hash: String,
|
pub bytecode_hash: String,
|
||||||
/// The hash-to-full-path mapping of the contract factory dependencies.
|
/// The hash-to-full-path mapping of the contract factory dependencies.
|
||||||
pub factory_dependencies: BTreeMap<String, String>,
|
pub factory_dependencies: BTreeMap<String, String>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl Build {
|
impl Build {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(
|
pub fn new(
|
||||||
assembly_text: String,
|
assembly_text: String,
|
||||||
metadata_hash: Option<[u8; revive_common::BYTE_LENGTH_WORD]>,
|
metadata_hash: Option<[u8; revive_common::BYTE_LENGTH_FIELD]>,
|
||||||
bytecode: Vec<u8>,
|
bytecode: Vec<u8>,
|
||||||
bytecode_hash: String,
|
bytecode_hash: String,
|
||||||
) -> Self {
|
) -> Self {
|
||||||
+5
@@ -1,8 +1,13 @@
|
|||||||
|
//!
|
||||||
//! The contract code types.
|
//! The contract code types.
|
||||||
|
//!
|
||||||
|
|
||||||
|
///
|
||||||
/// The contract code types (deploy and runtime).
|
/// The contract code types (deploy and runtime).
|
||||||
|
///
|
||||||
/// They do not represent any entities in the final bytecode, but this separation is always present
|
/// They do not represent any entities in the final bytecode, but this separation is always present
|
||||||
/// in the IRs used for translation to the EVM bytecode.
|
/// in the IRs used for translation to the EVM bytecode.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
pub enum CodeType {
|
pub enum CodeType {
|
||||||
/// The deploy code.
|
/// The deploy code.
|
||||||
+13
-1
@@ -1,9 +1,13 @@
|
|||||||
|
//!
|
||||||
//! The LLVM debug information.
|
//! The LLVM debug information.
|
||||||
|
//!
|
||||||
|
|
||||||
use inkwell::debug_info::AsDIScope;
|
use inkwell::debug_info::AsDIScope;
|
||||||
use num::Zero;
|
use num::Zero;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM debug information.
|
/// The LLVM debug information.
|
||||||
|
///
|
||||||
pub struct DebugInfo<'ctx> {
|
pub struct DebugInfo<'ctx> {
|
||||||
/// The compile unit.
|
/// The compile unit.
|
||||||
compile_unit: inkwell::debug_info::DICompileUnit<'ctx>,
|
compile_unit: inkwell::debug_info::DICompileUnit<'ctx>,
|
||||||
@@ -12,7 +16,9 @@ pub struct DebugInfo<'ctx> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> DebugInfo<'ctx> {
|
impl<'ctx> DebugInfo<'ctx> {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(module: &inkwell::module::Module<'ctx>) -> Self {
|
pub fn new(module: &inkwell::module::Module<'ctx>) -> Self {
|
||||||
let (builder, compile_unit) = module.create_debug_info_builder(
|
let (builder, compile_unit) = module.create_debug_info_builder(
|
||||||
true,
|
true,
|
||||||
@@ -38,14 +44,16 @@ impl<'ctx> DebugInfo<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Creates a function info.
|
/// Creates a function info.
|
||||||
|
///
|
||||||
pub fn create_function(
|
pub fn create_function(
|
||||||
&self,
|
&self,
|
||||||
name: &str,
|
name: &str,
|
||||||
) -> anyhow::Result<inkwell::debug_info::DISubprogram<'ctx>> {
|
) -> anyhow::Result<inkwell::debug_info::DISubprogram<'ctx>> {
|
||||||
let subroutine_type = self.builder.create_subroutine_type(
|
let subroutine_type = self.builder.create_subroutine_type(
|
||||||
self.compile_unit.get_file(),
|
self.compile_unit.get_file(),
|
||||||
Some(self.create_type(revive_common::BIT_LENGTH_FIELD)?),
|
Some(self.create_type(era_compiler_common::BIT_LENGTH_FIELD)?),
|
||||||
&[],
|
&[],
|
||||||
inkwell::debug_info::DIFlags::zero(),
|
inkwell::debug_info::DIFlags::zero(),
|
||||||
);
|
);
|
||||||
@@ -74,7 +82,9 @@ impl<'ctx> DebugInfo<'ctx> {
|
|||||||
Ok(function)
|
Ok(function)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Creates a primitive type info.
|
/// Creates a primitive type info.
|
||||||
|
///
|
||||||
pub fn create_type(
|
pub fn create_type(
|
||||||
&self,
|
&self,
|
||||||
bit_length: usize,
|
bit_length: usize,
|
||||||
@@ -90,7 +100,9 @@ impl<'ctx> DebugInfo<'ctx> {
|
|||||||
.map_err(|error| anyhow::anyhow!("Debug info error: {}", error))
|
.map_err(|error| anyhow::anyhow!("Debug info error: {}", error))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Finalizes the builder.
|
/// Finalizes the builder.
|
||||||
|
///
|
||||||
pub fn finalize(&self) {
|
pub fn finalize(&self) {
|
||||||
self.builder.finalize();
|
self.builder.finalize();
|
||||||
}
|
}
|
||||||
+8
-1
@@ -1,9 +1,14 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator EVM legacy assembly data.
|
//! The LLVM IR generator EVM legacy assembly data.
|
||||||
|
//!
|
||||||
|
|
||||||
use crate::polkavm::context::argument::Argument;
|
use crate::eravm::context::argument::Argument;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM IR generator EVM legacy assembly data.
|
/// The LLVM IR generator EVM legacy assembly data.
|
||||||
|
///
|
||||||
/// Describes some data that is only relevant to the EVM legacy assembly.
|
/// Describes some data that is only relevant to the EVM legacy assembly.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct EVMLAData<'ctx> {
|
pub struct EVMLAData<'ctx> {
|
||||||
/// The Solidity compiler version.
|
/// The Solidity compiler version.
|
||||||
@@ -17,7 +22,9 @@ impl<'ctx> EVMLAData<'ctx> {
|
|||||||
/// The default stack size.
|
/// The default stack size.
|
||||||
pub const DEFAULT_STACK_SIZE: usize = 64;
|
pub const DEFAULT_STACK_SIZE: usize = 64;
|
||||||
|
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(version: semver::Version) -> Self {
|
pub fn new(version: semver::Version) -> Self {
|
||||||
Self {
|
Self {
|
||||||
version,
|
version,
|
||||||
+8
-1
@@ -1,9 +1,14 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator function block key.
|
//! The LLVM IR generator function block key.
|
||||||
|
//!
|
||||||
|
|
||||||
use crate::polkavm::context::code_type::CodeType;
|
use crate::eravm::context::code_type::CodeType;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM IR generator function block key.
|
/// The LLVM IR generator function block key.
|
||||||
|
///
|
||||||
/// Is only relevant to the EVM legacy assembly.
|
/// Is only relevant to the EVM legacy assembly.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord, Hash)]
|
||||||
pub struct Key {
|
pub struct Key {
|
||||||
/// The block code type.
|
/// The block code type.
|
||||||
@@ -13,7 +18,9 @@ pub struct Key {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl Key {
|
impl Key {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(code_type: CodeType, tag: num::BigUint) -> Self {
|
pub fn new(code_type: CodeType, tag: num::BigUint) -> Self {
|
||||||
Self { code_type, tag }
|
Self { code_type, tag }
|
||||||
}
|
}
|
||||||
+7
@@ -1,9 +1,14 @@
|
|||||||
|
//!
|
||||||
//! The LLVM function block EVM legacy assembly data.
|
//! The LLVM function block EVM legacy assembly data.
|
||||||
|
//!
|
||||||
|
|
||||||
pub mod key;
|
pub mod key;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM function block EVM legacy assembly data.
|
/// The LLVM function block EVM legacy assembly data.
|
||||||
|
///
|
||||||
/// Describes some data that is only relevant to the EVM legacy assembly.
|
/// Describes some data that is only relevant to the EVM legacy assembly.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct EVMLAData {
|
pub struct EVMLAData {
|
||||||
/// The initial hashes of the allowed stack states.
|
/// The initial hashes of the allowed stack states.
|
||||||
@@ -11,7 +16,9 @@ pub struct EVMLAData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl EVMLAData {
|
impl EVMLAData {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(stack_hashes: Vec<md5::Digest>) -> Self {
|
pub fn new(stack_hashes: Vec<md5::Digest>) -> Self {
|
||||||
Self { stack_hashes }
|
Self { stack_hashes }
|
||||||
}
|
}
|
||||||
+16
@@ -1,10 +1,14 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator function block.
|
//! The LLVM IR generator function block.
|
||||||
|
//!
|
||||||
|
|
||||||
pub mod evmla_data;
|
pub mod evmla_data;
|
||||||
|
|
||||||
use self::evmla_data::EVMLAData;
|
use self::evmla_data::EVMLAData;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM IR generator function block.
|
/// The LLVM IR generator function block.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct Block<'ctx> {
|
pub struct Block<'ctx> {
|
||||||
/// The inner block.
|
/// The inner block.
|
||||||
@@ -14,7 +18,9 @@ pub struct Block<'ctx> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> Block<'ctx> {
|
impl<'ctx> Block<'ctx> {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(inner: inkwell::basic_block::BasicBlock<'ctx>) -> Self {
|
pub fn new(inner: inkwell::basic_block::BasicBlock<'ctx>) -> Self {
|
||||||
Self {
|
Self {
|
||||||
inner,
|
inner,
|
||||||
@@ -22,28 +28,38 @@ impl<'ctx> Block<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets the EVM legacy assembly data.
|
/// Sets the EVM legacy assembly data.
|
||||||
|
///
|
||||||
pub fn set_evmla_data(&mut self, data: EVMLAData) {
|
pub fn set_evmla_data(&mut self, data: EVMLAData) {
|
||||||
self.evmla_data = Some(data);
|
self.evmla_data = Some(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM object reference.
|
/// The LLVM object reference.
|
||||||
|
///
|
||||||
pub fn inner(&self) -> inkwell::basic_block::BasicBlock<'ctx> {
|
pub fn inner(&self) -> inkwell::basic_block::BasicBlock<'ctx> {
|
||||||
self.inner
|
self.inner
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the EVM data reference.
|
/// Returns the EVM data reference.
|
||||||
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
/// If the EVM data has not been initialized.
|
/// If the EVM data has not been initialized.
|
||||||
|
///
|
||||||
pub fn evm(&self) -> &EVMLAData {
|
pub fn evm(&self) -> &EVMLAData {
|
||||||
self.evmla_data
|
self.evmla_data
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.expect("The EVM data must have been initialized")
|
.expect("The EVM data must have been initialized")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the EVM data mutable reference.
|
/// Returns the EVM data mutable reference.
|
||||||
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
/// If the EVM data has not been initialized.
|
/// If the EVM data has not been initialized.
|
||||||
|
///
|
||||||
pub fn evm_mut(&mut self) -> &mut EVMLAData {
|
pub fn evm_mut(&mut self) -> &mut EVMLAData {
|
||||||
self.evmla_data
|
self.evmla_data
|
||||||
.as_mut()
|
.as_mut()
|
||||||
+6
@@ -1,6 +1,10 @@
|
|||||||
|
//!
|
||||||
//! The LLVM function declaration.
|
//! The LLVM function declaration.
|
||||||
|
//!
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM function declaration.
|
/// The LLVM function declaration.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
|
||||||
pub struct Declaration<'ctx> {
|
pub struct Declaration<'ctx> {
|
||||||
/// The function type.
|
/// The function type.
|
||||||
@@ -10,7 +14,9 @@ pub struct Declaration<'ctx> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> Declaration<'ctx> {
|
impl<'ctx> Declaration<'ctx> {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(
|
pub fn new(
|
||||||
r#type: inkwell::types::FunctionType<'ctx>,
|
r#type: inkwell::types::FunctionType<'ctx>,
|
||||||
value: inkwell::values::FunctionValue<'ctx>,
|
value: inkwell::values::FunctionValue<'ctx>,
|
||||||
+14
-2
@@ -1,12 +1,17 @@
|
|||||||
|
//!
|
||||||
//! The LLVM function EVM legacy assembly data.
|
//! The LLVM function EVM legacy assembly data.
|
||||||
|
//!
|
||||||
|
|
||||||
use std::collections::BTreeMap;
|
use std::collections::BTreeMap;
|
||||||
|
|
||||||
use crate::polkavm::context::function::block::evmla_data::key::Key as BlockKey;
|
use crate::eravm::context::function::block::evmla_data::key::Key as BlockKey;
|
||||||
use crate::polkavm::context::function::block::Block;
|
use crate::eravm::context::function::block::Block;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM function EVM legacy assembly data.
|
/// The LLVM function EVM legacy assembly data.
|
||||||
|
///
|
||||||
/// Describes some data that is only relevant to the EVM legacy assembly.
|
/// Describes some data that is only relevant to the EVM legacy assembly.
|
||||||
|
///
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct EVMLAData<'ctx> {
|
pub struct EVMLAData<'ctx> {
|
||||||
/// The ordinary blocks with numeric tags.
|
/// The ordinary blocks with numeric tags.
|
||||||
@@ -17,7 +22,9 @@ pub struct EVMLAData<'ctx> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> EVMLAData<'ctx> {
|
impl<'ctx> EVMLAData<'ctx> {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(stack_size: usize) -> Self {
|
pub fn new(stack_size: usize) -> Self {
|
||||||
Self {
|
Self {
|
||||||
blocks: BTreeMap::new(),
|
blocks: BTreeMap::new(),
|
||||||
@@ -25,7 +32,9 @@ impl<'ctx> EVMLAData<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Inserts a function block.
|
/// Inserts a function block.
|
||||||
|
///
|
||||||
pub fn insert_block(&mut self, key: BlockKey, block: Block<'ctx>) {
|
pub fn insert_block(&mut self, key: BlockKey, block: Block<'ctx>) {
|
||||||
if let Some(blocks) = self.blocks.get_mut(&key) {
|
if let Some(blocks) = self.blocks.get_mut(&key) {
|
||||||
blocks.push(block);
|
blocks.push(block);
|
||||||
@@ -34,8 +43,11 @@ impl<'ctx> EVMLAData<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the block with the specified tag and initial stack pattern.
|
/// Returns the block with the specified tag and initial stack pattern.
|
||||||
|
///
|
||||||
/// If there is only one block, it is returned unconditionally.
|
/// If there is only one block, it is returned unconditionally.
|
||||||
|
///
|
||||||
pub fn find_block(
|
pub fn find_block(
|
||||||
&self,
|
&self,
|
||||||
key: &BlockKey,
|
key: &BlockKey,
|
||||||
@@ -0,0 +1,149 @@
|
|||||||
|
//!
|
||||||
|
//! The LLVM intrinsic functions.
|
||||||
|
//!
|
||||||
|
|
||||||
|
use inkwell::types::BasicType;
|
||||||
|
|
||||||
|
use crate::eravm::context::address_space::AddressSpace;
|
||||||
|
use crate::eravm::context::function::declaration::Declaration as FunctionDeclaration;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The LLVM intrinsic functions, implemented in the LLVM back-end.
|
||||||
|
///
|
||||||
|
/// Most of them are translated directly into bytecode instructions.
|
||||||
|
///
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct Intrinsics<'ctx> {
|
||||||
|
/// The trap.
|
||||||
|
pub trap: FunctionDeclaration<'ctx>,
|
||||||
|
/// The memory copy within the heap.
|
||||||
|
pub memory_copy: FunctionDeclaration<'ctx>,
|
||||||
|
/// The memory copy from a generic page.
|
||||||
|
pub memory_copy_from_generic: FunctionDeclaration<'ctx>,
|
||||||
|
/// Performs endianness swaps on i256 values
|
||||||
|
pub byte_swap: FunctionDeclaration<'ctx>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'ctx> Intrinsics<'ctx> {
|
||||||
|
/// The corresponding intrinsic function name.
|
||||||
|
pub const FUNCTION_TRAP: &'static str = "llvm.trap";
|
||||||
|
|
||||||
|
/// The corresponding intrinsic function name.
|
||||||
|
pub const FUNCTION_MEMORY_COPY: &'static str = "llvm.memcpy.p1.p1.i256";
|
||||||
|
|
||||||
|
/// The corresponding intrinsic function name.
|
||||||
|
pub const FUNCTION_MEMORY_COPY_FROM_GENERIC: &'static str = "llvm.memcpy.p3.p1.i256";
|
||||||
|
|
||||||
|
/// The corresponding intrinsic function name.
|
||||||
|
pub const FUNCTION_BYTE_SWAP: &'static str = "llvm.bswap.i256";
|
||||||
|
|
||||||
|
///
|
||||||
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
|
pub fn new(
|
||||||
|
llvm: &'ctx inkwell::context::Context,
|
||||||
|
module: &inkwell::module::Module<'ctx>,
|
||||||
|
) -> Self {
|
||||||
|
let void_type = llvm.void_type();
|
||||||
|
let bool_type = llvm.bool_type();
|
||||||
|
let field_type = llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32);
|
||||||
|
let _stack_field_pointer_type = llvm.ptr_type(AddressSpace::Stack.into());
|
||||||
|
let heap_field_pointer_type = llvm.ptr_type(AddressSpace::Heap.into());
|
||||||
|
let generic_byte_pointer_type = llvm.ptr_type(AddressSpace::Generic.into());
|
||||||
|
|
||||||
|
let trap = Self::declare(
|
||||||
|
llvm,
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_TRAP,
|
||||||
|
void_type.fn_type(&[], false),
|
||||||
|
);
|
||||||
|
let memory_copy = Self::declare(
|
||||||
|
llvm,
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_MEMORY_COPY,
|
||||||
|
void_type.fn_type(
|
||||||
|
&[
|
||||||
|
heap_field_pointer_type.as_basic_type_enum().into(),
|
||||||
|
heap_field_pointer_type.as_basic_type_enum().into(),
|
||||||
|
field_type.as_basic_type_enum().into(),
|
||||||
|
bool_type.as_basic_type_enum().into(),
|
||||||
|
],
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
let memory_copy_from_generic = Self::declare(
|
||||||
|
llvm,
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_MEMORY_COPY_FROM_GENERIC,
|
||||||
|
void_type.fn_type(
|
||||||
|
&[
|
||||||
|
heap_field_pointer_type.as_basic_type_enum().into(),
|
||||||
|
generic_byte_pointer_type.as_basic_type_enum().into(),
|
||||||
|
field_type.as_basic_type_enum().into(),
|
||||||
|
bool_type.as_basic_type_enum().into(),
|
||||||
|
],
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
let byte_swap = Self::declare(
|
||||||
|
llvm,
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_BYTE_SWAP,
|
||||||
|
field_type.fn_type(&[field_type.as_basic_type_enum().into()], false),
|
||||||
|
);
|
||||||
|
|
||||||
|
Self {
|
||||||
|
trap,
|
||||||
|
memory_copy,
|
||||||
|
memory_copy_from_generic,
|
||||||
|
byte_swap,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Finds the specified LLVM intrinsic function in the target and returns its declaration.
|
||||||
|
///
|
||||||
|
pub fn declare(
|
||||||
|
llvm: &'ctx inkwell::context::Context,
|
||||||
|
module: &inkwell::module::Module<'ctx>,
|
||||||
|
name: &str,
|
||||||
|
r#type: inkwell::types::FunctionType<'ctx>,
|
||||||
|
) -> FunctionDeclaration<'ctx> {
|
||||||
|
let intrinsic = inkwell::intrinsics::Intrinsic::find(name)
|
||||||
|
.unwrap_or_else(|| panic!("Intrinsic function `{name}` does not exist"));
|
||||||
|
let argument_types = Self::argument_types(llvm, name);
|
||||||
|
let value = intrinsic
|
||||||
|
.get_declaration(module, argument_types.as_slice())
|
||||||
|
.unwrap_or_else(|| panic!("Intrinsic function `{name}` declaration error"));
|
||||||
|
FunctionDeclaration::new(r#type, value)
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the LLVM types for selecting via the signature.
|
||||||
|
///
|
||||||
|
pub fn argument_types(
|
||||||
|
llvm: &'ctx inkwell::context::Context,
|
||||||
|
name: &str,
|
||||||
|
) -> Vec<inkwell::types::BasicTypeEnum<'ctx>> {
|
||||||
|
let field_type = llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32);
|
||||||
|
|
||||||
|
match name {
|
||||||
|
name if name == Self::FUNCTION_MEMORY_COPY => vec![
|
||||||
|
llvm.ptr_type(AddressSpace::Heap.into())
|
||||||
|
.as_basic_type_enum(),
|
||||||
|
llvm.ptr_type(AddressSpace::Heap.into())
|
||||||
|
.as_basic_type_enum(),
|
||||||
|
field_type.as_basic_type_enum(),
|
||||||
|
],
|
||||||
|
name if name == Self::FUNCTION_MEMORY_COPY_FROM_GENERIC => vec![
|
||||||
|
llvm.ptr_type(AddressSpace::Heap.into())
|
||||||
|
.as_basic_type_enum(),
|
||||||
|
llvm.ptr_type(AddressSpace::Generic.into())
|
||||||
|
.as_basic_type_enum(),
|
||||||
|
field_type.as_basic_type_enum(),
|
||||||
|
],
|
||||||
|
name if name == Self::FUNCTION_BYTE_SWAP => vec![field_type.as_basic_type_enum()],
|
||||||
|
_ => vec![],
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,667 @@
|
|||||||
|
//!
|
||||||
|
//! The LLVM runtime functions.
|
||||||
|
//!
|
||||||
|
|
||||||
|
use inkwell::types::BasicType;
|
||||||
|
|
||||||
|
use crate::eravm::context::address_space::AddressSpace;
|
||||||
|
use crate::eravm::context::function::declaration::Declaration as FunctionDeclaration;
|
||||||
|
use crate::eravm::context::function::Function;
|
||||||
|
use crate::optimizer::Optimizer;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The runtime functions, implemented on the LLVM side.
|
||||||
|
///
|
||||||
|
/// The functions are automatically linked to the LLVM implementations if the signatures match.
|
||||||
|
///
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct LLVMRuntime<'ctx> {
|
||||||
|
/// The LLVM personality function, used for exception handling.
|
||||||
|
pub personality: FunctionDeclaration<'ctx>,
|
||||||
|
/// The LLVM exception throwing function.
|
||||||
|
pub cxa_throw: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub div: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub sdiv: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub r#mod: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub smod: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub shl: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub shr: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub sar: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub byte: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub add_mod: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub mul_mod: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub exp: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub sign_extend: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub sha3: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub system_request: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
//pub far_call: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub far_call_byref: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub static_call: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub static_call_byref: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub delegate_call: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub delegate_call_byref: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub mimic_call: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub mimic_call_byref: FunctionDeclaration<'ctx>,
|
||||||
|
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub r#return: FunctionDeclaration<'ctx>,
|
||||||
|
/// The corresponding LLVM runtime function.
|
||||||
|
pub revert: FunctionDeclaration<'ctx>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<'ctx> LLVMRuntime<'ctx> {
|
||||||
|
/// The LLVM personality function name.
|
||||||
|
pub const FUNCTION_PERSONALITY: &'static str = "__personality";
|
||||||
|
|
||||||
|
/// The LLVM exception throwing function name.
|
||||||
|
pub const FUNCTION_CXA_THROW: &'static str = "__cxa_throw";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_DIV: &'static str = "__div";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_SDIV: &'static str = "__sdiv";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_MOD: &'static str = "__mod";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_SMOD: &'static str = "__smod";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_SHL: &'static str = "__shl";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_SHR: &'static str = "__shr";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_SAR: &'static str = "__sar";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_BYTE: &'static str = "__byte";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_ADDMOD: &'static str = "__addmod";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_MULMOD: &'static str = "__mulmod";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_EXP: &'static str = "__exp";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_SIGNEXTEND: &'static str = "__signextend";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_SHA3: &'static str = "__sha3";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_SYSTEM_REQUEST: &'static str = "__system_request";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_FARCALL: &'static str = "__farcall";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_STATICCALL: &'static str = "__staticcall";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_DELEGATECALL: &'static str = "__delegatecall";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_MIMICCALL: &'static str = "__mimiccall";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_FARCALL_BYREF: &'static str = "__farcall_byref";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_STATICCALL_BYREF: &'static str = "__staticcall_byref";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_DELEGATECALL_BYREF: &'static str = "__delegatecall_byref";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_MIMICCALL_BYREF: &'static str = "__mimiccall_byref";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_RETURN: &'static str = "__return";
|
||||||
|
|
||||||
|
/// The corresponding runtime function name.
|
||||||
|
pub const FUNCTION_REVERT: &'static str = "__revert";
|
||||||
|
|
||||||
|
///
|
||||||
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
|
pub fn new(
|
||||||
|
llvm: &'ctx inkwell::context::Context,
|
||||||
|
module: &inkwell::module::Module<'ctx>,
|
||||||
|
optimizer: &Optimizer,
|
||||||
|
) -> Self {
|
||||||
|
let personality = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_PERSONALITY,
|
||||||
|
llvm.i32_type().fn_type(&[], false),
|
||||||
|
None,
|
||||||
|
);
|
||||||
|
|
||||||
|
let cxa_throw = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_CXA_THROW,
|
||||||
|
llvm.void_type().fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.ptr_type(AddressSpace::Stack.into())
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
3
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_cxa_throw_attributes(llvm, cxa_throw);
|
||||||
|
|
||||||
|
let div = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_DIV,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
2
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, div, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, div);
|
||||||
|
|
||||||
|
let r#mod = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_MOD,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
2
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, r#mod, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, r#mod);
|
||||||
|
|
||||||
|
let sdiv = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_SDIV,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
2
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, sdiv, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, sdiv);
|
||||||
|
|
||||||
|
let smod = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_SMOD,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
2
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, smod, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, smod);
|
||||||
|
|
||||||
|
let shl = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_SHL,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
2
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, shl, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, shl);
|
||||||
|
|
||||||
|
let shr = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_SHR,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
2
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, shr, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, shr);
|
||||||
|
|
||||||
|
let sar = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_SAR,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
2
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, sar, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, sar);
|
||||||
|
|
||||||
|
let byte = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_BYTE,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
2
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, byte, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, byte);
|
||||||
|
|
||||||
|
let add_mod =
|
||||||
|
Self::define(module, Self::FUNCTION_ADDMOD).expect("should be declared in stdlib");
|
||||||
|
Function::set_default_attributes(llvm, add_mod, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, add_mod);
|
||||||
|
|
||||||
|
let mul_mod =
|
||||||
|
Self::define(module, Self::FUNCTION_MULMOD).expect("should be declared in stdlib");
|
||||||
|
Function::set_default_attributes(llvm, mul_mod, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, mul_mod);
|
||||||
|
|
||||||
|
let exp = Self::define(module, Self::FUNCTION_EXP).expect("should be declared in stdlib");
|
||||||
|
Function::set_default_attributes(llvm, exp, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, exp);
|
||||||
|
|
||||||
|
let sign_extend =
|
||||||
|
Self::define(module, Self::FUNCTION_SIGNEXTEND).expect("should be declared in stdlib");
|
||||||
|
Function::set_default_attributes(llvm, sign_extend, optimizer);
|
||||||
|
Function::set_pure_function_attributes(llvm, sign_extend);
|
||||||
|
|
||||||
|
let sha3 = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_SHA3,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.ptr_type(AddressSpace::Heap.into())
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_BOOLEAN as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, sha3, optimizer);
|
||||||
|
Function::set_attributes(
|
||||||
|
llvm,
|
||||||
|
sha3,
|
||||||
|
//vec![Attribute::ArgMemOnly, Attribute::ReadOnly],
|
||||||
|
vec![],
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
|
||||||
|
let system_request = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_SYSTEM_REQUEST,
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
llvm.ptr_type(AddressSpace::Stack.into())
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, system_request, optimizer);
|
||||||
|
Function::set_attributes(
|
||||||
|
llvm,
|
||||||
|
system_request,
|
||||||
|
//vec![Attribute::ArgMemOnly, Attribute::ReadOnly],
|
||||||
|
vec![],
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
|
||||||
|
let external_call_arguments: Vec<inkwell::types::BasicMetadataTypeEnum> = vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
crate::eravm::context::function::runtime::entry::Entry::MANDATORY_ARGUMENTS_COUNT
|
||||||
|
+ crate::eravm::EXTRA_ABI_DATA_SIZE
|
||||||
|
];
|
||||||
|
let mut mimic_call_arguments = external_call_arguments.clone();
|
||||||
|
mimic_call_arguments.push(
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
);
|
||||||
|
|
||||||
|
let mut external_call_arguments_by_ref: Vec<inkwell::types::BasicMetadataTypeEnum> = vec![
|
||||||
|
llvm.ptr_type(AddressSpace::Generic.into())
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
];
|
||||||
|
external_call_arguments_by_ref.extend::<Vec<inkwell::types::BasicMetadataTypeEnum>>(vec![
|
||||||
|
llvm.custom_width_int_type(
|
||||||
|
revive_common::BIT_LENGTH_FIELD as u32
|
||||||
|
)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
crate::eravm::EXTRA_ABI_DATA_SIZE
|
||||||
|
]);
|
||||||
|
let mut mimic_call_arguments_by_ref = external_call_arguments_by_ref.clone();
|
||||||
|
mimic_call_arguments_by_ref.push(
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into(),
|
||||||
|
);
|
||||||
|
|
||||||
|
let external_call_result_type = llvm
|
||||||
|
.struct_type(
|
||||||
|
&[
|
||||||
|
llvm.ptr_type(AddressSpace::Generic.into())
|
||||||
|
.as_basic_type_enum(),
|
||||||
|
llvm.bool_type().as_basic_type_enum(),
|
||||||
|
],
|
||||||
|
false,
|
||||||
|
)
|
||||||
|
.as_basic_type_enum();
|
||||||
|
|
||||||
|
//let far_call = Self::declare(
|
||||||
|
// module,
|
||||||
|
// Self::FUNCTION_FARCALL,
|
||||||
|
// external_call_result_type.fn_type(external_call_arguments.as_slice(), false),
|
||||||
|
// Some(inkwell::module::Linkage::External),
|
||||||
|
//);
|
||||||
|
//Function::set_default_attributes(llvm, far_call, optimizer);
|
||||||
|
let static_call = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_STATICCALL,
|
||||||
|
external_call_result_type.fn_type(external_call_arguments.as_slice(), false),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, static_call, optimizer);
|
||||||
|
let delegate_call = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_DELEGATECALL,
|
||||||
|
external_call_result_type.fn_type(external_call_arguments.as_slice(), false),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, delegate_call, optimizer);
|
||||||
|
let mimic_call = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_MIMICCALL,
|
||||||
|
external_call_result_type.fn_type(mimic_call_arguments.as_slice(), false),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, mimic_call, optimizer);
|
||||||
|
|
||||||
|
let far_call_byref = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_FARCALL_BYREF,
|
||||||
|
external_call_result_type.fn_type(external_call_arguments_by_ref.as_slice(), false),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, far_call_byref, optimizer);
|
||||||
|
let static_call_byref = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_STATICCALL_BYREF,
|
||||||
|
external_call_result_type.fn_type(external_call_arguments_by_ref.as_slice(), false),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, static_call_byref, optimizer);
|
||||||
|
let delegate_call_byref = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_DELEGATECALL_BYREF,
|
||||||
|
external_call_result_type.fn_type(external_call_arguments_by_ref.as_slice(), false),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, delegate_call_byref, optimizer);
|
||||||
|
let mimic_call_byref = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_MIMICCALL_BYREF,
|
||||||
|
external_call_result_type.fn_type(mimic_call_arguments_by_ref.as_slice(), false),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, mimic_call_byref, optimizer);
|
||||||
|
|
||||||
|
let r#return = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_RETURN,
|
||||||
|
llvm.void_type().fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
3
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, r#return, optimizer);
|
||||||
|
let revert = Self::declare(
|
||||||
|
module,
|
||||||
|
Self::FUNCTION_REVERT,
|
||||||
|
llvm.void_type().fn_type(
|
||||||
|
vec![
|
||||||
|
llvm.custom_width_int_type(revive_common::BIT_LENGTH_FIELD as u32)
|
||||||
|
.as_basic_type_enum()
|
||||||
|
.into();
|
||||||
|
3
|
||||||
|
]
|
||||||
|
.as_slice(),
|
||||||
|
false,
|
||||||
|
),
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
);
|
||||||
|
Function::set_default_attributes(llvm, revert, optimizer);
|
||||||
|
|
||||||
|
Self {
|
||||||
|
personality,
|
||||||
|
cxa_throw,
|
||||||
|
|
||||||
|
div,
|
||||||
|
sdiv,
|
||||||
|
r#mod,
|
||||||
|
smod,
|
||||||
|
|
||||||
|
shl,
|
||||||
|
shr,
|
||||||
|
sar,
|
||||||
|
byte,
|
||||||
|
|
||||||
|
add_mod,
|
||||||
|
mul_mod,
|
||||||
|
exp,
|
||||||
|
sign_extend,
|
||||||
|
|
||||||
|
sha3,
|
||||||
|
|
||||||
|
system_request,
|
||||||
|
|
||||||
|
//far_call,
|
||||||
|
static_call,
|
||||||
|
delegate_call,
|
||||||
|
mimic_call,
|
||||||
|
|
||||||
|
far_call_byref,
|
||||||
|
static_call_byref,
|
||||||
|
delegate_call_byref,
|
||||||
|
mimic_call_byref,
|
||||||
|
|
||||||
|
r#return,
|
||||||
|
revert,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Declares an LLVM runtime function in the `module`,
|
||||||
|
///
|
||||||
|
pub fn declare(
|
||||||
|
module: &inkwell::module::Module<'ctx>,
|
||||||
|
name: &str,
|
||||||
|
r#type: inkwell::types::FunctionType<'ctx>,
|
||||||
|
linkage: Option<inkwell::module::Linkage>,
|
||||||
|
) -> FunctionDeclaration<'ctx> {
|
||||||
|
let value = module.add_function(name, r#type, linkage);
|
||||||
|
FunctionDeclaration::new(r#type, value)
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Create the function definition from an existing symbol.
|
||||||
|
pub fn define(
|
||||||
|
module: &inkwell::module::Module<'ctx>,
|
||||||
|
name: &str,
|
||||||
|
) -> Option<FunctionDeclaration<'ctx>> {
|
||||||
|
let value = module.get_function(name)?;
|
||||||
|
value.set_linkage(inkwell::module::Linkage::External);
|
||||||
|
FunctionDeclaration::new(value.get_type(), value).into()
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Modifies the external call function with `is_byref` and `is_system` modifiers.
|
||||||
|
///
|
||||||
|
pub fn modify(
|
||||||
|
&self,
|
||||||
|
function: FunctionDeclaration<'ctx>,
|
||||||
|
is_byref: bool,
|
||||||
|
) -> anyhow::Result<FunctionDeclaration<'ctx>> {
|
||||||
|
let modified = if
|
||||||
|
/*function == self.far_call {
|
||||||
|
match is_byref {
|
||||||
|
false => self.far_call,
|
||||||
|
true => self.far_call_byref,
|
||||||
|
}
|
||||||
|
} else if */
|
||||||
|
function == self.static_call {
|
||||||
|
match is_byref {
|
||||||
|
false => self.static_call,
|
||||||
|
true => self.static_call_byref,
|
||||||
|
}
|
||||||
|
} else if function == self.delegate_call {
|
||||||
|
match is_byref {
|
||||||
|
false => self.delegate_call,
|
||||||
|
true => self.delegate_call_byref,
|
||||||
|
}
|
||||||
|
} else if function == self.mimic_call {
|
||||||
|
match is_byref {
|
||||||
|
false => self.mimic_call,
|
||||||
|
true => self.mimic_call_byref,
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
anyhow::bail!(
|
||||||
|
"Cannot modify an external call function `{}`",
|
||||||
|
function.value.get_name().to_string_lossy()
|
||||||
|
);
|
||||||
|
};
|
||||||
|
|
||||||
|
Ok(modified)
|
||||||
|
}
|
||||||
|
}
|
||||||
+107
-28
@@ -1,4 +1,6 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator function.
|
//! The LLVM IR generator function.
|
||||||
|
//!
|
||||||
|
|
||||||
pub mod block;
|
pub mod block;
|
||||||
pub mod declaration;
|
pub mod declaration;
|
||||||
@@ -7,21 +9,26 @@ pub mod intrinsics;
|
|||||||
pub mod llvm_runtime;
|
pub mod llvm_runtime;
|
||||||
pub mod r#return;
|
pub mod r#return;
|
||||||
pub mod runtime;
|
pub mod runtime;
|
||||||
|
pub mod vyper_data;
|
||||||
pub mod yul_data;
|
pub mod yul_data;
|
||||||
|
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
use crate::eravm::context::attribute::Attribute;
|
||||||
|
use crate::eravm::context::pointer::Pointer;
|
||||||
use crate::optimizer::settings::size_level::SizeLevel;
|
use crate::optimizer::settings::size_level::SizeLevel;
|
||||||
use crate::optimizer::Optimizer;
|
use crate::optimizer::Optimizer;
|
||||||
use crate::polkavm::context::attribute::Attribute;
|
|
||||||
use crate::polkavm::context::pointer::Pointer;
|
|
||||||
|
|
||||||
use self::declaration::Declaration;
|
use self::declaration::Declaration;
|
||||||
use self::evmla_data::EVMLAData;
|
use self::evmla_data::EVMLAData;
|
||||||
use self::r#return::Return;
|
use self::r#return::Return;
|
||||||
|
use self::runtime::Runtime;
|
||||||
|
use self::vyper_data::VyperData;
|
||||||
use self::yul_data::YulData;
|
use self::yul_data::YulData;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM IR generator function.
|
/// The LLVM IR generator function.
|
||||||
|
///
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Function<'ctx> {
|
pub struct Function<'ctx> {
|
||||||
/// The high-level source code name.
|
/// The high-level source code name.
|
||||||
@@ -45,6 +52,8 @@ pub struct Function<'ctx> {
|
|||||||
yul_data: Option<YulData>,
|
yul_data: Option<YulData>,
|
||||||
/// The EVM legacy assembly compiler data.
|
/// The EVM legacy assembly compiler data.
|
||||||
evmla_data: Option<EVMLAData<'ctx>>,
|
evmla_data: Option<EVMLAData<'ctx>>,
|
||||||
|
/// The Vyper data.
|
||||||
|
vyper_data: Option<VyperData>,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> Function<'ctx> {
|
impl<'ctx> Function<'ctx> {
|
||||||
@@ -57,7 +66,9 @@ impl<'ctx> Function<'ctx> {
|
|||||||
/// The stack hashmap default capacity.
|
/// The stack hashmap default capacity.
|
||||||
const STACK_HASHMAP_INITIAL_CAPACITY: usize = 64;
|
const STACK_HASHMAP_INITIAL_CAPACITY: usize = 64;
|
||||||
|
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(
|
pub fn new(
|
||||||
name: String,
|
name: String,
|
||||||
declaration: Declaration<'ctx>,
|
declaration: Declaration<'ctx>,
|
||||||
@@ -77,35 +88,46 @@ impl<'ctx> Function<'ctx> {
|
|||||||
|
|
||||||
yul_data: None,
|
yul_data: None,
|
||||||
evmla_data: None,
|
evmla_data: None,
|
||||||
|
vyper_data: None,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the function name reference.
|
/// Returns the function name reference.
|
||||||
|
///
|
||||||
pub fn name(&self) -> &str {
|
pub fn name(&self) -> &str {
|
||||||
self.name.as_str()
|
self.name.as_str()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Checks whether the function is defined outside of the front-end.
|
/// Checks whether the function is defined outside of the front-end.
|
||||||
|
///
|
||||||
pub fn is_name_external(name: &str) -> bool {
|
pub fn is_name_external(name: &str) -> bool {
|
||||||
name.starts_with("llvm.")
|
name.starts_with("llvm.")
|
||||||
|| (name.starts_with("__")
|
|| (name.starts_with("__")
|
||||||
&& name != self::runtime::FUNCTION_ENTRY
|
&& name != Runtime::FUNCTION_ENTRY
|
||||||
&& name != self::runtime::FUNCTION_DEPLOY_CODE
|
&& name != Runtime::FUNCTION_DEPLOY_CODE
|
||||||
&& name != self::runtime::FUNCTION_RUNTIME_CODE)
|
&& name != Runtime::FUNCTION_RUNTIME_CODE)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Checks whether the function is related to the near call ABI.
|
/// Checks whether the function is related to the near call ABI.
|
||||||
|
///
|
||||||
pub fn is_near_call_abi(name: &str) -> bool {
|
pub fn is_near_call_abi(name: &str) -> bool {
|
||||||
name.starts_with(Self::ZKSYNC_NEAR_CALL_ABI_PREFIX)
|
name.starts_with(Self::ZKSYNC_NEAR_CALL_ABI_PREFIX)
|
||||||
|| name == Self::ZKSYNC_NEAR_CALL_ABI_EXCEPTION_HANDLER
|
|| name == Self::ZKSYNC_NEAR_CALL_ABI_EXCEPTION_HANDLER
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the LLVM function declaration.
|
/// Returns the LLVM function declaration.
|
||||||
|
///
|
||||||
pub fn declaration(&self) -> Declaration<'ctx> {
|
pub fn declaration(&self) -> Declaration<'ctx> {
|
||||||
self.declaration
|
self.declaration
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the N-th parameter of the function.
|
/// Returns the N-th parameter of the function.
|
||||||
|
///
|
||||||
pub fn get_nth_param(&self, index: usize) -> inkwell::values::BasicValueEnum<'ctx> {
|
pub fn get_nth_param(&self, index: usize) -> inkwell::values::BasicValueEnum<'ctx> {
|
||||||
self.declaration()
|
self.declaration()
|
||||||
.value
|
.value
|
||||||
@@ -113,7 +135,9 @@ impl<'ctx> Function<'ctx> {
|
|||||||
.expect("Always exists")
|
.expect("Always exists")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets the memory writer function attributes.
|
/// Sets the memory writer function attributes.
|
||||||
|
///
|
||||||
pub fn set_attributes(
|
pub fn set_attributes(
|
||||||
llvm: &'ctx inkwell::context::Context,
|
llvm: &'ctx inkwell::context::Context,
|
||||||
declaration: Declaration<'ctx>,
|
declaration: Declaration<'ctx>,
|
||||||
@@ -122,7 +146,6 @@ impl<'ctx> Function<'ctx> {
|
|||||||
) {
|
) {
|
||||||
for attribute_kind in attributes.into_iter() {
|
for attribute_kind in attributes.into_iter() {
|
||||||
match attribute_kind {
|
match attribute_kind {
|
||||||
Attribute::Memory => unimplemented!("`memory` attributes are not implemented"),
|
|
||||||
attribute_kind @ Attribute::AlwaysInline if force => {
|
attribute_kind @ Attribute::AlwaysInline if force => {
|
||||||
let is_optimize_none_set = declaration
|
let is_optimize_none_set = declaration
|
||||||
.value
|
.value
|
||||||
@@ -160,36 +183,17 @@ impl<'ctx> Function<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Remove specified attributes existing on the given declaration.
|
///
|
||||||
pub fn remove_attributes(declaration: Declaration, attributes: &[Attribute]) {
|
|
||||||
for attribute in attributes.iter().filter(|attribute| {
|
|
||||||
declaration
|
|
||||||
.value
|
|
||||||
.get_enum_attribute(
|
|
||||||
inkwell::attributes::AttributeLoc::Function,
|
|
||||||
**attribute as u32,
|
|
||||||
)
|
|
||||||
.is_some()
|
|
||||||
}) {
|
|
||||||
declaration.value.remove_enum_attribute(
|
|
||||||
inkwell::attributes::AttributeLoc::Function,
|
|
||||||
*attribute as u32,
|
|
||||||
);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/// Sets the default attributes.
|
/// Sets the default attributes.
|
||||||
|
///
|
||||||
/// The attributes only affect the LLVM optimizations.
|
/// The attributes only affect the LLVM optimizations.
|
||||||
|
///
|
||||||
pub fn set_default_attributes(
|
pub fn set_default_attributes(
|
||||||
llvm: &'ctx inkwell::context::Context,
|
llvm: &'ctx inkwell::context::Context,
|
||||||
declaration: Declaration<'ctx>,
|
declaration: Declaration<'ctx>,
|
||||||
optimizer: &Optimizer,
|
optimizer: &Optimizer,
|
||||||
) {
|
) {
|
||||||
if optimizer.settings().level_middle_end == inkwell::OptimizationLevel::None {
|
if optimizer.settings().level_middle_end == inkwell::OptimizationLevel::None {
|
||||||
Self::remove_attributes(
|
|
||||||
declaration,
|
|
||||||
&[Attribute::OptimizeForSize, Attribute::AlwaysInline],
|
|
||||||
);
|
|
||||||
Self::set_attributes(
|
Self::set_attributes(
|
||||||
llvm,
|
llvm,
|
||||||
declaration,
|
declaration,
|
||||||
@@ -208,7 +212,9 @@ impl<'ctx> Function<'ctx> {
|
|||||||
Self::set_attributes(llvm, declaration, vec![Attribute::NoFree], false);
|
Self::set_attributes(llvm, declaration, vec![Attribute::NoFree], false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets the front-end runtime attributes.
|
/// Sets the front-end runtime attributes.
|
||||||
|
///
|
||||||
pub fn set_frontend_runtime_attributes(
|
pub fn set_frontend_runtime_attributes(
|
||||||
llvm: &'ctx inkwell::context::Context,
|
llvm: &'ctx inkwell::context::Context,
|
||||||
declaration: Declaration<'ctx>,
|
declaration: Declaration<'ctx>,
|
||||||
@@ -219,7 +225,9 @@ impl<'ctx> Function<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets the exception handler attributes.
|
/// Sets the exception handler attributes.
|
||||||
|
///
|
||||||
pub fn set_exception_handler_attributes(
|
pub fn set_exception_handler_attributes(
|
||||||
llvm: &'ctx inkwell::context::Context,
|
llvm: &'ctx inkwell::context::Context,
|
||||||
declaration: Declaration<'ctx>,
|
declaration: Declaration<'ctx>,
|
||||||
@@ -227,7 +235,9 @@ impl<'ctx> Function<'ctx> {
|
|||||||
Self::set_attributes(llvm, declaration, vec![Attribute::NoInline], false);
|
Self::set_attributes(llvm, declaration, vec![Attribute::NoInline], false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets the CXA-throw attributes.
|
/// Sets the CXA-throw attributes.
|
||||||
|
///
|
||||||
pub fn set_cxa_throw_attributes(
|
pub fn set_cxa_throw_attributes(
|
||||||
llvm: &'ctx inkwell::context::Context,
|
llvm: &'ctx inkwell::context::Context,
|
||||||
declaration: Declaration<'ctx>,
|
declaration: Declaration<'ctx>,
|
||||||
@@ -235,7 +245,9 @@ impl<'ctx> Function<'ctx> {
|
|||||||
Self::set_attributes(llvm, declaration, vec![Attribute::NoProfile], false);
|
Self::set_attributes(llvm, declaration, vec![Attribute::NoProfile], false);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets the pure function attributes.
|
/// Sets the pure function attributes.
|
||||||
|
///
|
||||||
pub fn set_pure_function_attributes(
|
pub fn set_pure_function_attributes(
|
||||||
llvm: &'ctx inkwell::context::Context,
|
llvm: &'ctx inkwell::context::Context,
|
||||||
declaration: Declaration<'ctx>,
|
declaration: Declaration<'ctx>,
|
||||||
@@ -246,14 +258,18 @@ impl<'ctx> Function<'ctx> {
|
|||||||
vec![
|
vec![
|
||||||
Attribute::MustProgress,
|
Attribute::MustProgress,
|
||||||
Attribute::NoUnwind,
|
Attribute::NoUnwind,
|
||||||
|
// FIXME: LLVM complains about ReadNone being not valid for fns
|
||||||
|
// Attribute::ReadNone,
|
||||||
Attribute::WillReturn,
|
Attribute::WillReturn,
|
||||||
],
|
],
|
||||||
false,
|
false,
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Saves the pointer to a stack variable, returning the pointer to the shadowed variable,
|
/// Saves the pointer to a stack variable, returning the pointer to the shadowed variable,
|
||||||
/// if it exists.
|
/// if it exists.
|
||||||
|
///
|
||||||
pub fn insert_stack_pointer(
|
pub fn insert_stack_pointer(
|
||||||
&mut self,
|
&mut self,
|
||||||
name: String,
|
name: String,
|
||||||
@@ -262,85 +278,148 @@ impl<'ctx> Function<'ctx> {
|
|||||||
self.stack.insert(name, pointer)
|
self.stack.insert(name, pointer)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Gets the pointer to a stack variable.
|
/// Gets the pointer to a stack variable.
|
||||||
|
///
|
||||||
pub fn get_stack_pointer(&self, name: &str) -> Option<Pointer<'ctx>> {
|
pub fn get_stack_pointer(&self, name: &str) -> Option<Pointer<'ctx>> {
|
||||||
self.stack.get(name).copied()
|
self.stack.get(name).copied()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Removes the pointer to a stack variable.
|
/// Removes the pointer to a stack variable.
|
||||||
|
///
|
||||||
pub fn remove_stack_pointer(&mut self, name: &str) {
|
pub fn remove_stack_pointer(&mut self, name: &str) {
|
||||||
self.stack.remove(name);
|
self.stack.remove(name);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the return entity representation.
|
/// Returns the return entity representation.
|
||||||
|
///
|
||||||
pub fn r#return(&self) -> Return<'ctx> {
|
pub fn r#return(&self) -> Return<'ctx> {
|
||||||
self.r#return
|
self.r#return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the pointer to the function return value.
|
/// Returns the pointer to the function return value.
|
||||||
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
/// If the pointer has not been set yet.
|
/// If the pointer has not been set yet.
|
||||||
|
///
|
||||||
pub fn return_pointer(&self) -> Option<Pointer<'ctx>> {
|
pub fn return_pointer(&self) -> Option<Pointer<'ctx>> {
|
||||||
self.r#return.return_pointer()
|
self.r#return.return_pointer()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the return data size in bytes, based on the default stack alignment.
|
/// Returns the return data size in bytes, based on the default stack alignment.
|
||||||
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
/// If the pointer has not been set yet.
|
/// If the pointer has not been set yet.
|
||||||
|
///
|
||||||
pub fn return_data_size(&self) -> usize {
|
pub fn return_data_size(&self) -> usize {
|
||||||
self.r#return.return_data_size()
|
self.r#return.return_data_size()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the function entry block.
|
/// Returns the function entry block.
|
||||||
|
///
|
||||||
pub fn entry_block(&self) -> inkwell::basic_block::BasicBlock<'ctx> {
|
pub fn entry_block(&self) -> inkwell::basic_block::BasicBlock<'ctx> {
|
||||||
self.entry_block
|
self.entry_block
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the function return block.
|
/// Returns the function return block.
|
||||||
|
///
|
||||||
pub fn return_block(&self) -> inkwell::basic_block::BasicBlock<'ctx> {
|
pub fn return_block(&self) -> inkwell::basic_block::BasicBlock<'ctx> {
|
||||||
self.return_block
|
self.return_block
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets the EVM legacy assembly data.
|
/// Sets the EVM legacy assembly data.
|
||||||
|
///
|
||||||
pub fn set_evmla_data(&mut self, data: EVMLAData<'ctx>) {
|
pub fn set_evmla_data(&mut self, data: EVMLAData<'ctx>) {
|
||||||
self.evmla_data = Some(data);
|
self.evmla_data = Some(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the EVM legacy assembly data reference.
|
/// Returns the EVM legacy assembly data reference.
|
||||||
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
/// If the EVM data has not been initialized.
|
/// If the EVM data has not been initialized.
|
||||||
|
///
|
||||||
pub fn evmla(&self) -> &EVMLAData<'ctx> {
|
pub fn evmla(&self) -> &EVMLAData<'ctx> {
|
||||||
self.evmla_data
|
self.evmla_data
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.expect("The EVM data must have been initialized")
|
.expect("The EVM data must have been initialized")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the EVM legacy assembly data mutable reference.
|
/// Returns the EVM legacy assembly data mutable reference.
|
||||||
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
/// If the EVM data has not been initialized.
|
/// If the EVM data has not been initialized.
|
||||||
|
///
|
||||||
pub fn evmla_mut(&mut self) -> &mut EVMLAData<'ctx> {
|
pub fn evmla_mut(&mut self) -> &mut EVMLAData<'ctx> {
|
||||||
self.evmla_data
|
self.evmla_data
|
||||||
.as_mut()
|
.as_mut()
|
||||||
.expect("The EVM data must have been initialized")
|
.expect("The EVM data must have been initialized")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Sets the Vyper data.
|
||||||
|
///
|
||||||
|
pub fn set_vyper_data(&mut self, data: VyperData) {
|
||||||
|
self.vyper_data = Some(data);
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the Vyper data reference.
|
||||||
|
///
|
||||||
|
/// # Panics
|
||||||
|
/// If the Vyper data has not been initialized.
|
||||||
|
///
|
||||||
|
pub fn vyper(&self) -> &VyperData {
|
||||||
|
self.vyper_data
|
||||||
|
.as_ref()
|
||||||
|
.expect("The Vyper data must have been initialized")
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the Vyper data mutable reference.
|
||||||
|
///
|
||||||
|
/// # Panics
|
||||||
|
/// If the Vyper data has not been initialized.
|
||||||
|
///
|
||||||
|
pub fn vyper_mut(&mut self) -> &mut VyperData {
|
||||||
|
self.vyper_data
|
||||||
|
.as_mut()
|
||||||
|
.expect("The Vyper data must have been initialized")
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets the Yul data.
|
/// Sets the Yul data.
|
||||||
|
///
|
||||||
pub fn set_yul_data(&mut self, data: YulData) {
|
pub fn set_yul_data(&mut self, data: YulData) {
|
||||||
self.yul_data = Some(data);
|
self.yul_data = Some(data);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the Yul data reference.
|
/// Returns the Yul data reference.
|
||||||
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
/// If the Yul data has not been initialized.
|
/// If the Yul data has not been initialized.
|
||||||
|
///
|
||||||
pub fn yul(&self) -> &YulData {
|
pub fn yul(&self) -> &YulData {
|
||||||
self.yul_data
|
self.yul_data
|
||||||
.as_ref()
|
.as_ref()
|
||||||
.expect("The Yul data must have been initialized")
|
.expect("The Yul data must have been initialized")
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the Yul data mutable reference.
|
/// Returns the Yul data mutable reference.
|
||||||
|
///
|
||||||
/// # Panics
|
/// # Panics
|
||||||
/// If the Yul data has not been initialized.
|
/// If the Yul data has not been initialized.
|
||||||
|
///
|
||||||
pub fn yul_mut(&mut self) -> &mut YulData {
|
pub fn yul_mut(&mut self) -> &mut YulData {
|
||||||
self.yul_data
|
self.yul_data
|
||||||
.as_mut()
|
.as_mut()
|
||||||
+16
-2
@@ -1,8 +1,12 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator function return entity.
|
//! The LLVM IR generator function return entity.
|
||||||
|
//!
|
||||||
|
|
||||||
use crate::polkavm::context::pointer::Pointer;
|
use crate::eravm::context::pointer::Pointer;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM IR generator function return entity.
|
/// The LLVM IR generator function return entity.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
pub enum Return<'ctx> {
|
pub enum Return<'ctx> {
|
||||||
/// The function does not return a value.
|
/// The function does not return a value.
|
||||||
@@ -23,22 +27,30 @@ pub enum Return<'ctx> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> Return<'ctx> {
|
impl<'ctx> Return<'ctx> {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn none() -> Self {
|
pub fn none() -> Self {
|
||||||
Self::None
|
Self::None
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn primitive(pointer: Pointer<'ctx>) -> Self {
|
pub fn primitive(pointer: Pointer<'ctx>) -> Self {
|
||||||
Self::Primitive { pointer }
|
Self::Primitive { pointer }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn compound(pointer: Pointer<'ctx>, size: usize) -> Self {
|
pub fn compound(pointer: Pointer<'ctx>, size: usize) -> Self {
|
||||||
Self::Compound { pointer, size }
|
Self::Compound { pointer, size }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the pointer to the function return value.
|
/// Returns the pointer to the function return value.
|
||||||
|
///
|
||||||
pub fn return_pointer(&self) -> Option<Pointer<'ctx>> {
|
pub fn return_pointer(&self) -> Option<Pointer<'ctx>> {
|
||||||
match self {
|
match self {
|
||||||
Return::None => None,
|
Return::None => None,
|
||||||
@@ -47,9 +59,11 @@ impl<'ctx> Return<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the return data size in bytes, based on the default stack alignment.
|
/// Returns the return data size in bytes, based on the default stack alignment.
|
||||||
|
///
|
||||||
pub fn return_data_size(&self) -> usize {
|
pub fn return_data_size(&self) -> usize {
|
||||||
revive_common::BYTE_LENGTH_WORD
|
revive_common::BYTE_LENGTH_FIELD
|
||||||
* match self {
|
* match self {
|
||||||
Self::None => 0,
|
Self::None => 0,
|
||||||
Self::Primitive { .. } => 1,
|
Self::Primitive { .. } => 1,
|
||||||
@@ -0,0 +1,255 @@
|
|||||||
|
//!
|
||||||
|
//! The `default_call` function.
|
||||||
|
//!
|
||||||
|
|
||||||
|
use inkwell::types::BasicType;
|
||||||
|
|
||||||
|
use crate::eravm::context::function::declaration::Declaration as FunctionDeclaration;
|
||||||
|
use crate::eravm::context::function::llvm_runtime::LLVMRuntime;
|
||||||
|
use crate::eravm::context::function::Function;
|
||||||
|
use crate::eravm::context::Context;
|
||||||
|
use crate::eravm::Dependency;
|
||||||
|
use crate::eravm::WriteLLVM;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The `default_call` function.
|
||||||
|
///
|
||||||
|
/// Generates a default contract call, if the `msg.value` is zero.
|
||||||
|
///
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct DefaultCall {
|
||||||
|
/// The name of the inner function used for the low-level call.
|
||||||
|
inner_name: String,
|
||||||
|
/// The function name with the low-level function name as an element.
|
||||||
|
name: String,
|
||||||
|
}
|
||||||
|
|
||||||
|
#[allow(unused)]
|
||||||
|
impl DefaultCall {
|
||||||
|
/// The gas argument index.
|
||||||
|
pub const ARGUMENT_INDEX_GAS: usize = 0;
|
||||||
|
|
||||||
|
/// The address argument index.
|
||||||
|
pub const ARGUMENT_INDEX_ADDRESS: usize = 1;
|
||||||
|
|
||||||
|
/// The input offset argument index.
|
||||||
|
pub const ARGUMENT_INDEX_INPUT_OFFSET: usize = 2;
|
||||||
|
|
||||||
|
/// The input length argument index.
|
||||||
|
pub const ARGUMENT_INDEX_INPUT_LENGTH: usize = 3;
|
||||||
|
|
||||||
|
/// The output offset argument index.
|
||||||
|
pub const ARGUMENT_INDEX_OUTPUT_OFFSET: usize = 4;
|
||||||
|
|
||||||
|
/// The output length argument index.
|
||||||
|
pub const ARGUMENT_INDEX_OUTPUT_LENGTH: usize = 5;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
|
pub fn new(call_function: FunctionDeclaration) -> Self {
|
||||||
|
let inner_name = call_function.value.get_name().to_string_lossy().to_string();
|
||||||
|
let name = Self::name(call_function);
|
||||||
|
|
||||||
|
Self { inner_name, name }
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the function name.
|
||||||
|
///
|
||||||
|
pub fn name(call_function: FunctionDeclaration) -> String {
|
||||||
|
let suffix = match call_function.value.get_name().to_string_lossy() {
|
||||||
|
name if name == LLVMRuntime::FUNCTION_FARCALL => "far",
|
||||||
|
name if name == LLVMRuntime::FUNCTION_STATICCALL => "static",
|
||||||
|
name if name == LLVMRuntime::FUNCTION_DELEGATECALL => "delegate",
|
||||||
|
name => panic!("Invalid low-level call inner function `{name}`"),
|
||||||
|
};
|
||||||
|
format!("__default_{suffix}_call")
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the low-level call function.
|
||||||
|
///
|
||||||
|
fn inner_function<'ctx, D>(&self, context: &Context<'ctx, D>) -> FunctionDeclaration<'ctx>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
match self.inner_name.as_str() {
|
||||||
|
//name if name == LLVMRuntime::FUNCTION_FARCALL => context.llvm_runtime().far_call,
|
||||||
|
name if name == LLVMRuntime::FUNCTION_STATICCALL => context.llvm_runtime().static_call,
|
||||||
|
name if name == LLVMRuntime::FUNCTION_DELEGATECALL => {
|
||||||
|
context.llvm_runtime().delegate_call
|
||||||
|
}
|
||||||
|
name => panic!("Invalid low-level call inner function `{name}`"),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<D> WriteLLVM<D> for DefaultCall
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
fn declare(&mut self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
|
let function_type = context.function_type(
|
||||||
|
vec![
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
],
|
||||||
|
1,
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
let function = context.add_function(
|
||||||
|
self.name.as_str(),
|
||||||
|
function_type,
|
||||||
|
1,
|
||||||
|
Some(inkwell::module::Linkage::Private),
|
||||||
|
)?;
|
||||||
|
Function::set_frontend_runtime_attributes(
|
||||||
|
context.llvm,
|
||||||
|
function.borrow().declaration(),
|
||||||
|
&context.optimizer,
|
||||||
|
);
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
|
context.set_current_function(self.name.as_str())?;
|
||||||
|
|
||||||
|
/*
|
||||||
|
let gas = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_GAS)
|
||||||
|
.into_int_value();
|
||||||
|
let address = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_ADDRESS)
|
||||||
|
.into_int_value();
|
||||||
|
let input_offset = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_INPUT_OFFSET)
|
||||||
|
.into_int_value();
|
||||||
|
let input_length = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_INPUT_LENGTH)
|
||||||
|
.into_int_value();
|
||||||
|
let output_offset = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_OUTPUT_OFFSET)
|
||||||
|
.into_int_value();
|
||||||
|
let output_length = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_OUTPUT_LENGTH)
|
||||||
|
.into_int_value();
|
||||||
|
*/
|
||||||
|
context.set_basic_block(context.current_function().borrow().entry_block());
|
||||||
|
|
||||||
|
let status_code_result_pointer = context.build_alloca(
|
||||||
|
context.field_type(),
|
||||||
|
"contract_call_result_status_code_pointer",
|
||||||
|
);
|
||||||
|
/*
|
||||||
|
context.build_store(status_code_result_pointer, context.field_const(0));
|
||||||
|
|
||||||
|
let abi_data = crate::eravm::utils::abi_data(
|
||||||
|
context,
|
||||||
|
input_offset,
|
||||||
|
input_length,
|
||||||
|
Some(gas),
|
||||||
|
AddressSpace::Heap,
|
||||||
|
false,
|
||||||
|
)?
|
||||||
|
.into_int_value();
|
||||||
|
|
||||||
|
let result = context
|
||||||
|
.build_call(
|
||||||
|
self.inner_function(context),
|
||||||
|
crate::eravm::utils::external_call_arguments(
|
||||||
|
context,
|
||||||
|
abi_data.as_basic_value_enum(),
|
||||||
|
address,
|
||||||
|
vec![],
|
||||||
|
None,
|
||||||
|
)
|
||||||
|
.as_slice(),
|
||||||
|
"contract_call_external",
|
||||||
|
)
|
||||||
|
.expect("IntrinsicFunction always returns a flag");
|
||||||
|
|
||||||
|
let result_abi_data = context
|
||||||
|
.builder()
|
||||||
|
.build_extract_value(
|
||||||
|
result.into_struct_value(),
|
||||||
|
0,
|
||||||
|
"contract_call_external_result_abi_data",
|
||||||
|
)
|
||||||
|
.expect("Always exists");
|
||||||
|
let result_abi_data_pointer = Pointer::new(
|
||||||
|
context.byte_type(),
|
||||||
|
AddressSpace::Generic,
|
||||||
|
result_abi_data.into_pointer_value(),
|
||||||
|
);
|
||||||
|
let result_abi_data_casted = result_abi_data_pointer.cast(context.field_type());
|
||||||
|
|
||||||
|
let result_status_code_boolean = context
|
||||||
|
.builder()
|
||||||
|
.build_extract_value(
|
||||||
|
result.into_struct_value(),
|
||||||
|
1,
|
||||||
|
"contract_call_external_result_status_code_boolean",
|
||||||
|
)
|
||||||
|
.expect("Always exists");
|
||||||
|
let result_status_code = context.builder().build_int_z_extend_or_bit_cast(
|
||||||
|
result_status_code_boolean.into_int_value(),
|
||||||
|
context.field_type(),
|
||||||
|
"contract_call_external_result_status_code",
|
||||||
|
)?;
|
||||||
|
context.build_store(status_code_result_pointer, result_status_code);
|
||||||
|
|
||||||
|
let source = result_abi_data_casted;
|
||||||
|
|
||||||
|
let destination = Pointer::new_with_offset(
|
||||||
|
context,
|
||||||
|
AddressSpace::Heap,
|
||||||
|
context.byte_type(),
|
||||||
|
output_offset,
|
||||||
|
"contract_call_destination",
|
||||||
|
);
|
||||||
|
|
||||||
|
context.build_memcpy_return_data(
|
||||||
|
context.intrinsics().memory_copy_from_generic,
|
||||||
|
destination,
|
||||||
|
source,
|
||||||
|
output_length,
|
||||||
|
"contract_call_memcpy_from_child",
|
||||||
|
);
|
||||||
|
|
||||||
|
context.write_abi_pointer(
|
||||||
|
result_abi_data_pointer,
|
||||||
|
crate::eravm::GLOBAL_RETURN_DATA_POINTER,
|
||||||
|
);
|
||||||
|
context.write_abi_data_size(
|
||||||
|
result_abi_data_pointer,
|
||||||
|
crate::eravm::GLOBAL_RETURN_DATA_SIZE,
|
||||||
|
);
|
||||||
|
*/
|
||||||
|
context.build_unconditional_branch(context.current_function().borrow().return_block());
|
||||||
|
|
||||||
|
context.set_basic_block(context.current_function().borrow().return_block());
|
||||||
|
let status_code_result =
|
||||||
|
context.build_load(status_code_result_pointer, "contract_call_status_code")?;
|
||||||
|
context.build_return(Some(&status_code_result));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
+32
-7
@@ -1,15 +1,22 @@
|
|||||||
|
//!
|
||||||
//! The deploy code function.
|
//! The deploy code function.
|
||||||
|
//!
|
||||||
|
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
use crate::polkavm::context::code_type::CodeType;
|
use crate::eravm::context::address_space::AddressSpace;
|
||||||
use crate::polkavm::context::function::runtime;
|
use crate::eravm::context::code_type::CodeType;
|
||||||
use crate::polkavm::context::Context;
|
use crate::eravm::context::function::runtime::Runtime;
|
||||||
use crate::polkavm::Dependency;
|
use crate::eravm::context::pointer::Pointer;
|
||||||
use crate::polkavm::WriteLLVM;
|
use crate::eravm::context::Context;
|
||||||
|
use crate::eravm::Dependency;
|
||||||
|
use crate::eravm::WriteLLVM;
|
||||||
|
|
||||||
|
///
|
||||||
/// The deploy code function.
|
/// The deploy code function.
|
||||||
|
///
|
||||||
/// Is a special function that is only used by the front-end generated code.
|
/// Is a special function that is only used by the front-end generated code.
|
||||||
|
///
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct DeployCode<B, D>
|
pub struct DeployCode<B, D>
|
||||||
where
|
where
|
||||||
@@ -27,7 +34,9 @@ where
|
|||||||
B: WriteLLVM<D>,
|
B: WriteLLVM<D>,
|
||||||
D: Dependency + Clone,
|
D: Dependency + Clone,
|
||||||
{
|
{
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(inner: B) -> Self {
|
pub fn new(inner: B) -> Self {
|
||||||
Self {
|
Self {
|
||||||
inner,
|
inner,
|
||||||
@@ -45,7 +54,7 @@ where
|
|||||||
let function_type =
|
let function_type =
|
||||||
context.function_type::<inkwell::types::BasicTypeEnum>(vec![], 0, false);
|
context.function_type::<inkwell::types::BasicTypeEnum>(vec![], 0, false);
|
||||||
context.add_function(
|
context.add_function(
|
||||||
runtime::FUNCTION_DEPLOY_CODE,
|
Runtime::FUNCTION_DEPLOY_CODE,
|
||||||
function_type,
|
function_type,
|
||||||
0,
|
0,
|
||||||
Some(inkwell::module::Linkage::External),
|
Some(inkwell::module::Linkage::External),
|
||||||
@@ -55,10 +64,26 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
context.set_current_function(runtime::FUNCTION_DEPLOY_CODE)?;
|
context.set_current_function(Runtime::FUNCTION_DEPLOY_CODE)?;
|
||||||
|
|
||||||
context.set_basic_block(context.current_function().borrow().entry_block());
|
context.set_basic_block(context.current_function().borrow().entry_block());
|
||||||
context.set_code_type(CodeType::Deploy);
|
context.set_code_type(CodeType::Deploy);
|
||||||
|
if let Some(vyper) = context.vyper_data.as_ref() {
|
||||||
|
for index in 0..vyper.immutables_size() / revive_common::BYTE_LENGTH_FIELD {
|
||||||
|
let offset = (crate::eravm::r#const::HEAP_AUX_OFFSET_CONSTRUCTOR_RETURN_DATA
|
||||||
|
as usize)
|
||||||
|
+ (1 + index) * 2 * revive_common::BYTE_LENGTH_FIELD;
|
||||||
|
let value = index * revive_common::BYTE_LENGTH_FIELD;
|
||||||
|
let pointer = Pointer::new_with_offset(
|
||||||
|
context,
|
||||||
|
AddressSpace::HeapAuxiliary,
|
||||||
|
context.field_type(),
|
||||||
|
context.field_const(offset as u64),
|
||||||
|
"immutable_index_initializer",
|
||||||
|
);
|
||||||
|
context.build_store(pointer, context.field_const(value as u64))?;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
self.inner.into_llvm(context)?;
|
self.inner.into_llvm(context)?;
|
||||||
match context
|
match context
|
||||||
@@ -0,0 +1,332 @@
|
|||||||
|
//!
|
||||||
|
//! The `deployer_call` function.
|
||||||
|
//!
|
||||||
|
|
||||||
|
use inkwell::types::BasicType;
|
||||||
|
|
||||||
|
use crate::eravm::context::address_space::AddressSpace;
|
||||||
|
use crate::eravm::context::function::Function;
|
||||||
|
use crate::eravm::context::pointer::Pointer;
|
||||||
|
use crate::eravm::context::Context;
|
||||||
|
use crate::eravm::Dependency;
|
||||||
|
use crate::eravm::WriteLLVM;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The `deployer_call` function.
|
||||||
|
///
|
||||||
|
/// Calls the deployer system contract, which returns the newly deployed contract address or 0.
|
||||||
|
///
|
||||||
|
/// The address is returned in the first 32-byte word of the return data. If it is 0, the 0 is
|
||||||
|
/// returned. If the entire call has failed, there is also a 0 returned.
|
||||||
|
///
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct DeployerCall {
|
||||||
|
/// The address space where the calldata is allocated.
|
||||||
|
/// Solidity uses the ordinary heap. Vyper uses the auxiliary heap.
|
||||||
|
address_space: AddressSpace,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl DeployerCall {
|
||||||
|
/// The default function name.
|
||||||
|
pub const FUNCTION_NAME: &'static str = "__deployer_call";
|
||||||
|
|
||||||
|
/// The value argument index.
|
||||||
|
pub const ARGUMENT_INDEX_VALUE: usize = 0;
|
||||||
|
|
||||||
|
/// The input offset argument index.
|
||||||
|
pub const ARGUMENT_INDEX_INPUT_OFFSET: usize = 1;
|
||||||
|
|
||||||
|
/// The input length argument index.
|
||||||
|
pub const ARGUMENT_INDEX_INPUT_LENGTH: usize = 2;
|
||||||
|
|
||||||
|
/// The signature hash argument index.
|
||||||
|
pub const ARGUMENT_INDEX_SIGNATURE_HASH: usize = 3;
|
||||||
|
|
||||||
|
/// The salt argument index.
|
||||||
|
pub const ARGUMENT_INDEX_SALT: usize = 4;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
|
pub fn new(address_space: AddressSpace) -> Self {
|
||||||
|
Self { address_space }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<D> WriteLLVM<D> for DeployerCall
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
fn declare(&mut self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
|
let function_type = context.function_type(
|
||||||
|
vec![
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
context.field_type().as_basic_type_enum(),
|
||||||
|
],
|
||||||
|
1,
|
||||||
|
false,
|
||||||
|
);
|
||||||
|
let function = context.add_function(
|
||||||
|
Self::FUNCTION_NAME,
|
||||||
|
function_type,
|
||||||
|
1,
|
||||||
|
Some(inkwell::module::Linkage::External),
|
||||||
|
)?;
|
||||||
|
Function::set_frontend_runtime_attributes(
|
||||||
|
context.llvm,
|
||||||
|
function.borrow().declaration(),
|
||||||
|
&context.optimizer,
|
||||||
|
);
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
|
context.set_current_function(Self::FUNCTION_NAME)?;
|
||||||
|
|
||||||
|
let value = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_VALUE)
|
||||||
|
.into_int_value();
|
||||||
|
let input_offset = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_INPUT_OFFSET)
|
||||||
|
.into_int_value();
|
||||||
|
let input_length = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_INPUT_LENGTH)
|
||||||
|
.into_int_value();
|
||||||
|
let signature_hash = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_SIGNATURE_HASH)
|
||||||
|
.into_int_value();
|
||||||
|
let salt = context
|
||||||
|
.current_function()
|
||||||
|
.borrow()
|
||||||
|
.get_nth_param(Self::ARGUMENT_INDEX_SALT)
|
||||||
|
.into_int_value();
|
||||||
|
|
||||||
|
let error_block = context.append_basic_block("deployer_call_error_block");
|
||||||
|
let success_block = context.append_basic_block("deployer_call_success_block");
|
||||||
|
let value_zero_block = context.append_basic_block("deployer_call_value_zero_block");
|
||||||
|
let value_non_zero_block = context.append_basic_block("deployer_call_value_non_zero_block");
|
||||||
|
let value_join_block = context.append_basic_block("deployer_call_value_join_block");
|
||||||
|
|
||||||
|
context.set_basic_block(context.current_function().borrow().entry_block());
|
||||||
|
let _abi_data = crate::eravm::utils::abi_data(
|
||||||
|
context,
|
||||||
|
input_offset,
|
||||||
|
input_length,
|
||||||
|
None,
|
||||||
|
self.address_space,
|
||||||
|
true,
|
||||||
|
)?;
|
||||||
|
|
||||||
|
let signature_pointer = Pointer::new_with_offset(
|
||||||
|
context,
|
||||||
|
self.address_space,
|
||||||
|
context.field_type(),
|
||||||
|
input_offset,
|
||||||
|
"deployer_call_signature_pointer",
|
||||||
|
);
|
||||||
|
context.build_store(signature_pointer, signature_hash)?;
|
||||||
|
|
||||||
|
let salt_offset = context.builder().build_int_add(
|
||||||
|
input_offset,
|
||||||
|
context.field_const(revive_common::BYTE_LENGTH_X32 as u64),
|
||||||
|
"deployer_call_salt_offset",
|
||||||
|
)?;
|
||||||
|
let salt_pointer = Pointer::new_with_offset(
|
||||||
|
context,
|
||||||
|
self.address_space,
|
||||||
|
context.field_type(),
|
||||||
|
salt_offset,
|
||||||
|
"deployer_call_salt_pointer",
|
||||||
|
);
|
||||||
|
context.build_store(salt_pointer, salt)?;
|
||||||
|
|
||||||
|
let arguments_offset_offset = context.builder().build_int_add(
|
||||||
|
salt_offset,
|
||||||
|
context.field_const((revive_common::BYTE_LENGTH_FIELD * 2) as u64),
|
||||||
|
"deployer_call_arguments_offset_offset",
|
||||||
|
)?;
|
||||||
|
let arguments_offset_pointer = Pointer::new_with_offset(
|
||||||
|
context,
|
||||||
|
self.address_space,
|
||||||
|
context.field_type(),
|
||||||
|
arguments_offset_offset,
|
||||||
|
"deployer_call_arguments_offset_pointer",
|
||||||
|
);
|
||||||
|
context.build_store(
|
||||||
|
arguments_offset_pointer,
|
||||||
|
context.field_const(
|
||||||
|
(crate::eravm::DEPLOYER_CALL_HEADER_SIZE
|
||||||
|
- (revive_common::BYTE_LENGTH_X32 + revive_common::BYTE_LENGTH_FIELD))
|
||||||
|
as u64,
|
||||||
|
),
|
||||||
|
)?;
|
||||||
|
|
||||||
|
let arguments_length_offset = context.builder().build_int_add(
|
||||||
|
arguments_offset_offset,
|
||||||
|
context.field_const(revive_common::BYTE_LENGTH_FIELD as u64),
|
||||||
|
"deployer_call_arguments_length_offset",
|
||||||
|
)?;
|
||||||
|
let arguments_length_pointer = Pointer::new_with_offset(
|
||||||
|
context,
|
||||||
|
self.address_space,
|
||||||
|
context.field_type(),
|
||||||
|
arguments_length_offset,
|
||||||
|
"deployer_call_arguments_length_pointer",
|
||||||
|
);
|
||||||
|
let arguments_length_value = context.builder().build_int_sub(
|
||||||
|
input_length,
|
||||||
|
context.field_const(crate::eravm::DEPLOYER_CALL_HEADER_SIZE as u64),
|
||||||
|
"deployer_call_arguments_length",
|
||||||
|
)?;
|
||||||
|
context.build_store(arguments_length_pointer, arguments_length_value)?;
|
||||||
|
|
||||||
|
let result_pointer =
|
||||||
|
context.build_alloca(context.field_type(), "deployer_call_result_pointer");
|
||||||
|
context.build_store(result_pointer, context.field_const(0))?;
|
||||||
|
let deployer_call_result_type = context.structure_type(&[
|
||||||
|
context
|
||||||
|
.llvm()
|
||||||
|
.ptr_type(AddressSpace::Generic.into())
|
||||||
|
.as_basic_type_enum(),
|
||||||
|
context.bool_type().as_basic_type_enum(),
|
||||||
|
]);
|
||||||
|
let deployer_call_result_pointer =
|
||||||
|
context.build_alloca(deployer_call_result_type, "deployer_call_result_pointer");
|
||||||
|
context.build_store(
|
||||||
|
deployer_call_result_pointer,
|
||||||
|
deployer_call_result_type.const_zero(),
|
||||||
|
)?;
|
||||||
|
let is_value_zero = context.builder().build_int_compare(
|
||||||
|
inkwell::IntPredicate::EQ,
|
||||||
|
value,
|
||||||
|
context.field_const(0),
|
||||||
|
"deployer_call_is_value_zero",
|
||||||
|
)?;
|
||||||
|
context.build_conditional_branch(is_value_zero, value_zero_block, value_non_zero_block)?;
|
||||||
|
|
||||||
|
context.set_basic_block(value_zero_block);
|
||||||
|
//let deployer_call_result = context
|
||||||
|
// .build_call(
|
||||||
|
// context.llvm_runtime().far_call,
|
||||||
|
// crate::eravm::utils::external_call_arguments(
|
||||||
|
// context,
|
||||||
|
// abi_data,
|
||||||
|
// context.field_const(zkevm_opcode_defs::ADDRESS_CONTRACT_DEPLOYER.into()),
|
||||||
|
// vec![],
|
||||||
|
// None,
|
||||||
|
// )
|
||||||
|
// .as_slice(),
|
||||||
|
// "deployer_call_ordinary",
|
||||||
|
// )
|
||||||
|
// .expect("Always returns a value");
|
||||||
|
//context.build_store(deployer_call_result_pointer, deployer_call_result)?;
|
||||||
|
context.build_unconditional_branch(value_join_block);
|
||||||
|
|
||||||
|
context.set_basic_block(value_non_zero_block);
|
||||||
|
//let deployer_call_result = context
|
||||||
|
// .build_call(
|
||||||
|
// context.llvm_runtime().far_call,
|
||||||
|
// crate::eravm::utils::external_call_arguments(
|
||||||
|
// context,
|
||||||
|
// abi_data.as_basic_value_enum(),
|
||||||
|
// context.field_const(zkevm_opcode_defs::ADDRESS_MSG_VALUE.into()),
|
||||||
|
// vec![
|
||||||
|
// value,
|
||||||
|
// context.field_const(zkevm_opcode_defs::ADDRESS_CONTRACT_DEPLOYER.into()),
|
||||||
|
// context.field_const(u64::from(crate::eravm::r#const::SYSTEM_CALL_BIT)),
|
||||||
|
// ],
|
||||||
|
// None,
|
||||||
|
// )
|
||||||
|
// .as_slice(),
|
||||||
|
// "deployer_call_system",
|
||||||
|
// )
|
||||||
|
// .expect("Always returns a value");
|
||||||
|
//context.build_store(deployer_call_result_pointer, deployer_call_result)?;
|
||||||
|
context.build_unconditional_branch(value_join_block);
|
||||||
|
|
||||||
|
context.set_basic_block(value_join_block);
|
||||||
|
let result_abi_data_pointer = context.build_gep(
|
||||||
|
deployer_call_result_pointer,
|
||||||
|
&[
|
||||||
|
context.field_const(0),
|
||||||
|
context
|
||||||
|
.integer_type(revive_common::BIT_LENGTH_X32)
|
||||||
|
.const_zero(),
|
||||||
|
],
|
||||||
|
context
|
||||||
|
.llvm()
|
||||||
|
.ptr_type(AddressSpace::Generic.into())
|
||||||
|
.as_basic_type_enum(),
|
||||||
|
"deployer_call_result_abi_data_pointer",
|
||||||
|
);
|
||||||
|
let result_abi_data =
|
||||||
|
context.build_load(result_abi_data_pointer, "deployer_call_result_abi_data")?;
|
||||||
|
|
||||||
|
let result_status_code_pointer = context.build_gep(
|
||||||
|
deployer_call_result_pointer,
|
||||||
|
&[
|
||||||
|
context.field_const(0),
|
||||||
|
context
|
||||||
|
.integer_type(revive_common::BIT_LENGTH_X32)
|
||||||
|
.const_int(1, false),
|
||||||
|
],
|
||||||
|
context.bool_type().as_basic_type_enum(),
|
||||||
|
"contract_call_external_result_status_code_pointer",
|
||||||
|
);
|
||||||
|
let result_status_code_boolean = context
|
||||||
|
.build_load(
|
||||||
|
result_status_code_pointer,
|
||||||
|
"contract_call_external_result_status_code_boolean",
|
||||||
|
)?
|
||||||
|
.into_int_value();
|
||||||
|
|
||||||
|
context.build_conditional_branch(result_status_code_boolean, success_block, error_block)?;
|
||||||
|
|
||||||
|
context.set_basic_block(success_block);
|
||||||
|
let result_abi_data_pointer = Pointer::new(
|
||||||
|
context.field_type(),
|
||||||
|
AddressSpace::Generic,
|
||||||
|
result_abi_data.into_pointer_value(),
|
||||||
|
);
|
||||||
|
let address_or_status_code = context.build_load(
|
||||||
|
result_abi_data_pointer,
|
||||||
|
"deployer_call_address_or_status_code",
|
||||||
|
)?;
|
||||||
|
context.build_store(result_pointer, address_or_status_code)?;
|
||||||
|
context.build_unconditional_branch(context.current_function().borrow().return_block());
|
||||||
|
|
||||||
|
context.set_basic_block(error_block);
|
||||||
|
let result_abi_data_pointer = Pointer::new(
|
||||||
|
context.byte_type(),
|
||||||
|
AddressSpace::Generic,
|
||||||
|
result_abi_data.into_pointer_value(),
|
||||||
|
);
|
||||||
|
context.write_abi_pointer(
|
||||||
|
result_abi_data_pointer,
|
||||||
|
crate::eravm::GLOBAL_RETURN_DATA_POINTER,
|
||||||
|
);
|
||||||
|
context.write_abi_data_size(
|
||||||
|
result_abi_data_pointer,
|
||||||
|
crate::eravm::GLOBAL_RETURN_DATA_SIZE,
|
||||||
|
);
|
||||||
|
context.build_unconditional_branch(context.current_function().borrow().return_block());
|
||||||
|
|
||||||
|
context.set_basic_block(context.current_function().borrow().return_block());
|
||||||
|
let result = context.build_load(result_pointer, "deployer_call_result")?;
|
||||||
|
context.build_return(Some(&result));
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
+75
-87
@@ -1,18 +1,23 @@
|
|||||||
|
//!
|
||||||
//! The entry function.
|
//! The entry function.
|
||||||
|
//!
|
||||||
|
|
||||||
use inkwell::types::BasicType;
|
use inkwell::types::BasicType;
|
||||||
use inkwell::values::BasicValue;
|
|
||||||
|
|
||||||
use crate::polkavm::context::address_space::AddressSpace;
|
use crate::eravm::context::address_space::AddressSpace;
|
||||||
use crate::polkavm::context::function::runtime;
|
use crate::eravm::context::function::runtime::Runtime;
|
||||||
use crate::polkavm::context::Context;
|
use crate::eravm::context::Context;
|
||||||
use crate::polkavm::r#const::*;
|
use crate::eravm::Dependency;
|
||||||
use crate::polkavm::Dependency;
|
use crate::eravm::WriteLLVM;
|
||||||
use crate::polkavm::WriteLLVM;
|
use crate::EraVMPointer as Pointer;
|
||||||
|
|
||||||
|
///
|
||||||
/// The entry function.
|
/// The entry function.
|
||||||
|
///
|
||||||
/// The function is a wrapper managing the runtime and deploy code calling logic.
|
/// The function is a wrapper managing the runtime and deploy code calling logic.
|
||||||
|
///
|
||||||
/// Is a special runtime function that is only used by the front-end generated code.
|
/// Is a special runtime function that is only used by the front-end generated code.
|
||||||
|
///
|
||||||
#[derive(Debug, Default)]
|
#[derive(Debug, Default)]
|
||||||
pub struct Entry {}
|
pub struct Entry {}
|
||||||
|
|
||||||
@@ -23,11 +28,8 @@ impl Entry {
|
|||||||
/// The number of mandatory arguments.
|
/// The number of mandatory arguments.
|
||||||
pub const MANDATORY_ARGUMENTS_COUNT: usize = 2;
|
pub const MANDATORY_ARGUMENTS_COUNT: usize = 2;
|
||||||
|
|
||||||
/// Reserve 1mb for calldata.
|
/// Reserve 1kb for calldata.
|
||||||
pub const MAX_CALLDATA_SIZE: usize = 1024 * 1024;
|
pub const MAX_CALLDATA_SIZE: usize = 1024;
|
||||||
|
|
||||||
/// Reserve 1mb for returndata.
|
|
||||||
pub const MAX_RETURNDATA_SIZE: usize = 1024 * 1024;
|
|
||||||
|
|
||||||
/// Initializes the global variables.
|
/// Initializes the global variables.
|
||||||
/// The pointers are not initialized, because it's not possible to create a null pointer.
|
/// The pointers are not initialized, because it's not possible to create a null pointer.
|
||||||
@@ -37,91 +39,56 @@ impl Entry {
|
|||||||
{
|
{
|
||||||
let calldata_type = context.array_type(context.byte_type(), Self::MAX_CALLDATA_SIZE);
|
let calldata_type = context.array_type(context.byte_type(), Self::MAX_CALLDATA_SIZE);
|
||||||
context.set_global(
|
context.set_global(
|
||||||
crate::polkavm::GLOBAL_CALLDATA_POINTER,
|
crate::eravm::GLOBAL_CALLDATA_POINTER,
|
||||||
calldata_type,
|
calldata_type,
|
||||||
AddressSpace::Stack,
|
AddressSpace::Stack,
|
||||||
calldata_type.get_undef(),
|
calldata_type.get_undef(),
|
||||||
);
|
);
|
||||||
|
|
||||||
let returndata_type = context.array_type(context.byte_type(), Self::MAX_RETURNDATA_SIZE);
|
|
||||||
context.set_global(
|
context.set_global(
|
||||||
crate::polkavm::GLOBAL_RETURN_DATA_POINTER,
|
crate::eravm::GLOBAL_HEAP_MEMORY_POINTER,
|
||||||
returndata_type,
|
context.llvm().ptr_type(AddressSpace::Generic.into()),
|
||||||
AddressSpace::Stack,
|
|
||||||
returndata_type.get_undef(),
|
|
||||||
);
|
|
||||||
|
|
||||||
context.set_global(
|
|
||||||
crate::polkavm::GLOBAL_HEAP_MEMORY_POINTER,
|
|
||||||
context.llvm().ptr_type(AddressSpace::Heap.into()),
|
|
||||||
AddressSpace::Stack,
|
AddressSpace::Stack,
|
||||||
context.xlen_type().get_undef(),
|
context.xlen_type().get_undef(),
|
||||||
);
|
);
|
||||||
context.build_store(
|
context.build_store(
|
||||||
context
|
context
|
||||||
.get_global(crate::polkavm::GLOBAL_HEAP_MEMORY_POINTER)?
|
.get_global(crate::eravm::GLOBAL_HEAP_MEMORY_POINTER)?
|
||||||
.into(),
|
.into(),
|
||||||
context.build_sbrk(context.integer_const(crate::polkavm::XLEN, 0))?,
|
context.build_sbrk(context.integer_const(32, 0))?,
|
||||||
)?;
|
)?;
|
||||||
|
|
||||||
context.set_global(
|
context.set_global(
|
||||||
crate::polkavm::GLOBAL_CALLDATA_SIZE,
|
crate::eravm::GLOBAL_CALLDATA_SIZE,
|
||||||
context.word_type(),
|
context.field_type(),
|
||||||
AddressSpace::Stack,
|
AddressSpace::Stack,
|
||||||
context.word_undef(),
|
context.field_undef(),
|
||||||
);
|
);
|
||||||
context.set_global(
|
context.set_global(
|
||||||
crate::polkavm::GLOBAL_RETURN_DATA_SIZE,
|
crate::eravm::GLOBAL_RETURN_DATA_SIZE,
|
||||||
context.xlen_type(),
|
context.field_type(),
|
||||||
AddressSpace::Stack,
|
AddressSpace::Stack,
|
||||||
context.xlen_type().const_zero().as_basic_value_enum(),
|
context.field_const(0),
|
||||||
);
|
);
|
||||||
|
|
||||||
context.set_global(
|
context.set_global(
|
||||||
crate::polkavm::GLOBAL_CALL_FLAGS,
|
crate::eravm::GLOBAL_CALL_FLAGS,
|
||||||
context.word_type(),
|
context.field_type(),
|
||||||
AddressSpace::Stack,
|
AddressSpace::Stack,
|
||||||
context.word_const(0),
|
context.field_const(0),
|
||||||
);
|
);
|
||||||
|
|
||||||
let extra_abi_data_type = context.array_type(
|
let extra_abi_data_type = context.array_type(
|
||||||
context.word_type().as_basic_type_enum(),
|
context.field_type().as_basic_type_enum(),
|
||||||
crate::polkavm::EXTRA_ABI_DATA_SIZE,
|
crate::eravm::EXTRA_ABI_DATA_SIZE,
|
||||||
);
|
);
|
||||||
context.set_global(
|
context.set_global(
|
||||||
crate::polkavm::GLOBAL_EXTRA_ABI_DATA,
|
crate::eravm::GLOBAL_EXTRA_ABI_DATA,
|
||||||
extra_abi_data_type,
|
extra_abi_data_type,
|
||||||
AddressSpace::Stack,
|
AddressSpace::Stack,
|
||||||
extra_abi_data_type.const_zero(),
|
extra_abi_data_type.const_zero(),
|
||||||
);
|
);
|
||||||
|
|
||||||
context.set_global(
|
|
||||||
crate::polkavm::GLOBAL_I256_SIZE,
|
|
||||||
context.xlen_type(),
|
|
||||||
AddressSpace::Stack,
|
|
||||||
context.integer_const(
|
|
||||||
crate::polkavm::XLEN,
|
|
||||||
revive_common::BYTE_LENGTH_X64 as u64 * 4,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
context.set_global(
|
|
||||||
crate::polkavm::GLOBAL_I160_SIZE,
|
|
||||||
context.xlen_type(),
|
|
||||||
AddressSpace::Stack,
|
|
||||||
context.integer_const(
|
|
||||||
crate::polkavm::XLEN,
|
|
||||||
revive_common::BYTE_LENGTH_X64 as u64 * 2 + revive_common::BYTE_LENGTH_X32 as u64,
|
|
||||||
),
|
|
||||||
);
|
|
||||||
|
|
||||||
context.set_global(
|
|
||||||
crate::polkavm::GLOBAL_I64_SIZE,
|
|
||||||
context.xlen_type(),
|
|
||||||
AddressSpace::Stack,
|
|
||||||
context.integer_const(crate::polkavm::XLEN, revive_common::BYTE_LENGTH_X64 as u64),
|
|
||||||
);
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -132,7 +99,7 @@ impl Entry {
|
|||||||
D: Dependency + Clone,
|
D: Dependency + Clone,
|
||||||
{
|
{
|
||||||
let input_pointer = context
|
let input_pointer = context
|
||||||
.get_global(crate::polkavm::GLOBAL_CALLDATA_POINTER)?
|
.get_global(crate::eravm::GLOBAL_CALLDATA_POINTER)?
|
||||||
.value
|
.value
|
||||||
.as_pointer_value();
|
.as_pointer_value();
|
||||||
let input_pointer_casted = context.builder.build_ptr_to_int(
|
let input_pointer_casted = context.builder.build_ptr_to_int(
|
||||||
@@ -150,12 +117,13 @@ impl Entry {
|
|||||||
|
|
||||||
context.build_store(
|
context.build_store(
|
||||||
length_pointer,
|
length_pointer,
|
||||||
context.integer_const(crate::polkavm::XLEN, Self::MAX_CALLDATA_SIZE as u64),
|
context.integer_const(32, Self::MAX_CALLDATA_SIZE as u64),
|
||||||
)?;
|
)?;
|
||||||
context.build_runtime_call(
|
context.builder().build_call(
|
||||||
runtime_api::imports::INPUT,
|
context.module().get_function("input").expect("is declared"),
|
||||||
&[input_pointer_casted.into(), length_pointer_casted.into()],
|
&[input_pointer_casted.into(), length_pointer_casted.into()],
|
||||||
);
|
"call_seal_input",
|
||||||
|
)?;
|
||||||
|
|
||||||
// Store the calldata size
|
// Store the calldata size
|
||||||
let calldata_size = context
|
let calldata_size = context
|
||||||
@@ -163,16 +131,37 @@ impl Entry {
|
|||||||
.into_int_value();
|
.into_int_value();
|
||||||
let calldata_size_casted = context.builder().build_int_z_extend(
|
let calldata_size_casted = context.builder().build_int_z_extend(
|
||||||
calldata_size,
|
calldata_size,
|
||||||
context.word_type(),
|
context.field_type(),
|
||||||
"zext_input_len",
|
"zext_input_len",
|
||||||
)?;
|
)?;
|
||||||
context.set_global(
|
context.set_global(
|
||||||
crate::polkavm::GLOBAL_CALLDATA_SIZE,
|
crate::eravm::GLOBAL_CALLDATA_SIZE,
|
||||||
context.word_type(),
|
context.field_type(),
|
||||||
AddressSpace::Stack,
|
AddressSpace::Stack,
|
||||||
calldata_size_casted,
|
calldata_size_casted,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
// Store calldata end pointer
|
||||||
|
let input_pointer = Pointer::new(
|
||||||
|
input_pointer.get_type(),
|
||||||
|
AddressSpace::Generic,
|
||||||
|
input_pointer,
|
||||||
|
);
|
||||||
|
let calldata_end_pointer = context.build_gep(
|
||||||
|
input_pointer,
|
||||||
|
&[calldata_size_casted],
|
||||||
|
context
|
||||||
|
.llvm()
|
||||||
|
.ptr_type(AddressSpace::Generic.into())
|
||||||
|
.as_basic_type_enum(),
|
||||||
|
"return_data_abi_initializer",
|
||||||
|
);
|
||||||
|
context.write_abi_pointer(
|
||||||
|
calldata_end_pointer,
|
||||||
|
crate::eravm::GLOBAL_RETURN_DATA_POINTER,
|
||||||
|
);
|
||||||
|
context.write_abi_pointer(calldata_end_pointer, crate::eravm::GLOBAL_ACTIVE_POINTER);
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -188,7 +177,7 @@ impl Entry {
|
|||||||
.get_nth_param(Self::ARGUMENT_INDEX_CALL_FLAGS);
|
.get_nth_param(Self::ARGUMENT_INDEX_CALL_FLAGS);
|
||||||
|
|
||||||
context.set_global(
|
context.set_global(
|
||||||
crate::polkavm::GLOBAL_CALL_FLAGS,
|
crate::eravm::GLOBAL_CALL_FLAGS,
|
||||||
is_deploy.get_type(),
|
is_deploy.get_type(),
|
||||||
AddressSpace::Stack,
|
AddressSpace::Stack,
|
||||||
is_deploy.into_int_value(),
|
is_deploy.into_int_value(),
|
||||||
@@ -205,21 +194,21 @@ impl Entry {
|
|||||||
|
|
||||||
let deploy_code = context
|
let deploy_code = context
|
||||||
.functions
|
.functions
|
||||||
.get(runtime::FUNCTION_DEPLOY_CODE)
|
.get(Runtime::FUNCTION_DEPLOY_CODE)
|
||||||
.cloned()
|
.cloned()
|
||||||
.ok_or_else(|| anyhow::anyhow!("Contract deploy code not found"))?;
|
.ok_or_else(|| anyhow::anyhow!("Contract deploy code not found"))?;
|
||||||
let runtime_code = context
|
let runtime_code = context
|
||||||
.functions
|
.functions
|
||||||
.get(runtime::FUNCTION_RUNTIME_CODE)
|
.get(Runtime::FUNCTION_RUNTIME_CODE)
|
||||||
.cloned()
|
.cloned()
|
||||||
.ok_or_else(|| anyhow::anyhow!("Contract runtime code not found"))?;
|
.ok_or_else(|| anyhow::anyhow!("Contract runtime code not found"))?;
|
||||||
|
|
||||||
context.set_basic_block(deploy_code_call_block);
|
context.set_basic_block(deploy_code_call_block);
|
||||||
context.build_call(deploy_code.borrow().declaration, &[], "deploy_code_call");
|
context.build_invoke(deploy_code.borrow().declaration, &[], "deploy_code_call");
|
||||||
context.build_unconditional_branch(context.current_function().borrow().return_block());
|
context.build_unconditional_branch(context.current_function().borrow().return_block());
|
||||||
|
|
||||||
context.set_basic_block(runtime_code_call_block);
|
context.set_basic_block(runtime_code_call_block);
|
||||||
context.build_call(runtime_code.borrow().declaration, &[], "runtime_code_call");
|
context.build_invoke(runtime_code.borrow().declaration, &[], "runtime_code_call");
|
||||||
context.build_unconditional_branch(context.current_function().borrow().return_block());
|
context.build_unconditional_branch(context.current_function().borrow().return_block());
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
@@ -233,11 +222,10 @@ where
|
|||||||
fn declare(&mut self, context: &mut Context<D>) -> anyhow::Result<()> {
|
fn declare(&mut self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
let entry_arguments = vec![context.bool_type().as_basic_type_enum()];
|
let entry_arguments = vec![context.bool_type().as_basic_type_enum()];
|
||||||
let entry_function_type = context.function_type(entry_arguments, 0, false);
|
let entry_function_type = context.function_type(entry_arguments, 0, false);
|
||||||
context.add_function(runtime::FUNCTION_ENTRY, entry_function_type, 0, None)?;
|
context.add_function(Runtime::FUNCTION_ENTRY, entry_function_type, 0, None)?;
|
||||||
|
|
||||||
for symbol in runtime_api::exports::EXPORTS {
|
context.declare_extern_function("deploy")?;
|
||||||
context.declare_extern_function(symbol)?;
|
context.declare_extern_function("call")?;
|
||||||
}
|
|
||||||
|
|
||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
@@ -247,18 +235,18 @@ where
|
|||||||
/// The `entry` function loads calldata, sets globals and calls the runtime or deploy code.
|
/// The `entry` function loads calldata, sets globals and calls the runtime or deploy code.
|
||||||
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
let entry = context
|
let entry = context
|
||||||
.get_function(runtime::FUNCTION_ENTRY)
|
.get_function(Runtime::FUNCTION_ENTRY)
|
||||||
.expect("the entry function should already be declared")
|
.expect("the entry function should already be declared")
|
||||||
.borrow()
|
.borrow()
|
||||||
.declaration;
|
.declaration;
|
||||||
crate::PolkaVMFunction::set_attributes(
|
crate::EraVMFunction::set_attributes(
|
||||||
context.llvm(),
|
context.llvm(),
|
||||||
entry,
|
entry,
|
||||||
vec![crate::PolkaVMAttribute::NoReturn],
|
vec![crate::EraVMAttribute::NoReturn],
|
||||||
true,
|
true,
|
||||||
);
|
);
|
||||||
|
|
||||||
context.set_current_function(runtime_api::exports::DEPLOY)?;
|
context.set_current_function("deploy")?;
|
||||||
context.set_basic_block(context.current_function().borrow().entry_block());
|
context.set_basic_block(context.current_function().borrow().entry_block());
|
||||||
|
|
||||||
assert!(context
|
assert!(context
|
||||||
@@ -268,7 +256,7 @@ where
|
|||||||
context.set_basic_block(context.current_function().borrow().return_block);
|
context.set_basic_block(context.current_function().borrow().return_block);
|
||||||
context.build_unreachable();
|
context.build_unreachable();
|
||||||
|
|
||||||
context.set_current_function(runtime_api::exports::CALL)?;
|
context.set_current_function("call")?;
|
||||||
context.set_basic_block(context.current_function().borrow().entry_block());
|
context.set_basic_block(context.current_function().borrow().entry_block());
|
||||||
|
|
||||||
assert!(context
|
assert!(context
|
||||||
@@ -278,7 +266,7 @@ where
|
|||||||
context.set_basic_block(context.current_function().borrow().return_block);
|
context.set_basic_block(context.current_function().borrow().return_block);
|
||||||
context.build_unreachable();
|
context.build_unreachable();
|
||||||
|
|
||||||
context.set_current_function(runtime::FUNCTION_ENTRY)?;
|
context.set_current_function(Runtime::FUNCTION_ENTRY)?;
|
||||||
context.set_basic_block(context.current_function().borrow().entry_block());
|
context.set_basic_block(context.current_function().borrow().entry_block());
|
||||||
|
|
||||||
Self::initialize_globals(context)?;
|
Self::initialize_globals(context)?;
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
//!
|
||||||
|
//! The front-end runtime functions.
|
||||||
|
//!
|
||||||
|
|
||||||
|
pub mod default_call;
|
||||||
|
pub mod deploy_code;
|
||||||
|
pub mod deployer_call;
|
||||||
|
pub mod entry;
|
||||||
|
pub mod runtime_code;
|
||||||
|
|
||||||
|
use crate::eravm::context::address_space::AddressSpace;
|
||||||
|
use crate::eravm::context::function::declaration::Declaration as FunctionDeclaration;
|
||||||
|
use crate::eravm::context::Context;
|
||||||
|
use crate::eravm::Dependency;
|
||||||
|
use crate::eravm::WriteLLVM;
|
||||||
|
|
||||||
|
use self::default_call::DefaultCall;
|
||||||
|
use self::deployer_call::DeployerCall;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The front-end runtime functions.
|
||||||
|
///
|
||||||
|
#[derive(Debug, Clone)]
|
||||||
|
pub struct Runtime {
|
||||||
|
/// The address space where the calldata is allocated.
|
||||||
|
/// Solidity uses the ordinary heap. Vyper uses the auxiliary heap.
|
||||||
|
address_space: AddressSpace,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Runtime {
|
||||||
|
/// The main entry function name.
|
||||||
|
pub const FUNCTION_ENTRY: &'static str = "__entry";
|
||||||
|
|
||||||
|
/// The deploy code function name.
|
||||||
|
pub const FUNCTION_DEPLOY_CODE: &'static str = "__deploy";
|
||||||
|
|
||||||
|
/// The runtime code function name.
|
||||||
|
pub const FUNCTION_RUNTIME_CODE: &'static str = "__runtime";
|
||||||
|
|
||||||
|
///
|
||||||
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
|
pub fn new(address_space: AddressSpace) -> Self {
|
||||||
|
Self { address_space }
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the corresponding runtime function.
|
||||||
|
///
|
||||||
|
pub fn default_call<'ctx, D>(
|
||||||
|
context: &Context<'ctx, D>,
|
||||||
|
call_function: FunctionDeclaration<'ctx>,
|
||||||
|
) -> FunctionDeclaration<'ctx>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
context
|
||||||
|
.get_function(DefaultCall::name(call_function).as_str())
|
||||||
|
.expect("Always exists")
|
||||||
|
.borrow()
|
||||||
|
.declaration()
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the corresponding runtime function.
|
||||||
|
///
|
||||||
|
pub fn deployer_call<'ctx, D>(context: &Context<'ctx, D>) -> FunctionDeclaration<'ctx>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
context
|
||||||
|
.get_function(DeployerCall::FUNCTION_NAME)
|
||||||
|
.expect("Always exists")
|
||||||
|
.borrow()
|
||||||
|
.declaration()
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl<D> WriteLLVM<D> for Runtime
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
fn declare(&mut self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
|
//DefaultCall::new(context.llvm_runtime().far_call).declare(context)?;
|
||||||
|
DefaultCall::new(context.llvm_runtime().static_call).declare(context)?;
|
||||||
|
DefaultCall::new(context.llvm_runtime().delegate_call).declare(context)?;
|
||||||
|
DeployerCall::new(self.address_space).declare(context)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
|
||||||
|
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
|
//DefaultCall::new(context.llvm_runtime().far_call).into_llvm(context)?;
|
||||||
|
DefaultCall::new(context.llvm_runtime().static_call).into_llvm(context)?;
|
||||||
|
DefaultCall::new(context.llvm_runtime().delegate_call).into_llvm(context)?;
|
||||||
|
DeployerCall::new(self.address_space).into_llvm(context)?;
|
||||||
|
|
||||||
|
Ok(())
|
||||||
|
}
|
||||||
|
}
|
||||||
+14
-7
@@ -1,15 +1,20 @@
|
|||||||
|
//!
|
||||||
//! The runtime code function.
|
//! The runtime code function.
|
||||||
|
//!
|
||||||
|
|
||||||
use std::marker::PhantomData;
|
use std::marker::PhantomData;
|
||||||
|
|
||||||
use crate::polkavm::context::code_type::CodeType;
|
use crate::eravm::context::code_type::CodeType;
|
||||||
use crate::polkavm::context::function::runtime;
|
use crate::eravm::context::function::runtime::Runtime;
|
||||||
use crate::polkavm::context::Context;
|
use crate::eravm::context::Context;
|
||||||
use crate::polkavm::Dependency;
|
use crate::eravm::Dependency;
|
||||||
use crate::polkavm::WriteLLVM;
|
use crate::eravm::WriteLLVM;
|
||||||
|
|
||||||
|
///
|
||||||
/// The runtime code function.
|
/// The runtime code function.
|
||||||
|
///
|
||||||
/// Is a special function that is only used by the front-end generated code.
|
/// Is a special function that is only used by the front-end generated code.
|
||||||
|
///
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct RuntimeCode<B, D>
|
pub struct RuntimeCode<B, D>
|
||||||
where
|
where
|
||||||
@@ -27,7 +32,9 @@ where
|
|||||||
B: WriteLLVM<D>,
|
B: WriteLLVM<D>,
|
||||||
D: Dependency + Clone,
|
D: Dependency + Clone,
|
||||||
{
|
{
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(inner: B) -> Self {
|
pub fn new(inner: B) -> Self {
|
||||||
Self {
|
Self {
|
||||||
inner,
|
inner,
|
||||||
@@ -45,7 +52,7 @@ where
|
|||||||
let function_type =
|
let function_type =
|
||||||
context.function_type::<inkwell::types::BasicTypeEnum>(vec![], 0, false);
|
context.function_type::<inkwell::types::BasicTypeEnum>(vec![], 0, false);
|
||||||
context.add_function(
|
context.add_function(
|
||||||
runtime::FUNCTION_RUNTIME_CODE,
|
Runtime::FUNCTION_RUNTIME_CODE,
|
||||||
function_type,
|
function_type,
|
||||||
0,
|
0,
|
||||||
Some(inkwell::module::Linkage::External),
|
Some(inkwell::module::Linkage::External),
|
||||||
@@ -55,7 +62,7 @@ where
|
|||||||
}
|
}
|
||||||
|
|
||||||
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
fn into_llvm(self, context: &mut Context<D>) -> anyhow::Result<()> {
|
||||||
context.set_current_function(runtime::FUNCTION_RUNTIME_CODE)?;
|
context.set_current_function(Runtime::FUNCTION_RUNTIME_CODE)?;
|
||||||
|
|
||||||
context.set_basic_block(context.current_function().borrow().entry_block());
|
context.set_basic_block(context.current_function().borrow().entry_block());
|
||||||
context.set_code_type(CodeType::Runtime);
|
context.set_code_type(CodeType::Runtime);
|
||||||
@@ -0,0 +1,52 @@
|
|||||||
|
//!
|
||||||
|
//! The LLVM function Vyper data.
|
||||||
|
//!
|
||||||
|
|
||||||
|
use std::collections::HashMap;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The LLVM function Vyper data.
|
||||||
|
///
|
||||||
|
/// Describes some data that is only relevant to Vyper.
|
||||||
|
///
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct VyperData {
|
||||||
|
/// The block-local variables. They are still allocated at the beginning of the function,
|
||||||
|
/// but their parent block must be known in order to pass the implicit arguments thereto.
|
||||||
|
/// Is only used by the Vyper LLL IR compiler.
|
||||||
|
label_arguments: HashMap<String, Vec<String>>,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl Default for VyperData {
|
||||||
|
fn default() -> Self {
|
||||||
|
Self {
|
||||||
|
label_arguments: HashMap::with_capacity(Self::LABEL_ARGUMENTS_HASHMAP_INITIAL_CAPACITY),
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
impl VyperData {
|
||||||
|
/// The label arguments hashmap default capacity.
|
||||||
|
const LABEL_ARGUMENTS_HASHMAP_INITIAL_CAPACITY: usize = 16;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
|
pub fn new() -> Self {
|
||||||
|
Self::default()
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the list of a Vyper label arguments.
|
||||||
|
///
|
||||||
|
pub fn label_arguments(&self, label_name: &str) -> Option<Vec<String>> {
|
||||||
|
self.label_arguments.get(label_name).cloned()
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Inserts arguments for the specified label.
|
||||||
|
///
|
||||||
|
pub fn insert_label_arguments(&mut self, label_name: String, arguments: Vec<String>) {
|
||||||
|
self.label_arguments.insert(label_name, arguments);
|
||||||
|
}
|
||||||
|
}
|
||||||
+11
@@ -1,11 +1,16 @@
|
|||||||
|
//!
|
||||||
//! The LLVM function Yul data.
|
//! The LLVM function Yul data.
|
||||||
|
//!
|
||||||
|
|
||||||
use std::collections::HashMap;
|
use std::collections::HashMap;
|
||||||
|
|
||||||
use num::BigUint;
|
use num::BigUint;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM function Yul data.
|
/// The LLVM function Yul data.
|
||||||
|
///
|
||||||
/// Describes some data that is only relevant to Yul.
|
/// Describes some data that is only relevant to Yul.
|
||||||
|
///
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct YulData {
|
pub struct YulData {
|
||||||
/// The constants saved to variables. Used for peculiar cases like call simulation.
|
/// The constants saved to variables. Used for peculiar cases like call simulation.
|
||||||
@@ -25,17 +30,23 @@ impl YulData {
|
|||||||
/// The constants hashmap default capacity.
|
/// The constants hashmap default capacity.
|
||||||
const CONSTANTS_HASHMAP_INITIAL_CAPACITY: usize = 16;
|
const CONSTANTS_HASHMAP_INITIAL_CAPACITY: usize = 16;
|
||||||
|
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self::default()
|
Self::default()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns a constant if it has been saved.
|
/// Returns a constant if it has been saved.
|
||||||
|
///
|
||||||
pub fn get_constant(&self, name: &str) -> Option<BigUint> {
|
pub fn get_constant(&self, name: &str) -> Option<BigUint> {
|
||||||
self.constants.get(name).cloned()
|
self.constants.get(name).cloned()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Saves a constant detected with the partial constant propagation.
|
/// Saves a constant detected with the partial constant propagation.
|
||||||
|
///
|
||||||
pub fn insert_constant(&mut self, name: String, value: BigUint) {
|
pub fn insert_constant(&mut self, name: String, value: BigUint) {
|
||||||
self.constants.insert(name, value);
|
self.constants.insert(name, value);
|
||||||
}
|
}
|
||||||
+13
-4
@@ -1,13 +1,17 @@
|
|||||||
|
//!
|
||||||
//! The LLVM global value.
|
//! The LLVM global value.
|
||||||
|
//!
|
||||||
|
|
||||||
use inkwell::types::BasicType;
|
use inkwell::types::BasicType;
|
||||||
use inkwell::values::BasicValue;
|
use inkwell::values::BasicValue;
|
||||||
|
|
||||||
use crate::polkavm::context::address_space::AddressSpace;
|
use crate::eravm::context::address_space::AddressSpace;
|
||||||
use crate::polkavm::context::Context;
|
use crate::eravm::context::Context;
|
||||||
use crate::PolkaVMDependency;
|
use crate::EraVMDependency;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM global value.
|
/// The LLVM global value.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
pub struct Global<'ctx> {
|
pub struct Global<'ctx> {
|
||||||
/// The global type.
|
/// The global type.
|
||||||
@@ -17,7 +21,9 @@ pub struct Global<'ctx> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> Global<'ctx> {
|
impl<'ctx> Global<'ctx> {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new<D, T, V>(
|
pub fn new<D, T, V>(
|
||||||
context: &mut Context<'ctx, D>,
|
context: &mut Context<'ctx, D>,
|
||||||
r#type: T,
|
r#type: T,
|
||||||
@@ -26,7 +32,7 @@ impl<'ctx> Global<'ctx> {
|
|||||||
name: &str,
|
name: &str,
|
||||||
) -> Self
|
) -> Self
|
||||||
where
|
where
|
||||||
D: PolkaVMDependency + Clone,
|
D: EraVMDependency + Clone,
|
||||||
T: BasicType<'ctx>,
|
T: BasicType<'ctx>,
|
||||||
V: BasicValue<'ctx>,
|
V: BasicValue<'ctx>,
|
||||||
{
|
{
|
||||||
@@ -42,6 +48,9 @@ impl<'ctx> Global<'ctx> {
|
|||||||
.value
|
.value
|
||||||
.set_visibility(inkwell::GlobalVisibility::Default);
|
.set_visibility(inkwell::GlobalVisibility::Default);
|
||||||
global.value.set_externally_initialized(false);
|
global.value.set_externally_initialized(false);
|
||||||
|
if let AddressSpace::Code = address_space {
|
||||||
|
global.value.set_constant(true);
|
||||||
|
}
|
||||||
if !r#type.is_pointer_type() {
|
if !r#type.is_pointer_type() {
|
||||||
global.value.set_initializer(&initializer);
|
global.value.set_initializer(&initializer);
|
||||||
} else {
|
} else {
|
||||||
+6
@@ -1,6 +1,10 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator loop.
|
//! The LLVM IR generator loop.
|
||||||
|
//!
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM IR generator loop.
|
/// The LLVM IR generator loop.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone)]
|
#[derive(Debug, Clone)]
|
||||||
pub struct Loop<'ctx> {
|
pub struct Loop<'ctx> {
|
||||||
/// The loop current block.
|
/// The loop current block.
|
||||||
@@ -12,7 +16,9 @@ pub struct Loop<'ctx> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> Loop<'ctx> {
|
impl<'ctx> Loop<'ctx> {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(
|
pub fn new(
|
||||||
body_block: inkwell::basic_block::BasicBlock<'ctx>,
|
body_block: inkwell::basic_block::BasicBlock<'ctx>,
|
||||||
continue_block: inkwell::basic_block::BasicBlock<'ctx>,
|
continue_block: inkwell::basic_block::BasicBlock<'ctx>,
|
||||||
+602
-249
File diff suppressed because it is too large
Load Diff
+18
-17
@@ -1,13 +1,17 @@
|
|||||||
|
//!
|
||||||
//! The LLVM pointer.
|
//! The LLVM pointer.
|
||||||
|
//!
|
||||||
|
|
||||||
use inkwell::types::BasicType;
|
use inkwell::types::BasicType;
|
||||||
|
|
||||||
use crate::polkavm::context::address_space::AddressSpace;
|
use crate::eravm::context::address_space::AddressSpace;
|
||||||
use crate::polkavm::context::global::Global;
|
use crate::eravm::context::global::Global;
|
||||||
use crate::polkavm::context::Context;
|
use crate::eravm::context::Context;
|
||||||
use crate::polkavm::Dependency;
|
use crate::eravm::Dependency;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM pointer.
|
/// The LLVM pointer.
|
||||||
|
///
|
||||||
#[derive(Debug, Clone, Copy)]
|
#[derive(Debug, Clone, Copy)]
|
||||||
pub struct Pointer<'ctx> {
|
pub struct Pointer<'ctx> {
|
||||||
/// The pointee type.
|
/// The pointee type.
|
||||||
@@ -19,7 +23,9 @@ pub struct Pointer<'ctx> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl<'ctx> Pointer<'ctx> {
|
impl<'ctx> Pointer<'ctx> {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new<T>(
|
pub fn new<T>(
|
||||||
r#type: T,
|
r#type: T,
|
||||||
address_space: AddressSpace,
|
address_space: AddressSpace,
|
||||||
@@ -35,7 +41,9 @@ impl<'ctx> Pointer<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Wraps a 256-bit primitive type pointer.
|
/// Wraps a 256-bit primitive type pointer.
|
||||||
|
///
|
||||||
pub fn new_stack_field<D>(
|
pub fn new_stack_field<D>(
|
||||||
context: &Context<'ctx, D>,
|
context: &Context<'ctx, D>,
|
||||||
value: inkwell::values::PointerValue<'ctx>,
|
value: inkwell::values::PointerValue<'ctx>,
|
||||||
@@ -44,13 +52,15 @@ impl<'ctx> Pointer<'ctx> {
|
|||||||
D: Dependency + Clone,
|
D: Dependency + Clone,
|
||||||
{
|
{
|
||||||
Self {
|
Self {
|
||||||
r#type: context.word_type().as_basic_type_enum(),
|
r#type: context.field_type().as_basic_type_enum(),
|
||||||
address_space: AddressSpace::Stack,
|
address_space: AddressSpace::Stack,
|
||||||
value,
|
value,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Creates a new pointer with the specified `offset`.
|
/// Creates a new pointer with the specified `offset`.
|
||||||
|
///
|
||||||
pub fn new_with_offset<D, T>(
|
pub fn new_with_offset<D, T>(
|
||||||
context: &Context<'ctx, D>,
|
context: &Context<'ctx, D>,
|
||||||
address_space: AddressSpace,
|
address_space: AddressSpace,
|
||||||
@@ -68,7 +78,7 @@ impl<'ctx> Pointer<'ctx> {
|
|||||||
"Stack pointers cannot be addressed"
|
"Stack pointers cannot be addressed"
|
||||||
);
|
);
|
||||||
|
|
||||||
let offset = context.safe_truncate_int_to_xlen(offset).unwrap();
|
let offset = context.safe_truncate_int_to_i32(offset).unwrap();
|
||||||
let value = context
|
let value = context
|
||||||
.builder
|
.builder
|
||||||
.build_int_to_ptr(offset, context.llvm().ptr_type(address_space.into()), name)
|
.build_int_to_ptr(offset, context.llvm().ptr_type(address_space.into()), name)
|
||||||
@@ -76,7 +86,9 @@ impl<'ctx> Pointer<'ctx> {
|
|||||||
Self::new(r#type, address_space, value)
|
Self::new(r#type, address_space, value)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Casts the pointer into another type.
|
/// Casts the pointer into another type.
|
||||||
|
///
|
||||||
pub fn cast<T>(self, r#type: T) -> Self
|
pub fn cast<T>(self, r#type: T) -> Self
|
||||||
where
|
where
|
||||||
T: BasicType<'ctx>,
|
T: BasicType<'ctx>,
|
||||||
@@ -88,17 +100,6 @@ impl<'ctx> Pointer<'ctx> {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Cast this pointer to a register sized integer value.
|
|
||||||
pub fn to_int<D>(&self, context: &Context<'ctx, D>) -> inkwell::values::IntValue<'ctx>
|
|
||||||
where
|
|
||||||
D: Dependency + Clone,
|
|
||||||
{
|
|
||||||
context
|
|
||||||
.builder()
|
|
||||||
.build_ptr_to_int(self.value, context.xlen_type(), "ptr_to_xlen")
|
|
||||||
.expect("we should be positioned")
|
|
||||||
}
|
|
||||||
|
|
||||||
pub fn address_space_cast<D>(
|
pub fn address_space_cast<D>(
|
||||||
self,
|
self,
|
||||||
context: &Context<'ctx, D>,
|
context: &Context<'ctx, D>,
|
||||||
+17
-2
@@ -1,9 +1,14 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator Solidity data.
|
//! The LLVM IR generator Solidity data.
|
||||||
|
//!
|
||||||
|
|
||||||
use std::collections::BTreeMap;
|
use std::collections::BTreeMap;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM IR generator Solidity data.
|
/// The LLVM IR generator Solidity data.
|
||||||
|
///
|
||||||
/// Describes some data that is only relevant to Solidity.
|
/// Describes some data that is only relevant to Solidity.
|
||||||
|
///
|
||||||
#[derive(Debug, Default)]
|
#[derive(Debug, Default)]
|
||||||
pub struct SolidityData {
|
pub struct SolidityData {
|
||||||
/// The immutables identifier-to-offset mapping. Is only used by Solidity due to
|
/// The immutables identifier-to-offset mapping. Is only used by Solidity due to
|
||||||
@@ -12,29 +17,39 @@ pub struct SolidityData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl SolidityData {
|
impl SolidityData {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new() -> Self {
|
pub fn new() -> Self {
|
||||||
Self::default()
|
Self::default()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Returns the current number of immutables values in the contract.
|
/// Returns the current number of immutables values in the contract.
|
||||||
|
///
|
||||||
pub fn immutables_size(&self) -> usize {
|
pub fn immutables_size(&self) -> usize {
|
||||||
self.immutables.len() * revive_common::BYTE_LENGTH_WORD
|
self.immutables.len() * revive_common::BYTE_LENGTH_FIELD
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Allocates memory for an immutable value in the auxiliary heap.
|
/// Allocates memory for an immutable value in the auxiliary heap.
|
||||||
|
///
|
||||||
/// If the identifier is already known, just returns its offset.
|
/// If the identifier is already known, just returns its offset.
|
||||||
|
///
|
||||||
pub fn allocate_immutable(&mut self, identifier: &str) -> usize {
|
pub fn allocate_immutable(&mut self, identifier: &str) -> usize {
|
||||||
let number_of_elements = self.immutables.len();
|
let number_of_elements = self.immutables.len();
|
||||||
let new_offset = number_of_elements * revive_common::BYTE_LENGTH_WORD;
|
let new_offset = number_of_elements * revive_common::BYTE_LENGTH_FIELD;
|
||||||
*self
|
*self
|
||||||
.immutables
|
.immutables
|
||||||
.entry(identifier.to_owned())
|
.entry(identifier.to_owned())
|
||||||
.or_insert(new_offset)
|
.or_insert(new_offset)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Gets the offset of the immutable value.
|
/// Gets the offset of the immutable value.
|
||||||
|
///
|
||||||
/// If the value is not yet allocated, then it is done forcibly.
|
/// If the value is not yet allocated, then it is done forcibly.
|
||||||
|
///
|
||||||
pub fn get_or_allocate_immutable(&mut self, identifier: &str) -> usize {
|
pub fn get_or_allocate_immutable(&mut self, identifier: &str) -> usize {
|
||||||
match self.immutables.get(identifier).copied() {
|
match self.immutables.get(identifier).copied() {
|
||||||
Some(offset) => offset,
|
Some(offset) => offset,
|
||||||
+17
-15
@@ -1,16 +1,18 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator context tests.
|
//! The LLVM IR generator context tests.
|
||||||
|
//!
|
||||||
|
|
||||||
|
use crate::eravm::context::attribute::Attribute;
|
||||||
|
use crate::eravm::context::Context;
|
||||||
|
use crate::eravm::DummyDependency;
|
||||||
use crate::optimizer::settings::Settings as OptimizerSettings;
|
use crate::optimizer::settings::Settings as OptimizerSettings;
|
||||||
use crate::optimizer::Optimizer;
|
use crate::optimizer::Optimizer;
|
||||||
use crate::polkavm::context::attribute::Attribute;
|
|
||||||
use crate::polkavm::context::Context;
|
|
||||||
use crate::polkavm::DummyDependency;
|
|
||||||
|
|
||||||
pub fn create_context(
|
pub fn create_context(
|
||||||
llvm: &inkwell::context::Context,
|
llvm: &inkwell::context::Context,
|
||||||
optimizer_settings: OptimizerSettings,
|
optimizer_settings: OptimizerSettings,
|
||||||
) -> Context<DummyDependency> {
|
) -> Context<DummyDependency> {
|
||||||
crate::polkavm::initialize_target();
|
crate::eravm::initialize_target();
|
||||||
|
|
||||||
let module = llvm.create_module("test");
|
let module = llvm.create_module("test");
|
||||||
let optimizer = Optimizer::new(optimizer_settings);
|
let optimizer = Optimizer::new(optimizer_settings);
|
||||||
@@ -27,13 +29,13 @@ pub fn check_attribute_null_pointer_is_invalid() {
|
|||||||
.add_function(
|
.add_function(
|
||||||
"test",
|
"test",
|
||||||
context
|
context
|
||||||
.word_type()
|
.field_type()
|
||||||
.fn_type(&[context.word_type().into()], false),
|
.fn_type(&[context.field_type().into()], false),
|
||||||
1,
|
1,
|
||||||
Some(inkwell::module::Linkage::External),
|
Some(inkwell::module::Linkage::External),
|
||||||
)
|
)
|
||||||
.expect("Failed to add function");
|
.expect("Failed to add function");
|
||||||
assert!(!function
|
assert!(function
|
||||||
.borrow()
|
.borrow()
|
||||||
.declaration()
|
.declaration()
|
||||||
.value
|
.value
|
||||||
@@ -50,8 +52,8 @@ pub fn check_attribute_optimize_for_size_mode_3() {
|
|||||||
.add_function(
|
.add_function(
|
||||||
"test",
|
"test",
|
||||||
context
|
context
|
||||||
.word_type()
|
.field_type()
|
||||||
.fn_type(&[context.word_type().into()], false),
|
.fn_type(&[context.field_type().into()], false),
|
||||||
1,
|
1,
|
||||||
Some(inkwell::module::Linkage::External),
|
Some(inkwell::module::Linkage::External),
|
||||||
)
|
)
|
||||||
@@ -73,8 +75,8 @@ pub fn check_attribute_optimize_for_size_mode_z() {
|
|||||||
.add_function(
|
.add_function(
|
||||||
"test",
|
"test",
|
||||||
context
|
context
|
||||||
.word_type()
|
.field_type()
|
||||||
.fn_type(&[context.word_type().into()], false),
|
.fn_type(&[context.field_type().into()], false),
|
||||||
1,
|
1,
|
||||||
Some(inkwell::module::Linkage::External),
|
Some(inkwell::module::Linkage::External),
|
||||||
)
|
)
|
||||||
@@ -96,8 +98,8 @@ pub fn check_attribute_min_size_mode_3() {
|
|||||||
.add_function(
|
.add_function(
|
||||||
"test",
|
"test",
|
||||||
context
|
context
|
||||||
.word_type()
|
.field_type()
|
||||||
.fn_type(&[context.word_type().into()], false),
|
.fn_type(&[context.field_type().into()], false),
|
||||||
1,
|
1,
|
||||||
Some(inkwell::module::Linkage::External),
|
Some(inkwell::module::Linkage::External),
|
||||||
)
|
)
|
||||||
@@ -119,8 +121,8 @@ pub fn check_attribute_min_size_mode_z() {
|
|||||||
.add_function(
|
.add_function(
|
||||||
"test",
|
"test",
|
||||||
context
|
context
|
||||||
.word_type()
|
.field_type()
|
||||||
.fn_type(&[context.word_type().into()], false),
|
.fn_type(&[context.field_type().into()], false),
|
||||||
1,
|
1,
|
||||||
Some(inkwell::module::Linkage::External),
|
Some(inkwell::module::Linkage::External),
|
||||||
)
|
)
|
||||||
@@ -0,0 +1,50 @@
|
|||||||
|
//!
|
||||||
|
//! The LLVM IR generator Vyper data.
|
||||||
|
//!
|
||||||
|
|
||||||
|
///
|
||||||
|
/// The LLVM IR generator Vyper data.
|
||||||
|
///
|
||||||
|
/// Describes some data that is only relevant to Vyper.
|
||||||
|
///
|
||||||
|
#[derive(Debug)]
|
||||||
|
pub struct VyperData {
|
||||||
|
/// The immutables size tracker. Stores the size in bytes.
|
||||||
|
/// Does not take into account the size of the indexes.
|
||||||
|
immutables_size: usize,
|
||||||
|
/// Whether the contract forwarder has been used.
|
||||||
|
is_forwarder_used: bool,
|
||||||
|
}
|
||||||
|
|
||||||
|
impl VyperData {
|
||||||
|
///
|
||||||
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
|
pub fn new(immutables_size: usize, is_forwarder_used: bool) -> Self {
|
||||||
|
Self {
|
||||||
|
immutables_size,
|
||||||
|
is_forwarder_used,
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the size of the immutables data of the contract.
|
||||||
|
///
|
||||||
|
pub fn immutables_size(&self) -> usize {
|
||||||
|
self.immutables_size
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Sets the forwarder usage flag.
|
||||||
|
///
|
||||||
|
pub fn set_is_forwarder_used(&mut self) {
|
||||||
|
self.is_forwarder_used = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Returns the forwarder usage flag.
|
||||||
|
///
|
||||||
|
pub fn is_forwarder_used(&self) -> bool {
|
||||||
|
self.is_forwarder_used
|
||||||
|
}
|
||||||
|
}
|
||||||
+15
@@ -1,11 +1,16 @@
|
|||||||
|
//!
|
||||||
//! The LLVM IR generator Yul data.
|
//! The LLVM IR generator Yul data.
|
||||||
|
//!
|
||||||
|
|
||||||
use std::collections::BTreeMap;
|
use std::collections::BTreeMap;
|
||||||
|
|
||||||
use num::Zero;
|
use num::Zero;
|
||||||
|
|
||||||
|
///
|
||||||
/// The LLVM IR generator Yul data.
|
/// The LLVM IR generator Yul data.
|
||||||
|
///
|
||||||
/// Describes some data that is only relevant to Yul.
|
/// Describes some data that is only relevant to Yul.
|
||||||
|
///
|
||||||
#[derive(Debug, Default)]
|
#[derive(Debug, Default)]
|
||||||
pub struct YulData {
|
pub struct YulData {
|
||||||
/// The system mode flag.
|
/// The system mode flag.
|
||||||
@@ -17,7 +22,9 @@ pub struct YulData {
|
|||||||
}
|
}
|
||||||
|
|
||||||
impl YulData {
|
impl YulData {
|
||||||
|
///
|
||||||
/// A shortcut constructor.
|
/// A shortcut constructor.
|
||||||
|
///
|
||||||
pub fn new(is_system_mode: bool) -> Self {
|
pub fn new(is_system_mode: bool) -> Self {
|
||||||
Self {
|
Self {
|
||||||
is_system_mode,
|
is_system_mode,
|
||||||
@@ -25,12 +32,16 @@ impl YulData {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Whether the system mode is enabled.
|
/// Whether the system mode is enabled.
|
||||||
|
///
|
||||||
pub fn is_system_mode(&self) -> bool {
|
pub fn is_system_mode(&self) -> bool {
|
||||||
self.is_system_mode
|
self.is_system_mode
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Declares a temporary constant array representation.
|
/// Declares a temporary constant array representation.
|
||||||
|
///
|
||||||
pub fn const_array_declare(&mut self, index: u8, size: u16) -> anyhow::Result<()> {
|
pub fn const_array_declare(&mut self, index: u8, size: u16) -> anyhow::Result<()> {
|
||||||
if self.const_arrays.contains_key(&index) {
|
if self.const_arrays.contains_key(&index) {
|
||||||
anyhow::bail!(
|
anyhow::bail!(
|
||||||
@@ -45,7 +56,9 @@ impl YulData {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Sets a value in the constant array representation.
|
/// Sets a value in the constant array representation.
|
||||||
|
///
|
||||||
pub fn const_array_set(
|
pub fn const_array_set(
|
||||||
&mut self,
|
&mut self,
|
||||||
index: u8,
|
index: u8,
|
||||||
@@ -68,7 +81,9 @@ impl YulData {
|
|||||||
Ok(())
|
Ok(())
|
||||||
}
|
}
|
||||||
|
|
||||||
|
///
|
||||||
/// Finalizes the constant array declaration.
|
/// Finalizes the constant array declaration.
|
||||||
|
///
|
||||||
pub fn const_array_take(&mut self, index: u8) -> anyhow::Result<Vec<num::BigUint>> {
|
pub fn const_array_take(&mut self, index: u8) -> anyhow::Result<Vec<num::BigUint>> {
|
||||||
self.const_arrays.remove(&index).ok_or_else(|| {
|
self.const_arrays.remove(&index).ok_or_else(|| {
|
||||||
anyhow::anyhow!("The constant array with index {} is not declared", index)
|
anyhow::anyhow!("The constant array with index {} is not declared", index)
|
||||||
@@ -0,0 +1,149 @@
|
|||||||
|
//!
|
||||||
|
//! Translates the arithmetic operations.
|
||||||
|
//!
|
||||||
|
|
||||||
|
use inkwell::values::BasicValue;
|
||||||
|
|
||||||
|
use crate::eravm::context::Context;
|
||||||
|
use crate::eravm::Dependency;
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Translates the arithmetic addition.
|
||||||
|
///
|
||||||
|
pub fn addition<'ctx, D>(
|
||||||
|
context: &mut Context<'ctx, D>,
|
||||||
|
operand_1: inkwell::values::IntValue<'ctx>,
|
||||||
|
operand_2: inkwell::values::IntValue<'ctx>,
|
||||||
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
Ok(context
|
||||||
|
.builder()
|
||||||
|
.build_int_add(operand_1, operand_2, "addition_result")?
|
||||||
|
.as_basic_value_enum())
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Translates the arithmetic subtraction.
|
||||||
|
///
|
||||||
|
pub fn subtraction<'ctx, D>(
|
||||||
|
context: &mut Context<'ctx, D>,
|
||||||
|
operand_1: inkwell::values::IntValue<'ctx>,
|
||||||
|
operand_2: inkwell::values::IntValue<'ctx>,
|
||||||
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
Ok(context
|
||||||
|
.builder()
|
||||||
|
.build_int_sub(operand_1, operand_2, "subtraction_result")?
|
||||||
|
.as_basic_value_enum())
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Translates the arithmetic multiplication.
|
||||||
|
///
|
||||||
|
pub fn multiplication<'ctx, D>(
|
||||||
|
context: &mut Context<'ctx, D>,
|
||||||
|
operand_1: inkwell::values::IntValue<'ctx>,
|
||||||
|
operand_2: inkwell::values::IntValue<'ctx>,
|
||||||
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
Ok(context
|
||||||
|
.builder()
|
||||||
|
.build_int_mul(operand_1, operand_2, "multiplication_result")?
|
||||||
|
.as_basic_value_enum())
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Translates the arithmetic division.
|
||||||
|
///
|
||||||
|
pub fn division<'ctx, D>(
|
||||||
|
context: &mut Context<'ctx, D>,
|
||||||
|
operand_1: inkwell::values::IntValue<'ctx>,
|
||||||
|
operand_2: inkwell::values::IntValue<'ctx>,
|
||||||
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
Ok(context
|
||||||
|
.builder()
|
||||||
|
.build_int_unsigned_div(operand_1, operand_2, "udiv")?
|
||||||
|
.into())
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Translates the arithmetic remainder.
|
||||||
|
///
|
||||||
|
pub fn remainder<'ctx, D>(
|
||||||
|
context: &mut Context<'ctx, D>,
|
||||||
|
operand_1: inkwell::values::IntValue<'ctx>,
|
||||||
|
operand_2: inkwell::values::IntValue<'ctx>,
|
||||||
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
Ok(context
|
||||||
|
.build_call(
|
||||||
|
context.llvm_runtime().r#mod,
|
||||||
|
&[
|
||||||
|
operand_1.as_basic_value_enum(),
|
||||||
|
operand_2.as_basic_value_enum(),
|
||||||
|
],
|
||||||
|
"add_mod_call",
|
||||||
|
)
|
||||||
|
.expect("Always exists"))
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Translates the signed arithmetic division.
|
||||||
|
///
|
||||||
|
/// Two differences between the EVM and LLVM IR:
|
||||||
|
/// 1. In case of division by zero, 0 is returned.
|
||||||
|
/// 2. In case of overflow, the first argument is returned.
|
||||||
|
///
|
||||||
|
pub fn division_signed<'ctx, D>(
|
||||||
|
context: &mut Context<'ctx, D>,
|
||||||
|
operand_1: inkwell::values::IntValue<'ctx>,
|
||||||
|
operand_2: inkwell::values::IntValue<'ctx>,
|
||||||
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
Ok(context
|
||||||
|
.build_call(
|
||||||
|
context.llvm_runtime().sdiv,
|
||||||
|
&[
|
||||||
|
operand_1.as_basic_value_enum(),
|
||||||
|
operand_2.as_basic_value_enum(),
|
||||||
|
],
|
||||||
|
"add_mod_call",
|
||||||
|
)
|
||||||
|
.expect("Always exists"))
|
||||||
|
}
|
||||||
|
|
||||||
|
///
|
||||||
|
/// Translates the signed arithmetic remainder.
|
||||||
|
///
|
||||||
|
pub fn remainder_signed<'ctx, D>(
|
||||||
|
context: &mut Context<'ctx, D>,
|
||||||
|
operand_1: inkwell::values::IntValue<'ctx>,
|
||||||
|
operand_2: inkwell::values::IntValue<'ctx>,
|
||||||
|
) -> anyhow::Result<inkwell::values::BasicValueEnum<'ctx>>
|
||||||
|
where
|
||||||
|
D: Dependency + Clone,
|
||||||
|
{
|
||||||
|
Ok(context
|
||||||
|
.build_call(
|
||||||
|
context.llvm_runtime().smod,
|
||||||
|
&[
|
||||||
|
operand_1.as_basic_value_enum(),
|
||||||
|
operand_2.as_basic_value_enum(),
|
||||||
|
],
|
||||||
|
"add_mod_call",
|
||||||
|
)
|
||||||
|
.expect("Always exists"))
|
||||||
|
}
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user