Page 2 of 2

Posted: Wed May 30, 2007 2:30 pm
by doob
I can see it be quite difficult to write a type safe GC if a big part of what makes a language type safe is a GC

Posted: Wed May 30, 2007 3:55 pm
by nick8325
There's a paper containing a type-safe garbage collector here. They define a typed assembly language that guarantees safety of memory operations, but is expressive enough to write the garbage collector in. (I must admit that I haven't finished reading the paper yet - I have a big collection of papers I've been meaning to read. :))

Posted: Wed May 30, 2007 4:00 pm
by doob
The link isn't working

Posted: Wed May 30, 2007 4:05 pm
by nick8325
That's because there was a full stop at the end of the URL. Try again now.

Posted: Wed May 30, 2007 4:29 pm
by Colonel Kernel
Too many Greek letters!! I'm going blind... :shock: :lol: If only I had the time...

Posted: Thu May 31, 2007 10:08 am
by Candy
Colonel Kernel wrote:Too many Greek letters!! I'm going blind... :shock: :lol: If only I had the time...
The problem with those scientific papers is that they make it impossible for anybody who didn't have greek at school to read it, let alone ask questions.

Posted: Thu May 31, 2007 10:13 am
by nick8325
Candy wrote:
Colonel Kernel wrote:Too many Greek letters!! I'm going blind... :shock: :lol: If only I had the time...
The problem with those scientific papers is that they make it impossible for anybody who didn't have greek at school to read it, let alone ask questions.
Too many funny symbols, I agree. They're not so hard to read once you get used to the notation, though. The standard introduction to this sort of thing is Types and Programming Languages.

Posted: Tue Dec 11, 2007 5:18 am
by nelix
I was thinking about a single address space operating system, and I was thinking rather than forcing the use of a restricted language that I could just use the llvm JIT and replace all the bytecode's LOAD/STORE with a memory access check and then do the load store... I am not sure how much of a performance hit that would be.

I am not sure about type safty yet... I figure C is already as type safe as it needs to be without getting in your face...


Oh yeah my first post, I got big ideas but no background... I hope I can provide some nice ideas and hypothetical... I like everyone else has a few cool OS ideas... A while before I have the skills to implement them (if ever) but I enjoy the concepts enough to be fulfilled.

Posted: Tue Dec 11, 2007 5:23 am
by AJ
Welcome to the board.

Although I don't often contribute to the heavily theoretical threads, I enjoy reading them. I'm hoping that once my C++ kernel is 'complete', most of the userland stuff will be in type-safe languages (I like C#) so will watch your thoughts with interest.

Cheers,
Adam

Posted: Tue Dec 11, 2007 5:50 am
by nelix
I am kind of disappointed with the turn out of type safe langs in the open source world...

I have been following clang (a BSD compiler, that reuses llvm and does not use any gcc code [the current llvm front ends reuse gcc]) and it is writen in a nice modular way, I think the lexer and llvm glue would possibly be reusable for a javascript or c# compilers (or pike or whatever) and all this nice bsd code would allow one to add all kinds of extensions to c like langs in a modular way.