Wenyong Huang

Results 335 comments of Wenyong Huang

@bashor thanks for bringing us so much info about Kotlin! I think another reason of not keeping the current implementation is that the EH spec proposal has changed a lot...

> > My personal opinion is that the exception APIs have been widely used and we had better not changed them, it may impact developer a lot and might make...

> > @bashor is that ok for you? > > @wenyongh yeah, sounds good. We likely will be ready to switch our wasm-wasi target to the new EH by default...

@bnason-nf Just as you said, `the quick invoke path has an issue, it's not putting the attachment into exec_env`, this is a limitation when directly calling the native API from...

Hi, could you try using `--size-level=1` or `--size-level=2` for wamrc?

Yes, it is expected, I have a test, LLVM AArch64 does not support code model medium (i.e. --size-level=1) and code model kernel (i.e. --size-level=2). Code model large (i.e. --size-level=0) is...

Hi, I tested some cases, it seems the size increased is not very much (bytes): ``` size-level 3 size-level 0 CoreMark: 64276 64680 dhrystone: 64020 64576 gcc-loops: 419668 421560 hashset:...

It may be due to that `size-level=3` generates some relocation types which require the address of target symbol is in range 0-2GB. Could you try the following patch: ```diff diff...

@bianchui the code changes had been merged into main branch, but I chose the `Squash and Merge` mode when merging to main, so the commit logs are lost, please don't...

@bianchui I merged branch `dev/merge_aot_data_text` into main again without squash, now your commit can be found in the main branch: please have a check, thanks.