Viewing profile — __-X-__
__-X-__
HN member- Joined
- Thu, Sep 15, 2016, 6:47 PM UTC
- HN karma
- 4
- Public activity
- 4 items
- HN profile
- View on Hacker News ↗
About __-X-__
No profile information was provided.
Recent public activity
-
comment
Comment #12508880
yes, if the method was already compiled into a big or medium size method (in term of assembly code). JITs will not try to inline it again otherwise you will have too much code dupl…
-
comment
Comment #12508842
yes that's the idea ! but your example is wrong because c1 never compile a branch that was not executed before.
-
comment
Comment #12508811
It will be freed but when c2 has emitted the new machine code, you can still have code on the stack of the user threads that use the code compiled by c1. When no more threads will …
-
comment
Comment #12508775
-XX:-TieredCompilation is the magic option to disable tiered compilation. Beginning with Java 8, instead of having the VM to magically choose between using the client JIT (c1: thin…