Merge branch 'master' into feature/fix-default_compiler-compilation

This commit is contained in:
Brandon Fish 2019-05-14 18:22:44 -05:00 committed by GitHub
commit 89f3998b49
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
7 changed files with 20 additions and 22 deletions

View File

@ -6,6 +6,7 @@ Blocks of changes will separated by version increments.
## **[Unreleased]** ## **[Unreleased]**
- [#440](https://github.com/wasmerio/wasmer/pull/440) Fix type mismatch between `wasmer_instance_call` and `wasmer_export_func_*_arity` functions in the runtime C API.
- [#269](https://github.com/wasmerio/wasmer/pull/269) Add better runtime docs - [#269](https://github.com/wasmerio/wasmer/pull/269) Add better runtime docs
- [#432](https://github.com/wasmerio/wasmer/pull/432) Fix returned value of `wasmer_last_error_message` in the runtime C API - [#432](https://github.com/wasmerio/wasmer/pull/432) Fix returned value of `wasmer_last_error_message` in the runtime C API
- [#429](https://github.com/wasmerio/wasmer/pull/429) Get wasi::path_filestat_get working for some programs; misc. minor WASI FS improvements - [#429](https://github.com/wasmerio/wasmer/pull/429) Get wasi::path_filestat_get working for some programs; misc. minor WASI FS improvements

View File

@ -222,7 +222,7 @@ pub unsafe extern "C" fn wasmer_export_func_params_arity(
pub unsafe extern "C" fn wasmer_export_func_params( pub unsafe extern "C" fn wasmer_export_func_params(
func: *const wasmer_export_func_t, func: *const wasmer_export_func_t,
params: *mut wasmer_value_tag, params: *mut wasmer_value_tag,
params_len: c_int, params_len: uint32_t,
) -> wasmer_result_t { ) -> wasmer_result_t {
let named_export = &*(func as *const NamedExport); let named_export = &*(func as *const NamedExport);
let export = &named_export.export; let export = &named_export.export;
@ -252,7 +252,7 @@ pub unsafe extern "C" fn wasmer_export_func_params(
pub unsafe extern "C" fn wasmer_export_func_returns( pub unsafe extern "C" fn wasmer_export_func_returns(
func: *const wasmer_export_func_t, func: *const wasmer_export_func_t,
returns: *mut wasmer_value_tag, returns: *mut wasmer_value_tag,
returns_len: c_int, returns_len: uint32_t,
) -> wasmer_result_t { ) -> wasmer_result_t {
let named_export = &*(func as *const NamedExport); let named_export = &*(func as *const NamedExport);
let export = &named_export.export; let export = &named_export.export;

View File

@ -125,9 +125,9 @@ pub unsafe extern "C" fn wasmer_instance_call(
instance: *mut wasmer_instance_t, instance: *mut wasmer_instance_t,
name: *const c_char, name: *const c_char,
params: *const wasmer_value_t, params: *const wasmer_value_t,
params_len: c_int, params_len: uint32_t,
results: *mut wasmer_value_t, results: *mut wasmer_value_t,
results_len: c_int, results_len: uint32_t,
) -> wasmer_result_t { ) -> wasmer_result_t {
if instance.is_null() { if instance.is_null() {
update_last_error(CApiError { update_last_error(CApiError {

View File

@ -60,7 +60,6 @@ int main()
assert(returns_sig[0] == WASM_I32); assert(returns_sig[0] == WASM_I32);
free(returns_sig); free(returns_sig);
wasmer_value_t param_one; wasmer_value_t param_one;
param_one.tag = WASM_I32; param_one.tag = WASM_I32;
param_one.value.I32 = 7; param_one.value.I32 = 7;
@ -71,7 +70,7 @@ int main()
wasmer_value_t result_one; wasmer_value_t result_one;
wasmer_value_t results[] = {result_one}; wasmer_value_t results[] = {result_one};
wasmer_result_t call_result = wasmer_export_func_call(func, params, 2, results, 1); wasmer_result_t call_result = wasmer_export_func_call(func, params, params_arity, results, returns_arity);
printf("Call result: %d\n", call_result); printf("Call result: %d\n", call_result);
printf("Result: %d\n", results[0].value.I32); printf("Result: %d\n", results[0].value.I32);
assert(results[0].value.I32 == 15); assert(results[0].value.I32 == 15);

View File

@ -197,7 +197,7 @@ wasmer_result_t wasmer_export_func_call(const wasmer_export_func_t *func,
*/ */
wasmer_result_t wasmer_export_func_params(const wasmer_export_func_t *func, wasmer_result_t wasmer_export_func_params(const wasmer_export_func_t *func,
wasmer_value_tag *params, wasmer_value_tag *params,
int params_len); uint32_t params_len);
/** /**
* Sets the result parameter to the arity of the params of the wasmer_export_func_t * Sets the result parameter to the arity of the params of the wasmer_export_func_t
@ -215,7 +215,7 @@ wasmer_result_t wasmer_export_func_params_arity(const wasmer_export_func_t *func
*/ */
wasmer_result_t wasmer_export_func_returns(const wasmer_export_func_t *func, wasmer_result_t wasmer_export_func_returns(const wasmer_export_func_t *func,
wasmer_value_tag *returns, wasmer_value_tag *returns,
int returns_len); uint32_t returns_len);
/** /**
* Sets the result parameter to the arity of the returns of the wasmer_export_func_t * Sets the result parameter to the arity of the returns of the wasmer_export_func_t
@ -390,9 +390,9 @@ wasmer_result_t wasmer_import_func_returns_arity(const wasmer_import_func_t *fun
wasmer_result_t wasmer_instance_call(wasmer_instance_t *instance, wasmer_result_t wasmer_instance_call(wasmer_instance_t *instance,
const char *name, const char *name,
const wasmer_value_t *params, const wasmer_value_t *params,
int params_len, uint32_t params_len,
wasmer_value_t *results, wasmer_value_t *results,
int results_len); uint32_t results_len);
/** /**
* Gets the `data` field within the context. * Gets the `data` field within the context.

View File

@ -178,7 +178,7 @@ wasmer_result_t wasmer_export_func_call(const wasmer_export_func_t *func,
/// and `wasmer_last_error_message` to get an error message. /// and `wasmer_last_error_message` to get an error message.
wasmer_result_t wasmer_export_func_params(const wasmer_export_func_t *func, wasmer_result_t wasmer_export_func_params(const wasmer_export_func_t *func,
wasmer_value_tag *params, wasmer_value_tag *params,
int params_len); uint32_t params_len);
/// Sets the result parameter to the arity of the params of the wasmer_export_func_t /// Sets the result parameter to the arity of the params of the wasmer_export_func_t
/// Returns `wasmer_result_t::WASMER_OK` upon success. /// Returns `wasmer_result_t::WASMER_OK` upon success.
@ -192,7 +192,7 @@ wasmer_result_t wasmer_export_func_params_arity(const wasmer_export_func_t *func
/// and `wasmer_last_error_message` to get an error message. /// and `wasmer_last_error_message` to get an error message.
wasmer_result_t wasmer_export_func_returns(const wasmer_export_func_t *func, wasmer_result_t wasmer_export_func_returns(const wasmer_export_func_t *func,
wasmer_value_tag *returns, wasmer_value_tag *returns,
int returns_len); uint32_t returns_len);
/// Sets the result parameter to the arity of the returns of the wasmer_export_func_t /// Sets the result parameter to the arity of the returns of the wasmer_export_func_t
/// Returns `wasmer_result_t::WASMER_OK` upon success. /// Returns `wasmer_result_t::WASMER_OK` upon success.
@ -313,9 +313,9 @@ wasmer_result_t wasmer_import_func_returns_arity(const wasmer_import_func_t *fun
wasmer_result_t wasmer_instance_call(wasmer_instance_t *instance, wasmer_result_t wasmer_instance_call(wasmer_instance_t *instance,
const char *name, const char *name,
const wasmer_value_t *params, const wasmer_value_t *params,
int params_len, uint32_t params_len,
wasmer_value_t *results, wasmer_value_t *results,
int results_len); uint32_t results_len);
/// Gets the `data` field within the context. /// Gets the `data` field within the context.
void *wasmer_instance_context_data_get(const wasmer_instance_context_t *ctx); void *wasmer_instance_context_data_get(const wasmer_instance_context_t *ctx);

View File

@ -788,15 +788,13 @@ pub fn fd_renumber(ctx: &mut Ctx, from: __wasi_fd_t, to: __wasi_fd_t) -> __wasi_
debug!("wasi::fd_renumber: from={}, to={}", from, to); debug!("wasi::fd_renumber: from={}, to={}", from, to);
let state = get_wasi_state(ctx); let state = get_wasi_state(ctx);
let fd_entry = wasi_try!(state.fs.fd_map.get(&from).ok_or(__WASI_EBADF)); let fd_entry = wasi_try!(state.fs.fd_map.get(&from).ok_or(__WASI_EBADF));
let new_fd_entry = Fd {
// TODO: verify this is correct
rights: fd_entry.rights_inheriting,
..*fd_entry
};
state.fs.fd_map.insert( state.fs.fd_map.insert(to, new_fd_entry);
to,
Fd {
// TODO: verify this is correct
rights: fd_entry.rights_inheriting,
..*fd_entry
},
);
__WASI_ESUCCESS __WASI_ESUCCESS
} }