<html xmlns:o="urn:schemas-microsoft-com:office:office" xmlns:w="urn:schemas-microsoft-com:office:word" xmlns:m="http://schemas.microsoft.com/office/2004/12/omml" xmlns="http://www.w3.org/TR/REC-html40">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=Windows-1252">
<meta name="Generator" content="Microsoft Word 15 (filtered medium)">
<style><!--
/* Font Definitions */
@font-face
{font-family:"Cambria Math";
panose-1:2 4 5 3 5 4 6 3 2 4;}
@font-face
{font-family:Calibri;
panose-1:2 15 5 2 2 2 4 3 2 4;}
@font-face
{font-family:Aptos;
panose-1:2 11 0 4 2 2 2 2 2 4;}
/* Style Definitions */
p.MsoNormal, li.MsoNormal, div.MsoNormal
{margin:0cm;
font-size:12.0pt;
font-family:"Aptos",sans-serif;}
a:link, span.MsoHyperlink
{mso-style-priority:99;
color:#0563C1;
text-decoration:underline;}
span.EmailStyle20
{mso-style-type:personal-reply;
font-family:"Calibri",sans-serif;
color:windowtext;}
.MsoChpDefault
{mso-style-type:export-only;
font-size:10.0pt;
mso-ligatures:none;}
@page WordSection1
{size:612.0pt 792.0pt;
margin:72.0pt 72.0pt 72.0pt 72.0pt;}
div.WordSection1
{page:WordSection1;}
--></style>
</head>
<body lang="EN-CA" link="#0563C1" vlink="purple" style="word-wrap:break-word">
<div class="WordSection1">
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif">Thanks Dean<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif">That is indeed the way I ended up going. I have a draft PR [1] up with these changes<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif">Cheers<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif">Mat<o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif"><o:p> </o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif">[1]
<a href="https://github.com/openjdk/leyden/pull/21">https://github.com/openjdk/leyden/pull/21</a><o:p></o:p></span></p>
<p class="MsoNormal"><span style="font-size:11.0pt;font-family:"Calibri",sans-serif"><o:p> </o:p></span></p>
<div id="mail-editor-reference-message-container">
<div>
<div>
<div style="border:none;border-top:solid #B5C4DF 1.0pt;padding:3.0pt 0cm 0cm 0cm">
<p class="MsoNormal" style="margin-bottom:12.0pt"><b><span style="color:black">From:
</span></b><span style="color:black">leyden-dev <leyden-dev-retn@openjdk.org> on behalf of dean.long@oracle.com <dean.long@oracle.com><br>
<b>Date: </b>Friday, October 18, 2024 at 11:39 AM<br>
<b>To: </b>leyden-dev@openjdk.org <leyden-dev@openjdk.org><br>
<b>Subject: </b>Re: Optimal place for inserting calls to the VM from interpreted java methods<o:p></o:p></span></p>
</div>
<p>Hi Mat. It sounds like you could use multiple entry points based on MethodKind to accomplish this. Add new entries to the MethodKind enum for the upcall versions. Generate both the upcall and non-upcall entry points, and map to appropriate MethodKind
values. Then use your runtime pattern match to decide with MethodKind to use for each method in
<a href="https://java.se.oracle.com/source/s?defs=AbstractInterpreter&project=jdk-cpu-git">
AbstractInterpreter</a>::<a href="https://java.se.oracle.com/source/s?defs=method_kind&project=jdk-cpu-git">method_kind</a>(<b>const</b>
<a href="https://java.se.oracle.com/source/s?defs=methodHandle&project=jdk-cpu-git">
methodHandle</a>& <a href="https://java.se.oracle.com/source/s?defs=m&project=jdk-cpu-git">
m</a>).<o:p></o:p></p>
<p>dl<o:p></o:p></p>
<p><o:p> </o:p></p>
<div>
<p class="MsoNormal">On 10/9/24 6:42 PM, Mat Carter wrote:<o:p></o:p></p>
</div>
<blockquote style="margin-top:5.0pt;margin-bottom:5.0pt">
<div>
<p class="MsoNormal">Is there a place to encode calls to the VM in the interpreted methods other than the method prologs? <o:p></o:p></p>
<p class="MsoNormal">I've recently discovered the interpreted method adaptors which seems like a candidate, but there's
<o:p></o:p></p>
<p class="MsoNormal">no examples of the adaptors calling into the VM.<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">Follows is the rational as to why I'm looking for an alternative to the method prologs<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">The AOTEndTrainingOnMethodEntry feature [1] introduces calls from java methods into the
<o:p></o:p></p>
<p class="MsoNormal">VM (upcalls) when specific methods are entered. The methods are identified via a pattern in a
<o:p></o:p></p>
<p class="MsoNormal">similar manner to the CompileOnly option.<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">Following the initial PR review we’re looking at removing the knowledge of this AOT feature from
<o:p></o:p></p>
<p class="MsoNormal">the compilers/interpreter and introducing a more generic system (RuntimeUpcalls) that can be
<o:p></o:p></p>
<p class="MsoNormal">used by other parts of the VM [2]. In building out the RuntimeUpcalls system we've come across
<o:p></o:p></p>
<p class="MsoNormal">an inefficiency that isn't an immediate problem for this feature, but should another feature use this
<o:p></o:p></p>
<p class="MsoNormal">new system then it's less than optimal.<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">Interpreted code uses a shared method prolog (there are 8 variants for 'regular' methods [more
<o:p></o:p></p>
<p class="MsoNormal">for some special math/zip methods]), the AOTEndTrainingOnMethodEntry feature introduces a
<o:p></o:p></p>
<p class="MsoNormal">further 5 prolog types. When there is a single upcall (eg. AOTEndTrainingOnMethodEntry) to the VM
<o:p></o:p></p>
<p class="MsoNormal">everything is efficient.<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">The inefficiency issue arises as soon as there are two or more upcalls; which upcalls relate to
<o:p></o:p></p>
<p class="MsoNormal">which methods is contained within the RuntimeUpcalls system. When the interpreter examines
<o:p></o:p></p>
<p class="MsoNormal">the method flags they only indicate whether there are any upcalls (but not how many or which ones).
<o:p></o:p></p>
<p class="MsoNormal">As the interpreter can't encode which upcalls should be called in the prolog (without an explosion
<o:p></o:p></p>
<p class="MsoNormal">of new runtime generated prologs), it needs to call the RuntimeUpcalls system which in turn iterates<o:p></o:p></p>
<p class="MsoNormal">over the upcalls and calls the appropriate ones; the problem is that during that iteration the methods
<o:p></o:p></p>
<p class="MsoNormal">need to be compared against the pattern. So we either pay a memory cost to cache the method to
<o:p></o:p></p>
<p class="MsoNormal">upcall relationships or we pay a performance cost to repeatedly test the method against the pattern.<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">This is not a problem for C1 and C2 as we pay this cost only when the methods are compiled and
<o:p></o:p></p>
<p class="MsoNormal">create the multiple upcalls in those methods, eliminating the need for pattern matching by the
<o:p></o:p></p>
<p class="MsoNormal">RuntimeUpcalls system during method execution<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">Thanks in advance <o:p></o:p></p>
<p class="MsoNormal">Mat<o:p></o:p></p>
<p class="MsoNormal"> <o:p></o:p></p>
<p class="MsoNormal">[1] <a href="https://github.com/openjdk/leyden/pull/21">https://github.com/openjdk/leyden/pull/21</a><o:p></o:p></p>
<p class="MsoNormal">[2] <a href="https://github.com/macarte/leyden/pull/2">https://github.com/macarte/leyden/pull/2</a><o:p></o:p></p>
</div>
</blockquote>
</div>
</div>
</div>
</div>
</body>
</html>