moo/kernel/Context.moo

358 lines
7.5 KiB
Smalltalk
Raw Normal View History

class(#pointer) Context(Apex)
2015-10-15 14:40:08 +00:00
{
var sender, ip, sp, ntmprs.
method sender
{
^self.sender
}
method isDead
{
^self.ip < 0
}
method temporaryCount
{
^self.ntmprs
}
/* ---------------------------------
method varargCount
{
method context,
^do calculation...
for a block context, it must access homeContext first and call varargCount
^self.home varargCount...
}
method varargAt: index
{
method context
^do calculation...
block context...
^self.home varargAt: index
}
---------------------------------- */
2015-10-15 14:40:08 +00:00
}
class(#pointer,#final,#limited) MethodContext(Context)
2015-10-15 14:40:08 +00:00
{
var method, receiver, home, origin.
2015-10-15 14:40:08 +00:00
method pc
2015-10-15 14:40:08 +00:00
{
^self.ip
2015-10-15 14:40:08 +00:00
}
method pcplus1
2016-05-12 05:53:35 +00:00
{
^self.ip + 1
}
method pc: anInteger
2015-10-15 14:40:08 +00:00
{
self.ip := anInteger.
2015-10-15 14:40:08 +00:00
}
// it is similar to the pc: method but it doesn't
// push the return value to the stack.
2017-12-03 17:08:04 +00:00
method(#primitive) goto: pc.
method sp
2015-10-15 14:40:08 +00:00
{
^self.sp.
2015-10-15 14:40:08 +00:00
}
2017-12-03 17:08:04 +00:00
method sp: new_sp
2015-10-15 14:40:08 +00:00
{
self.sp := new_sp
2015-10-15 14:40:08 +00:00
}
method pc: new_pc sp: new_sp
2015-10-15 14:40:08 +00:00
{
self.ip := new_pc.
self.sp := new_sp.
2015-10-15 14:40:08 +00:00
}
method method
{
^self.method
}
method vargCount
{
^self basicSize - self class specNumInstVars - self.ntmprs
}
method vargAt: index
{
^self basicAt: (index + self class specNumInstVars + self.ntmprs)
}
2015-10-15 14:40:08 +00:00
}
class(#pointer,#final,#limited) BlockContext(Context)
2015-10-15 14:40:08 +00:00
{
var nargs, source, home, origin.
2015-10-15 14:40:08 +00:00
method vargCount
{
^self.home vargCount
}
method vargAt: index
{
^self.home vargAt: index
}
method pc
{
^self.ip
}
method pc: anInteger
{
self.ip := anInteger.
}
method sp
{
^self.sp
}
method sp: anInteger
{
self.sp := anInteger.
}
method restart
{
ip := self.source pc.
}
}
class(#pointer) CompiledMethod(Object)
{
var owner,
name,
preamble,
preamble_data_1,
preamble_data_2,
ntmprs,
nargs,
dbi_file_offset,
dbi_method_offset.
method preamble
{
^self.preamble
}
method preambleCode
{
/* TODO: make this a primtive for performance */
^(self.preamble bitShift: -4) bitAnd: 16r1F.
}
method owner
{
^self.owner
}
method name
{
^self.name
}
method(#primitive) sourceText.
method(#primitive) sourceFile.
method(#primitive) sourceLine.
method(#primitive) ipSourceLine: ip.
}
class CompiledBlock(Object)
{
var ip, ntmprs, nargs, home.
// create a new process in the suspended state
method(#variadic,#primitive) newProcess().
method(#variadic,#primitive) newSystemProcess(). // this method is for internal use only. never call this.
// TODO: how can i pass variadic arguments to newProcess
// method(#variadic) fork() -> how to pass them to newProcess???
method fork
2015-10-15 14:40:08 +00:00
{
// crate a new process in the runnable state
2015-10-18 15:06:17 +00:00
^self newProcess resume.
2015-10-15 14:40:08 +00:00
}
// evaluate the block
2017-12-03 17:08:04 +00:00
method(#variadic,#primitive) value().
2015-10-15 14:40:08 +00:00
method value: a
2015-10-15 14:40:08 +00:00
{
<primitive: #CompiledBlock_value>
2016-01-29 04:04:39 +00:00
self primitiveFailed.
2015-10-15 14:40:08 +00:00
}
method value: a value: b
2015-10-15 14:40:08 +00:00
{
<primitive: #CompiledBlock_value>
2016-01-29 04:04:39 +00:00
self primitiveFailed.
2015-10-15 14:40:08 +00:00
}
method value: a value: b value: c
2015-10-15 14:40:08 +00:00
{
<primitive: #CompiledBlock_value>
2016-01-29 04:04:39 +00:00
self primitiveFailed.
2015-10-15 14:40:08 +00:00
}
method value: a value: b value: c value: d
2016-05-12 05:53:35 +00:00
{
<primitive: #CompiledBlock_value>
2016-05-12 05:53:35 +00:00
self primitiveFailed.
}
method value: a value: b value: c value: d value: e
2016-05-12 05:53:35 +00:00
{
<primitive: #CompiledBlock_value>
2016-05-12 05:53:35 +00:00
self primitiveFailed.
}
2015-10-15 14:40:08 +00:00
method ifTrue: aBlock
2015-10-15 14:40:08 +00:00
{
//^(self value) ifTrue: aBlock.
^if (self value) { aBlock value }.
2015-10-15 14:40:08 +00:00
}
method ifFalse: aBlock
2015-10-15 14:40:08 +00:00
{
//^(self value) ifFalse: aBlock.
^if (self value) { /* nothing */ } else { aBlock value }.
2015-10-15 14:40:08 +00:00
}
method ifTrue: trueBlock ifFalse: falseBlock
2015-10-15 14:40:08 +00:00
{
//^(self value) ifTrue: trueBlock ifFalse: falseBlock
^if (self value) { trueBlock value } else { falseBlock value }.
2015-10-15 14:40:08 +00:00
}
method whileTrue: aBlock
2015-10-15 14:40:08 +00:00
{
/* --------------------------------------------------
* Naive recursive implementation
* --------------------------------------------------
(self value) ifFalse: [^nil].
aBlock value.
self whileTrue: aBlock.
* -------------------------------------------------- */
/* --------------------------------------------------
* Non-recursive implementation
* --------------------------------------------------
| pc sp |
2016-05-12 05:53:35 +00:00
pc := thisContext pcplus1.
(self value) ifFalse: [ ^nil ].
2015-10-15 14:40:08 +00:00
aBlock value.
* the pc: method leaves thisContext and pc in the stack after
* having changes the instruction poointer.
* as a result, the stack keeps growing. the goto method
* clears thisContext and pc off the stack unlike normal methods.
* thisContext pc: pc.
thisContext goto: pc.
* -------------------------------------------------- *(
/* --------------------------------------------------
* Imperative implementation - == true or ~~ false? match the VM implementation
* -------------------------------------------------- */
while ((self value) ~~ false) { aBlock value }.
2015-10-15 14:40:08 +00:00
}
method whileTrue
{
/* --------------------------------------------------
* Naive recursive implementation
* --------------------------------------------------
(self value) ifFalse: [^nil].
self whileTrue.
* -------------------------------------------------- */
2016-05-12 05:53:35 +00:00
/* --------------------------------------------------
* Non-recursive implementation
* --------------------------------------------------
2016-05-12 05:53:35 +00:00
| pc |
pc := thisContext pcplus1.
(self value) ifFalse: [ ^nil ].
thisContext goto: pc.
* -------------------------------------------------- */
/* --------------------------------------------------
* Imperative implementation
* -------------------------------------------------- */
while ((self value) ~~ false) { }.
}
method whileFalse: aBlock
{
/* --------------------------------------------------
* Naive recursive implementation
* --------------------------------------------------
(self value) ifTrue: [^nil].
aBlock value.
self whileFalse: aBlock.
* -------------------------------------------------- */
/* --------------------------------------------------
* Non-recursive implementation
* --------------------------------------------------
* The assignment to 'pc' uses the POP_INTO_TEMPVAR_1.
* It pops a value off the stack top, stores it to the second
* temporary variable(aBlock is the first temporary variable).
* It is a single byte instruction. 'pc' returned by
* 'thisContext pcplus1'' should point to the instruction after
* the POP_INTO_TEMPVAR_0 instruction.
*
* It would need the increment of 2 if the pair of
* STORE_INTO_TEMPVAR_1 and POP_STACKTOP were used.
* This implementation is subject to the instructions chosen
* by the compiler.
* --------------------------------------------------
2016-05-12 05:53:35 +00:00
| pc |
pc := thisContext pcplus1.
(self value) ifTrue: [ ^nil ]. // ^self
2016-05-12 05:53:35 +00:00
aBlock value.
thisContext goto: pc.
* -------------------------------------------------- */
/* --------------------------------------------------
* Imperative implementation
* -------------------------------------------------- */
while ((self value) == false) { aBlock value }.
}
method whileFalse
{
/* --------------------------------------------------
* Naive recursive implementation
* --------------------------------------------------
(self value) ifTrue: [^nil].
self whileFalse.
* -------------------------------------------------- */
2016-05-12 05:53:35 +00:00
/* --------------------------------------------------
* Non-recursive implementation
* --------------------------------------------------
2016-05-12 05:53:35 +00:00
| pc |
pc := thisContext pcplus1.
(self value) ifTrue: [ ^nil ]. // ^self
thisContext goto: pc.
* -------------------------------------------------- */
while ((self value) == false) { }.
}
}