The Trunk: Compiler-eem.288.mcz

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

The Trunk: Compiler-eem.288.mcz

commits-2
Eliot Miranda uploaded a new version of Compiler to project The Trunk:
http://source.squeak.org/trunk/Compiler-eem.288.mcz

==================== Summary ====================

Name: Compiler-eem.288
Author: eem
Time: 2 September 2014, 2:22:13.42 pm
UUID: 79749887-066e-4675-9b9a-c39cae7f4ad4
Ancestors: Compiler-eem.287

Provide support for fixing ContextPart>>#quickSend:to:with:super:

=============== Diff against Compiler-eem.287 ===============

Item was added:
+ ----- Method: BytecodeEncoder class>>isReturnTopFromMethodAt:in: (in category 'instruction stream support') -----
+ isReturnTopFromMethodAt: pc in: method
+ "Answer whether the bytecode at pc is a return stack top from method."
+
+ self subclassResponsibility!

Item was added:
+ ----- Method: EncoderForV3 class>>isReturnTopFromMethodAt:in: (in category 'instruction stream support') -----
+ isReturnTopFromMethodAt: pc in: method
+ "Answer whether the bytecode at pc is a return stack top from method."
+
+ ^(method at: pc) = 124!