We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Both, SqueakObjectNewNode and the PrimNewNodes cache the receiverClass in some cases:
SqueakObjectNewNode
PrimNewNode
trufflesqueak/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/nodes/accessing/SqueakObjectNewNode.java
Lines 74 to 87 in a0f1de3
trufflesqueak/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/nodes/primitives/impl/StoragePrimitives.java
Lines 182 to 253 in a0f1de3
It may make sense to revise this to avoid cache duplication.
The text was updated successfully, but these errors were encountered:
If you don't mind the hacky bits, this is how TruffleSOM integrates your #basicNew into a dispatch chain: SOM-st/TruffleSOM@d2f04f3
#basicNew
Specifically this for the standard dispatch, similar for super:
SOM-st/TruffleSOM@d2f04f3#diff-e6ba7b4ffc50689737a20f2121025ae11325e28b29cdf1c21f395c58d2522cc1R53-R69
Sorry, something went wrong.
fniephaus
No branches or pull requests
Both,
SqueakObjectNewNode
and thePrimNewNode
s cache the receiverClass in some cases:trufflesqueak/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/nodes/accessing/SqueakObjectNewNode.java
Lines 74 to 87 in a0f1de3
trufflesqueak/src/de.hpi.swa.trufflesqueak/src/de/hpi/swa/trufflesqueak/nodes/primitives/impl/StoragePrimitives.java
Lines 182 to 253 in a0f1de3
It may make sense to revise this to avoid cache duplication.
The text was updated successfully, but these errors were encountered: