Sounds like a good idea! This reminds me on Forth and its cross compilers and recently factor. "Igor Stasenko" <siguctua@...> Gesendet von:...
Dietmar Schielke
dietmar.schielke@...
Jul 1, 2008 7:11 am
131935
... I had another look and I don't understand why the suspendingList has to be nil after the completeStep:. It is just a step over the wait. No signal happens...
Norbert Hartl
norbert@...
Jul 1, 2008 7:16 am
131936
Hi Brent, ... heh, indeed. :-) The Wiki page has loads of information instead. I've put it on my to-do list; the description will be updated. Thanks for...
Michael Haupt
mhaupt@...
Jul 1, 2008 9:01 am
131937
... x := SmallInteger maxVal raisedToInteger: 100. {Time millisecondsToRun: [100000 timesRepeat: [x byteShift: -200]]. Time millisecondsToRun: [100000...
nicolas cellier
ncellier@...
Jul 1, 2008 1:21 pm
131938
Hello all, I'm trying to build a VM on my Gentoo x86_64 desktop, without much success. The furthest I have got is using the package available on portage ...
John Thornborrow
john@...
Jul 1, 2008 2:21 pm
131939
... http://goran.krampe.se/blog/Squeak/vmmaker.rdoc Be sure to _not_ check the 64bit box. Cheers Philippe...
Philippe Marschall
philippe.marschall@...
Jul 1, 2008 2:30 pm
131940
... Also see http://squeakvm.org/squeak64/faq.html - Bert -...
Bert Freudenberg
bert@...
Jul 1, 2008 2:41 pm
131941
I thought I was the only one to have watched the prisoner :) I'm not a compiler - I'm a free programmer (Context was C++) Stef...
stephane ducasse
stephane.ducasse@...
Jul 1, 2008 4:24 pm
131942
... So do it. Stef...
stephane ducasse
stephane.ducasse@...
Jul 1, 2008 4:27 pm
131943
... please this is important to move on and remove dust....
stephane ducasse
stephane.ducasse@...
Jul 1, 2008 4:30 pm
131944
... x digitLength = 363, - so Rshift only has to shift 163 bytes, - versus 363 for Lshift... What is surprising is that byteShift: is not much different. - 95...
nicolas cellier
ncellier@...
Jul 1, 2008 6:06 pm
131945
Hi, it was mentioned already: We developed SqueakSVN, a project-centric code management tool, as a student project at HPI. It completely integrates SVN, so the...
Robert Krahn
robert.krahn@...
Jul 1, 2008 6:10 pm
131946
Thanks for the links, but I am getting segmentation faults when I try to load anything (including VMMaker) within an image, and example stackdump: I'll hunt...
John Thornborrow
john@...
Jul 1, 2008 6:14 pm
131947
On Tue, Jul 1, 2008 at 11:10 AM, Robert Krahn ... Just curious - how is the integration done? Via a network protocol, or using OSProcess, or some other way? ...
Avi Bryant
avi@...
Jul 1, 2008 6:15 pm
131948
Sorry to reply to Steph's reply to Tim's original. I didn't get the original (because I had Anouncements checked by mistake inj my squeak-dev mail settings)....
Eliot Miranda
eliot.miranda@...
Jul 1, 2008 7:25 pm
131949
Hi Igor, this looks cool. It is related to David Ungar's Klein which was an attempt at a self-hosted Self system, and to Exupery and Typed Smalltalk, and...
Eliot Miranda
eliot.miranda@...
Jul 1, 2008 7:45 pm
131950
... Well, until now FFI was intentionally optional. Making it mandatory would immensely widen the Smalltalk-System interface, in fact, there would be no...
Bert Freudenberg
bert@...
Jul 1, 2008 7:50 pm
131951
On Tue, Jul 1, 2008 at 12:49 PM, Bert Freudenberg <bert@...> ... One doesn't have to *use* the FFI. If the FFI isn't exposed via a primitive then...
Eliot Miranda
eliot.miranda@...
Jul 1, 2008 8:20 pm
131952
... Good ... Sure; there's always got to be some way of looking up things. It will always take some space and time. But surely trading space/time for more...
tim Rowledge
tim@...
Jul 1, 2008 8:21 pm
131953
... One way to fix this is to make debuggers work differently. One image should be able to inspect and control another, as in Spoon. In general, the debugger...
Ralph Johnson
johnson@...
Jul 1, 2008 8:28 pm
131954
... Leaving aside my like of all-named-prims, I *like* this enhancement to the support for named prims. It would slightly complicate the post-prim-call code in...
tim Rowledge
tim@...
Jul 1, 2008 8:34 pm
131955
... Smalltalk is about a lot of things. One is minimality (everything's an object). Use Occam's razor. Named primitives for the core prims is a flourish one...
Eliot Miranda
eliot.miranda@...
Jul 1, 2008 8:41 pm
131956
... You could also look at Exupery itself, I think Exupery is about as fast as Huemul. Huemul was much faster until it got a few extra language features that...
bryce@...
Jul 1, 2008 8:47 pm
131957
... I did primitive error codes at Cadence and they'll very probably b making it into Cog real soon now. They're simpler than VisualWorks', being only ...
Eliot Miranda
eliot.miranda@...
Jul 1, 2008 8:48 pm
131958
... So.... what is the anticipated way that will work? I'm not sure I see the need for a two step process anyway. The version we did at Interval in 98 was very...
tim Rowledge
tim@...
Jul 1, 2008 9:23 pm
131959
I've been needing to use spoon for my research project this summer, and now that the board has (finally) officially decided to base Squeak 4 on spoon, can I...
Matthew Fulmer
tapplek@...
Jul 1, 2008 9:24 pm
131960
... Actually one can be clever about this. yes one has to check for inst var assignment. But for at:put: one can fold the check into other activities. For...
Eliot Miranda
eliot.miranda@...
Jul 1, 2008 9:44 pm
131961
... The compiler is modified to recognise <primitive: integer errorCode: identifier> and <primitive: identifier module: identifier errorCode: identifier> and...
Eliot Miranda
eliot.miranda@...
Jul 1, 2008 10:07 pm
131962
Hi Avi, we communicate with Subversion by using the C-API of SVN and a VMPlugin. Robert...
Robert Krahn
robert.krahn@...
Jul 1, 2008 10:30 pm
131963
... I have some thoughts about using properly set exception handling mechanism. In Windows its a Structured Exception Handling (SEH) , provided by OS, in...