Maple

Results 141 comments of Maple

Perhaps using `-ffreestanding` and small reimplementation of STDC like eg. string.h would not work on freestanding? Example ``` > clang -mno-red-zone -target x86_64-apple-macos11 -fno-asynchronous-unwind-tables -fno-builtin -fno-exceptions -fno-rtti -fno-stack-protector -nostdlib -O3...

I think this can be done in `resolver` package. Currently we are using Go's `encoding/json.typeFields` to read JSON tag from field tags and it's by default looking up for `sf.Tag.Get("json")`....

I'll add more test, there's a basic test and it's passing. I would like to know if the current state of native C codes are able to be converted to...

Added some tests, Thrift encoder part is passing. There's an issue with some fallback mechanism especially for HTTP mapping.

> It seems you use CGO for implementing j2t, which I concern about the performance. Can you give me some benchmark results? We are not going to use CGo for...

> If so, I am afraid that its performance is even worse than using pure Golang... To make it clear, we are still going to use `asm2asm`. I understand that...

There are still some failing test for HTTP mapping path use-case, https://github.com/cloudwego/dynamicgo/blob/089a6d41bb09e503e03815c8e2d1d4a3666d2eec/conv/j2t/compact_test/failing_test.go I am not really sure on how it works with J2T FSM

I feel like this has been stale for a while. I am going to introduce smaller changes PR, this one look kinda massive. I'll start from making the native Thrift...

Hi @VEDANTDOKANIA do you have minimum reproducible code for this issue? It'll help a lot diagnostic getting the root cause

Hi, this can be occured during io_uring_setup because it cannot allocate a memory in the kernel - resulting it returns -1 ENOMEM but it's not caught up on syscall Errno...