World: r3wp
[Red] Red language group
older newer | first last |
Oldes 20-Apr-2011 [1203x3] | hm... probably not.. because it would be problematic with aliases |
btw... in the example in chapter 4.6.6 is probably typo: foo: func [ /local c [pointer! [integer!]] s [c-string!] ][ c: get-hello s: as c-string! c/value prin s ] there should be just: c [pointer [integer!]] as used above. | |
same in 4.7... or is it by design? | |
Dockimbel 20-Apr-2011 [1206x3] | let me see that... |
Do you mean pointer instead of pointer! ? | |
These two are different, pointer! is used to refer to the datatype and have to be used in function's spec blocks. Pointer (without !) is a keyword (like struct) used to represent a literal pointer value. | |
BrianH 20-Apr-2011 [1209] | You're using the http://issue.cc/r3/546style AS operation? |
Dockimbel 20-Apr-2011 [1210] | Adding to this, pointer! can also be used for type casting (following AS keyword). |
BrianH 20-Apr-2011 [1211x2] | Is that typecast changing the integer to a c-string! (a kind of pointer to byte), or is it changing the pointer to the integer to a c-string!? |
It seems to me that the latter would be: s: as c-string! c | |
Dockimbel 20-Apr-2011 [1213x3] | In the example from 4.6.6, c/value refer to the pointed integer value, so it is the former, integer! -> c-string! (== pointer! [byte!]) |
Exactly. | |
I might have been inspired by your ticket (I remember vaguely reading it a long time ago). Using AS for type casting, was a natural extension of the as-string / as-binary syntax from R2. | |
BrianH 20-Apr-2011 [1216x3] | As was the ticket. Remember that in Red proper, AS should do conversions, not casting, for safety. Given all this typecasting, it is looking more and more like Red proper should have the handle! type instead of pointers, where a handle! would be a pointer-like thing with no dereferencing, arithmetic, or value setting or getting in Red itself. Then let Red/System cast the handle! to whatever pointer type it needs to. |
And then back to a handle! if it's going to be passed back to Red code. | |
Pardon my mistake if you weren't thinking of Red/System as being a bit like unsafe code sections in C#, JNI code in Java, or extensions in R3. | |
Dockimbel 20-Apr-2011 [1219x2] | Yes, that is a good option. Red has to be safe, that's one of the main reason for having Red/System dialect. |
No mistake, that is a correct way to see the separation between Red and Red/System. | |
BrianH 20-Apr-2011 [1221] | Cool. That will allow us to reuse some of the the reasoning about code that has been made about those situations in other languages, and tweak the model to learn from their lessons. |
Dockimbel 20-Apr-2011 [1222] | Precisely. :-) |
BrianH 20-Apr-2011 [1223x2] | I was thinking about struct parameters to functions. If C doesn't allow struct parameters and return values, only struct references or pointers, then Red should follow that model when declaring functions with the cdecl calling convention, and similar restrictions for stdcall, fastcall, etc. Then when we need to support other calling conventions that do support passing actual structs as parameters, we can just add to the list (pascal or Delphi, for instance). |
I haven't had a chance to look yet... Does the revised struct model support seeing pointers as equivalent to references to structs with one member? | |
Dockimbel 20-Apr-2011 [1225x4] | Implicitly, yes. |
Calling convention: adding new ones shouldn't require much work (unless they are very exotic). | |
BTW, I was thinking these last days that I maybe should allocate a week before starting the work on Red's compiler, to implement an experimental JVM bytecode emitter (and a .class file format). The reason for that is to have a 2nd emitter (in addition to IA32) that is addressing a very different architecture. This should help make a cleaner abstraction layer for upcoming emitters (especially those not written by me). | |
I might alternatively pick up CLR for that task, thought (less work for the file format as it is basically PE). | |
BrianH 20-Apr-2011 [1229] | A good calling convention to add would be JNI, for Java and Dalvik code. We would have to reverse-engineer the behavior of the C macros and types that implement this in the JDK and NDK. |
Dockimbel 20-Apr-2011 [1230x2] | This should help make a cleaner abstraction layer To be more accurate, I think the current one is OK, but it will certainly need some tweaking when a 2nd emitter will be added, so better tweak it sooner than later. |
Brian: what about JNA? Isn't that interface better than JNI? | |
BrianH 20-Apr-2011 [1232] | Never heard of JNA. Java and Dalvik both use JNI. |
Dockimbel 20-Apr-2011 [1233] | http://en.wikipedia.org/wiki/Java_Native_Access |
BrianH 20-Apr-2011 [1234] | Sounds interesting. Is it an addon that can be used on a standard JVM? I'll look it over later, especially to see if Dalvik supports it. |
Kaj 20-Apr-2011 [1235x3] | I tested the new section headers on Syllable Desktop. We're a step further, but it doesn't work yet. It doesn't complain about them missing anymore, but about read-only and write sections overlapping, which our loader doesn't support, if I remember correctly |
This is from the kernel log: | |
0:bash::bash : memmap_instance() RO overlap RW (08048000 + 00001000 -> 08048000) 0:bash::bash : ERROR : execve(./hello) failed. Too late to recover, will exit | |
Dockimbel 21-Apr-2011 [1238] | Kaj: thanks for the report. I thought we were cleanly separating RO and RW sections in two different LOAD segments...maybe the flags are not correctly set in sections (or in section headers). I'll give it a look this weekend if Andreas has not the time to fix it before. |
Kaj 21-Apr-2011 [1239x5] | It's quite possible that the format is correct, but that the Syllable loader doesn't support it. It does work on Linux (although that may not use the section headers at all) |
I remember that we had a similar problem many years ago when the standard GNU software that we incorporate started generating such a construct in new versions of the toolchain. I think our solution was a quick hack, so on the one hand we can load a lot of current software, but on the other hand it is also fairly easy to upset our loader | |
It is also possible that other adaptations need to be made to the format. Syllable can load Linux binary dynamic libraries if the dependencies are not Linux specific, but it can't load Linux binary program executables as far as I know - which we are trying now. There are subtle differences in their configurations, which we may need to adjust for | |
Maybe the most obvious difference: it looks like the Red output uses the common TEXT_START_ADDR=0x08048000 while Syllable uses TEXT_START_ADDR=0x80000000 | |
Syllable maps the kernel into the first half of the address range. Programs are supposed to go into the upper half, but a Linux executable probably tries to map itself into Syllable's kernel area | |
Dockimbel 21-Apr-2011 [1244] | Could you try changing the base address in ELF.r? It is a the top of the file: context [ defs: [ image [ base-address 134512640 ; #{08048000} ] |
Kaj 21-Apr-2011 [1245x3] | Thanks, I will |
-= Red/System Compiler =- Compiling /resources/Red/tests/hello.reds ... 660 ** Math Error: Math or number overflow ** Where: resolve-symbol-refs ** Near: pointer/value: data-ptr + spec/2 foreach >> | |
Using 2147483648 ; #{80000000} | |
Oldes 21-Apr-2011 [1248] | What about using R3? |
Kaj 21-Apr-2011 [1249x2] | For what? |
64 bits? | |
Oldes 21-Apr-2011 [1251] | yes |
Kaj 21-Apr-2011 [1252] | I'd be pleased with that, but structs do nothing in R3 |
older newer | first last |