Home
last modified time | relevance | path

Searched refs:jumpAroundLen (Results 1 – 2 of 2) sorted by relevance

/dports/lang/smalltalk/smalltalk-3.2.5/libgst/
H A Dcomp.c1469 int finalJumpLen, finalJumpOfs, jumpAroundLen, jumpAroundOfs, in compile_while_loop() local
1514 if (jumpAroundLen == oldJumpAroundLen) in compile_while_loop()
1520 compile_jump (jumpAroundLen, whileTrue); in compile_while_loop()
1583 int jumpAroundOfs, oldJumpAroundLen, jumpAroundLen; in compile_times_repeat() local
1615 jumpAroundLen = (jumpAroundOfs + finalJumpLen > 65536 ? 6 : in compile_times_repeat()
1617 if (jumpAroundLen == oldJumpAroundLen) in compile_times_repeat()
1645 int jumpAroundOfs, oldJumpAroundLen, jumpAroundLen; in compile_to_by_do() local
1688 for (oldJumpAroundLen = jumpAroundLen = finalJumpLen = 0; ; oldJumpAroundLen = jumpAroundLen) in compile_to_by_do()
1690 finalJumpOfs = jumpAroundOfs + jumpAroundLen + 2; in compile_to_by_do()
1695 jumpAroundLen = (jumpAroundOfs + finalJumpLen > 65536 ? 6 : in compile_to_by_do()
[all …]
/dports/lang/smalltalk/smalltalk-3.2.5/packages/stinst/parser/
H A DSTCompiler.st394 | jumpAroundLen oldJumpAroundLen finalJumpOfs finalJumpLen |
395 jumpAroundLen := oldJumpAroundLen := 0.
399 jumpAroundLen := self sizeOfJump: jumpAroundOfs + finalJumpLen.
400 oldJumpAroundLen = jumpAroundLen]
401 whileFalse: [oldJumpAroundLen := jumpAroundLen].