Hyukwoo Park

Results 20 issues of Hyukwoo Park

For better performance, I fixed the interpreter to run opcodes consecutively rather than single execution for each opcode.

Hi About one year ago, I asked about `wasm-c-api` issue in #677. It seems like that `wamr` still isolates objects created by wasm-c-api functions. Following grow API are not supported...

Hi all! I'm trying to import wamr runtime using `wasm-c-api`. But I found that there are some missing api as follows. * wasm_ref_t functions * bool wasm_module_validate(wasm_store_t*, const wasm_byte_vec_t* binary)...

done

Hi all! I found the following bug(maybe?) in wasm-c-api implementation ([lastest commit](https://github.com/bytecodealliance/wasm-micro-runtime/commit/edb184f709b83fdae46835be792ca9a31dc5ae41)). Each type structure (wasm_func_t, wasm_global_t, wasm_memory_t and wasm_table_t) has `name##_idx_rt` member like below, https://github.com/bytecodealliance/wasm-micro-runtime/blob/62fb3c9a89491d21aec00e123b421bd81aa7beaa/core/iwasm/common/wasm_c_api_internal.h#L181-L195 but this member is...

## Support ES.Next on Escargot ES.Next Standard : https://tc39.es/ecma262/ ES.Next Proposals : https://github.com/tc39/proposals Based on the upper standard, we are going to update the new standard. ### New Features in...

ES.Next

* replace simple tail calls by TCO * CallFunction or CallFunctionWithReceiver bytecode located in tail call position is optimized Signed-off-by: HyukWoo Park

* In most cases, `then` call could be replaced by internal PromiseObject::then() method call directly Signed-off-by: HyukWoo Park

Recently, escargot has adopted the up-to-date [ICU library](https://github.com/unicode-org/icu) to support the latest Intl standard([ECMA-402 6th edition](https://www.ecma-international.org/ecma-402/6.0/)). However there are some conflicts between newer and older ICU versions for our ICU...

bug

**Escargot** - OS: Ubuntu 18.04 (x64) **Describe the bug** EmptyValue is recognized as a PointerValue in 64bit mode. Especially, `Value::isPointerValue()` returns true result for EmptyValue. **Analysis** ```c++ inline bool Value::isPointerValue()...

bug

Signed-off-by: HyukWoo Park