Skip to content

Commit

Permalink
update tosca
Browse files Browse the repository at this point in the history
  • Loading branch information
wsodsong committed Aug 27, 2024
1 parent 57f6034 commit 401b6fd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tosca
Submodule tosca updated 58 files
+3 −7 .github/workflows/go.yml
+113 −0 .github/workflows/rust.yaml
+2 −0 .gitignore
+128 −0 .testcoverage.yml
+5 −1 BUILD.md
+13 −0 Jenkinsfile
+8 −2 Makefile
+4 −3 cpp/vm/evmzero/evmzero.cc
+50 −0 go/ct/common/bytes_test.go
+7 −7 go/ct/common/cpp_coverage_test.go
+31 −0 go/ct/common/hash_test.go
+0 −5 go/ct/common/immutable_hash_array.go
+41 −0 go/ct/common/immutable_hash_array_test.go
+22 −0 go/ct/common/revisions_test.go
+212 −0 go/ct/common/u256_test.go
+2 −1 go/ct/driver/probe.go
+1 −1 go/ct/driver/run.go
+1 −1 go/ct/evm_fuzz_test.go
+1 −1 go/ct/evm_test.go
+46 −0 go/ct/gen/assignment_test.go
+136 −1 go/ct/gen/state_test.go
+153 −137 go/ct/rlz/conditions_test.go
+295 −3 go/ct/rlz/domains_test.go
+37 −0 go/ct/rlz/effect_test.go
+3 −37 go/ct/rlz/expressions.go
+93 −21 go/ct/rlz/expressions_test.go
+69 −0 go/ct/rlz/parameters_test.go
+1 −1 go/integration_test/interpreter/integration_test.go
+290 −71 go/integration_test/processor/calls_test.go
+467 −0 go/integration_test/processor/create_test.go
+105 −0 go/integration_test/processor/precompiled_test.go
+1 −10 go/integration_test/processor/processor_test.go
+15 −8 go/integration_test/processor/scenario.go
+1 −1 go/interpreter/evmc/evmc_steppable_interpreter.go
+4 −4 go/interpreter/evmc/evmc_steppable_interpreter_test.go
+1 −1 go/interpreter/evmone/evmone.go
+6 −34 go/interpreter/lfvm/converter.go
+58 −21 go/interpreter/lfvm/converter_test.go
+1 −4 go/interpreter/lfvm/ct.go
+102 −4 go/interpreter/lfvm/ct_test.go
+1 −4 go/interpreter/lfvm/interpreter_test.go
+1 −4 go/interpreter/lfvm/lfvm.go
+50 −0 go/processor/floria/precompiled.go
+82 −0 go/processor/floria/precompiled_test.go
+27 −14 go/processor/floria/processor.go
+65 −4 go/processor/floria/processor_test.go
+69 −11 go/processor/floria/run_context.go
+46 −0 go/processor/floria/run_context_test.go
+32 −0 go/processor/test_utils.go
+389 −0 rust/Cargo.lock
+11 −0 rust/Cargo.toml
+265 −0 rust/src/interpreter/code_state.rs
+3 −0 rust/src/interpreter/mod.rs
+116 −0 rust/src/interpreter/stack.rs
+2 −0 rust/src/lib.rs
+619 −0 rust/src/types/amount.rs
+4 −0 rust/src/types/mod.rs
+364 −0 rust/src/types/opcode.rs

0 comments on commit 401b6fd

Please sign in to comment.