Paweł Bylica
50c49b0b9d
Merge pull request #90 : Static libs
2016-08-29 22:37:53 +02:00
Paweł Bylica
a600339545
Merge pull request #89 : EVM-C tweaks
2016-08-29 22:32:25 +02:00
Paweł Bylica
4b650928bb
EVM-C: Avoid examplevm_get_interface() being implicitly variadic
2016-08-29 10:37:46 +02:00
Paweł Bylica
12efc07993
EVM-C: Extend docs of evm_update_fn
2016-08-29 09:30:19 +02:00
Paweł Bylica
1c4ba40573
Fix type in EVM-C docs. NFC
2016-08-29 09:06:47 +02:00
Paweł Bylica
e70eae3e7a
EVM-C: evm_prepare_code(): move code_hash parameter before code parameter
2016-08-28 20:40:27 +02:00
Paweł Bylica
0b9b01e05c
EVM-C: Simplify evm_hash256 struct
2016-08-28 20:40:20 +02:00
Paweł Bylica
80581b3df7
Merge pull request #84 : EVM-C: Drop evm_get_info()
...
Closes https://github.com/ethereum/evmjit/issues/73
2016-08-25 22:16:30 +02:00
Paweł Bylica
aa1fa5ee32
EVM-C: Add ABI versioning support
2016-08-25 22:02:36 +02:00
Paweł Bylica
93f16f9380
EVM-C: Drop evm_get_info()
2016-08-25 15:01:49 +02:00
Paweł Bylica
e0b0e0b027
Merge pull request #83 : EVM-C: Extend evm_result
2016-08-25 14:22:58 +02:00
Paweł Bylica
2e6b278a59
EVM-C: Rename evm_result_error_code -> evm_result_code
2016-08-25 13:50:11 +02:00
Paweł Bylica
85ee6de4be
EVM-C: Update docs
2016-08-25 12:48:54 +02:00
Paweł Bylica
b889ea4daa
EVM-C: Change #define EVM_CALL_FAILURE to static const global variable
2016-08-25 12:40:16 +02:00
Paweł Bylica
ff8847670d
EVM-C: Update examples
2016-08-25 12:20:39 +02:00
Paweł Bylica
cd72d30018
EVM-C: Extend evm_result
2016-08-25 12:11:24 +02:00
Alex Beregszaszi
6d2b6efa90
EVM-C: update capi.c to reflect the new error handling
2016-08-24 12:43:35 +01:00
Alex Beregszaszi
971033adda
EVM-C: start result codes from 1
2016-08-24 12:40:55 +01:00
Alex Beregszaszi
baeade4d10
EVM-C: rename EVM_RESULT_* to EVM_*
2016-08-24 12:30:52 +01:00
Alex Beregszaszi
f107589c59
EVM-C: rename EVM_EXCEPTION to EVM_CALL_EXCEPTION
2016-08-24 12:30:51 +01:00
Alex Beregszaszi
9046d6edd5
EVM-C: include the rest of the result codes from cpp-ethereum
2016-08-24 11:02:59 +01:00
Alex Beregszaszi
75f257a3a7
EVM-C: include last_pc in evm_result
2016-08-24 10:47:17 +01:00
Alex Beregszaszi
0e129f5fed
EVM-C: demote EVM_EXCEPTION to only be used with evm_query_fn
2016-08-24 10:47:17 +01:00
Alex Beregszaszi
abc914afd2
EVM-C: include evm_result_outcome in evm_result
2016-08-24 10:47:17 +01:00
Paweł Bylica
cead905a2e
Merge pull request #80 : EVM-C: Support multiple VMs
2016-08-24 10:15:14 +02:00
Paweł Bylica
530b6684b2
EVM-C: Rename evm_fn_table -> evm_interface
2016-08-23 21:51:42 +02:00
Paweł Bylica
85cdeea4e6
EVM-C: Bring back set_option to ExampleVM
2016-08-23 21:24:22 +02:00
Paweł Bylica
e0ff4b350e
EVM-C: Build examples without #pragma warning suppressions
2016-08-23 21:10:11 +02:00
Paweł Bylica
81edf123db
EVM-C: Replace #pargma once with #ifndef include guards
2016-08-23 20:04:08 +02:00
Paweł Bylica
c4b226a035
EVM-C: Move evmjit to separated header & update docs
2016-08-23 13:50:25 +02:00
Paweł Bylica
efb73335c2
Update EVM-C examples
2016-08-23 13:07:33 +02:00
Paweł Bylica
5defa1d222
EVM-C: Support multiple implementation
...
Support multiple VM implementations by EVM-C in a single application by exporting only a function table (like vtable in OOP) for each implementation. The symbol name convention is `<vm-name>_get_fn_table()`.
2016-08-23 12:09:39 +02:00
Paweł Bylica
77326672fd
EVM-C: Use int istead of bool type
2016-08-23 11:55:06 +02:00
Paweł Bylica
0bbda440a3
Merge pull request #79 : EVM-C renames
2016-08-23 10:39:42 +02:00
Paweł Bylica
091963ce09
Merge remote-tracking branch 'origin/develop' into evmc
...
# Conflicts:
# examples/capi.c
2016-08-23 09:37:15 +02:00
Paweł Bylica
82f89664a0
Merge pull request #78 : EVM-C: description fixes and ExampleVM
2016-08-23 09:26:29 +02:00
Paweł Bylica
609b6b2390
EVM-C: rename evm_release_result_resources() -> evm_release_result()
2016-08-23 00:54:46 +02:00
Alex Beregszaszi
8c2f9d44e8
EVM-C: improve capi.c and compile against ExampleVM
2016-08-22 21:51:43 +01:00
Alex Beregszaszi
2bb6a4a690
EVM-C: include ExampleVM in CMake
2016-08-22 21:39:34 +01:00
Alex Beregszaszi
8ae6f4eae6
EVM-C: mark evm_hash160 big-endian
2016-08-22 21:37:30 +01:00
Alex Beregszaszi
9c3ff6d4b3
EVM-C: response is 20 bytes address to CREATE (and not 160 bytes)
2016-08-22 21:37:30 +01:00
Alex Beregszaszi
787644293c
EVM-C: highlight CREATE in evm_call_fn
2016-08-22 21:37:30 +01:00
Alex Beregszaszi
2b46c72c39
EVM-C: trying to fix Doxygen for evm_update_fn
2016-08-22 21:37:30 +01:00
Alex Beregszaszi
fc47787b79
EVM-C: include ExampleVM
2016-08-22 21:37:25 +01:00
Paweł Bylica
70be53cf4d
EVM-C: better names for functions supporting JITs
...
Rename evmjit_is_code_ready() to evm_get_code_status() and evmjit_compile() to evm_prepare_code().
2016-08-22 22:18:42 +02:00
Paweł Bylica
2b6773f128
EVM-C: Change evm_destroy_result() to evm_release_result_resources()
...
Be explicit how releasing execution result works. Also pass result by pointer.
2016-08-22 21:40:20 +02:00
Paweł Bylica
6c4089ad80
Merge pull request #75 : EVM-C updates
...
Evm-C updates
2016-08-22 15:14:43 +02:00
Alex Beregszaszi
5c5c7087af
EVM-C: use evm_variant::data for EVM_CODE_BY_ADDRESS so that Doxygen picks it up correctly
2016-08-22 12:06:15 +01:00
Alex Beregszaszi
d14fd8563f
EVM-C: update description of evm_query_fn to match current implementation
2016-08-22 12:06:15 +01:00
Alex Beregszaszi
ce75278de7
EMV-C: include description for evm_update_fn
2016-08-22 11:42:07 +01:00