Aleksey Rakov
Aleksey Rakov
elc should be able to generate the code both for 32 and 64 bit platform, but the limitations will be kept (no more than 12 parameters, number of references). xelc...
Another limitation - the image base cannot be bigger than 2Gb for 32bit compiler generating 64bit code
thanks for links. yes there should be x86assembler and x64assembler modules
Why? There should be clear difference between x86 and x64. So if there will be common code it should stay in assembler.h
Yes, I see. but I'm not sure if it could be so easily extended. We will see
ELENA 64 will not maintain 16 byte stack alignment due to the current call conventions and some language features (like a command tape). The alignment will be maintained only for...
- display closure name - done
Yes, of course. It is the most effective way
Here the example: import extensions; import system'math; public extension lazyOp { whileFalse(Func action) { until(self) { action() } } } public program() { var n := 1; (lazy:n.sqr().mod:100 == 64).whileFalse({...