<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body style="overflow-wrap: break-word; -webkit-nbsp-mode: space; line-break: after-white-space;">
<div>
<blockquote type="cite">
<div dir="ltr">
<div>
<div style="margin: 0px; font-stretch: normal; font-size: 13px; line-height: normal; font-family: "Helvetica Neue"; font-size-adjust: none; font-kerning: auto; font-variant-alternates: normal; font-variant-ligatures: normal; font-variant-numeric: normal; font-variant-east-asian: normal; font-feature-settings: normal; min-height: 15px;">
In <a href="https://openjdk.org/jeps/491">JEP 491</a>, I could see the in-depth detail of the reason behind pinning for synchronized cases. Could someone share what would be the reason behind pinning in case of the JNI method invocation? I could see the JEP
 mentions `presence of native frame on stack` . Therefore, I am guessing it’s something around that but if someone could give a bit more detail about it that would  be helpful.</div>
</div>
</div>
</blockquote>
<br>
</div>
<div>Native frames can’t be supported because Loom works by unwinding the stack into the heap (roughly speaking). Doing that requires metadata describing what’s on the stack and where, which has to be produced by the JIT compiler. Native frames were produced
 by a non-JVM compiler and lack that metadata, so can’t be unwound. The compiler is also expected to do some other things to coordinate with the JVM runtime.</div>
<div><br>
</div>
<div>Theoretically this can be solved either by:</div>
<div><br>
</div>
<div>
<ol class="MailOutline">
<li>Having a native code compiler that produces the same kind of code and the same kind of integrations as C1/C2/Graal does.</li><li>Compiling the native code just-in-time using the JVM JIT compilers too, from e.g. LLVM bitcode. Sulong is an implementation of this approach.</li></ol>
<div><br>
</div>
<div><br>
</div>
</div>
</body>
</html>