<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<style type="text/css" style="display:none;"><!-- P {margin-top:0;margin-bottom:0;} --></style>
</head>
<body dir="ltr">
<div id="divtagdefaultwrapper" style="font-size:12pt;color:#000000;font-family:Calibri,Helvetica,sans-serif;" dir="ltr">
<p>Hi Eliot, hi all,</p>
<p><br>
</p>
<p>as I have learned from your great explanation about stack frame states and marriage last year, using "thisContext" in your code is more expensive than one might assume naively when thinking of it as a simple variable. This also means that using "thisContext"
 for invoking a mirror primitive is (unnecessarily?) slow:</p>
<p><br>
</p>
<p></p>
<p style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">
</p>
<div><span style="font-size: 12pt;">[thisContext object: World eqeq: World] bench. '28,000,000 per second. 35.8 nanoseconds per run. 19.13235 % GC time.' </span></div>
<div><span style="font-size: 12pt;"><br>
</span></div>
<p></p>
<div id="Signature" style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">
<div id="divtagdefaultwrapper" dir="ltr" style="font-size: 12pt;">
<div name="divtagdefaultwrapper" style="font-family: Calibri, Arial, Helvetica, sans-serif; margin: 0px;">
<div></div>
</div>
</div>
</div>
versus:
<p></p>
<p><br>
</p>
<p></p>
<div><span style="font-size: 12pt;">
<div>TestObject >> object: anObject eqeq: anOtherObject </div>
<div><span style="font-size: 12pt; white-space: pre;"></span><span style="font-size: 12pt;"><primitive: 110></span><br>
</div>
<div><span style="white-space:pre"></span>self primitiveFailed</div>
</span></div>
<div><span style="font-size: 12pt;"><br>
</span></div>
<div><span style="font-size: 12pt;">
<div style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">
obj := TestObject new.</div>
<div style="font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols; font-size: 16px;">
[obj object: World eqeq: World] bench '58,900,000 per second. 17 nanoseconds per run. 0 % GC time.' </div>
<div><br>
Twice as fast!</div>
<div><br>
</div>
<div>I am wondering whether it would be useful to copy or move the mirror primitive protocol to another place, maybe on the class-side of Context, given the number of senders to some mirror primitive methods which are different from Context. In particular,
 SimulationStudio makes <a href="https://sourcegraph.com/search?q=context:global+thisContext+object+repo:LinqLover/SimulationStudio&patternType=literal" class="OWAAutoLink" title="https://sourcegraph.com/search?q=context:global+thisContext+object+repo:LinqLover/SimulationStudio&amp;patternType=literal
Strg+Klicken oder tippen Sie, um dem Link zu folgen.">
heavy</a> use of them, but the BasicInspector, Squot, and some other tools use it, too. :-)</div>
<div><br>
</div>
<div>So here are my questions:</div>
<div>
<ul style="margin-bottom: 0px; margin-top: 0px;">
<li>Would this be a legitimate use of the mirror primitives or is the (implicit) contract that the receiver must be a context instance or even a context instance on the current stack?</li><li>Do you consider the mirror primitive protocol a public protocol or are all senders from different classes actually abusing the protocol?</li><li>How would you think about moving this protocol to a static place such as Context class?</li></ul>
<div><br>
</div>
</div>
<div>Thanks in advance!</div>
<div><br>
</div>
<div>Best,</div>
<div>Christoph</div>
</span></div>
<p></p>
<div id="Signature">
<div id="divtagdefaultwrapper" dir="ltr" style="font-size: 12pt; color: rgb(0, 0, 0); font-family: Calibri, Helvetica, sans-serif, EmojiFont, "Apple Color Emoji", "Segoe UI Emoji", NotoColorEmoji, "Segoe UI Symbol", "Android Emoji", EmojiSymbols;">
<div name="divtagdefaultwrapper" style="font-family:Calibri,Arial,Helvetica,sans-serif; font-size:; margin:0">
<div><font size="2" color="#808080"></font></div>
</div>
</div>
</div>
</div>
</body>
</html>