Galder Zamarreño

Results 219 comments of Galder Zamarreño

> > Also, the reflection configuration that you see looks right. There are some additional registrations that originate in the JDK but we can't really filter those without affecting other...

Ah yes, you need to make sure you add the `native-image-agent` to your `quarkus-maven-plugin` definition in order to do the post-processing of resource configuration. E.g. ``` ${quarkus.platform.group-id} quarkus-maven-plugin ${quarkus.platform.version} true...

@vsevel I pushed a fix to the branch to change the jar path and that was enough to make the test I had added pass. The volume path structure is...

> A semi-space copying algorithm is typically easier to implement than a mark-compact (fewer moving pieces; simpler invariants). Consider doing that first? There will be plenty of bugs to shake...

To paraphrase @zakkak, something akin to [`query*`](https://github.com/oracle/graal/blob/e9bed41c1657a0e9666009b671070d263d1c5d31/docs/reference-manual/native-image/assets/reflect-config-schema-v1.1.0.json#L152-L171) but opposite.

@peter-hofer Thanks for this work and the presentation last week during the native image meeting. I'm giving this a go and wondering that the following native image build line should...

@peter-hofer Thanks. I would also add some information to the log so that when `-XX:+PrintGC` is enabled, you see a message right away (even before GC has kicked in) on...

To be more precise about GC policy, I'm tackling about this messages: ``` [7.525s] GC(0) Using Serial GC [7.525s] GC(0) Memory: 32049M [7.525s] GC(0) Heap policy: adaptive [7.525s] GC(0) Maximum...

@peter-hofer I ran some quick tests locally with a basic Quarkus app and didn't see any major failures with it. Throughput seems to be about the same than the copying...

Actually, the odd thing here is that one should be able to pass in `NativeLinkerOption` but that's ignored in the linker (or compiler?) calls that `JNIRegistrationSupport` does when making shimDLLs....