Groups | Search | Server Info | Login | Register
Groups > comp.compilers > #182
| Path | csiph.com!x330-a1.tempe.blueboxinc.net!newsfeed.hal-mli.net!feeder3.hal-mli.net!nx01.iad01.newshosting.com!newshosting.com!novia!news-out.readnews.com!news-xxxfer.readnews.com!news.misty.com!news.iecc.com!nerds-end |
|---|---|
| From | BGB <cr88192@hotmail.com> |
| Newsgroups | comp.compilers |
| Subject | Re: How to handle qualified identifiers such as x.y in a Pascal-like language |
| Date | Fri, 01 Jul 2011 12:46:01 -0700 |
| Organization | albasani.net |
| Lines | 56 |
| Sender | news@iecc.com |
| Approved | comp.compilers@iecc.com |
| Message-ID | <11-07-006@comp.compilers> (permalink) |
| References | <11-06-037@comp.compilers> <11-06-039@comp.compilers> <11-06-045@comp.compilers> <11-07-004@comp.compilers> |
| NNTP-Posting-Host | news.iecc.com |
| X-Trace | gal.iecc.com 1309566700 73718 64.57.183.58 (2 Jul 2011 00:31:40 GMT) |
| X-Complaints-To | abuse@iecc.com |
| NNTP-Posting-Date | Sat, 2 Jul 2011 00:31:40 +0000 (UTC) |
| Keywords | symbols, storage |
| Posted-Date | 01 Jul 2011 20:31:40 EDT |
| X-submission-address | compilers@iecc.com |
| X-moderator-address | compilers-request@iecc.com |
| X-FAQ-and-archives | http://compilers.iecc.com |
| Xref | x330-a1.tempe.blueboxinc.net comp.compilers:182 |
Show key headers only | View raw
On 6/29/2011 12:31 PM, BGB wrote: > how much of this would make sense in others' projects, I don't really > know... > [This strikes me as all stuff the Lisp community figured out in about 1980. > -John] well, sadly, I don't have any good sources of information related to VM implementation and design, as most of what I can find is fragmentary information on the internet (much of my VM technology is built up from trivia I had read about other VMs, or figured out myself as part of an ongoing process). my original exposure to how such a VM would work was gained mostly by looking over the source for GNU Guile, and throwing together a sort of makeshift clone (I think at the time I also looked at SIOD and PLT and others for ideas). most other information is unusably high-level (mostly focusing on high-level language features or "pie in the sky" language/computing/... concepts), rather than how to implement them effectively, or deal with more practical concerns (such as dealing calls to/from C or C++ code and with matters of sharing data and structures). actually, many people refer to a lot of these concerns derisively as "implementation details", which personally I find a bit frustrating. most information I can find on compiler technology often doesn't match well with my architecture (often focuses on statically-typed languages using an AST-driven or SSA-based processes). in my case I use a type-agnostic stack-machine, and handle types much later in the process, generally mixed with register allocation and emitting ASM. most other information I have found has been of commercial origin (mostly technical documentation for various products, ...). (decided to leave out a big description of the overall compilation process...). so, it is maybe fair enough that I don't know everything that others have done. too bad there is not a big wiki or similar dedicated to compiler and VM design and implementation topics, without being dedicated to a particular project or technology. say, if it would be sort of like Wikipedia, but much more technically-oriented and topic-based (rather than a random mis-mash of comments and "stream of consciousness" type stuff like on c2wiki...).
Back to comp.compilers | Previous | Next — Previous in thread | Next in thread | Find similar
How to handle qualified identifiers such as x.y in a Pascal-like language noitalmost <noitalmost@cox.net> - 2011-06-20 15:43 -0400
Re: How to handle qualified identifiers such as x.y in a Pascal-like language torbenm@diku.dk (Torben Ægidius Mogensen) - 2011-06-22 10:57 +0200
Re: How to handle qualified identifiers such as x.y in a Pascal-like language Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2011-06-22 11:47 +0100
Re: How to handle qualified identifiers such as x.y in a Pascal-like language George Neuner <gneuner2@comcast.net> - 2011-06-24 18:13 -0400
Re: How to handle qualified identifiers such as x.y in a Pascal-like language BGB <cr88192@hotmail.com> - 2011-06-29 12:31 -0700
Re: How to handle qualified identifiers such as x.y in a Pascal-like language BGB <cr88192@hotmail.com> - 2011-07-01 12:46 -0700
Re: How to handle qualified identifiers such as x.y in a Pascal-like language anton@mips.complang.tuwien.ac.at (Anton Ertl) - 2011-07-02 17:13 +0000
Re: How to handle qualified identifiers such as x.y in a Pascal-like language BGB <cr88192@hotmail.com> - 2011-07-03 13:14 -0700
Re: How to handle qualified identifiers such as x.y in a Pascal-like language torbenm@diku.dk (Torben Ægidius Mogensen) - 2011-07-07 10:27 +0200
Re: How to handle qualified identifiers such as x.y in a Pascal-like language BGB <cr88192@hotmail.com> - 2011-07-07 04:14 -0700
Re: How to handle qualified identifiers such as x.y in a Pascal-like language George Neuner <gneuner2@comcast.net> - 2011-07-02 16:58 -0400
Re: How to handle qualified identifiers such as x.y in a Pascal-like language Gene <gene.ressler@gmail.com> - 2011-06-22 19:21 -0700
Re: How to handle qualified identifiers such as x.y in a Pascal-like language Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2011-06-24 07:56 +0100
Re: How to handle qualified identifiers such as x.y in a Pascal-like language Gene <gene.ressler@gmail.com> - 2011-06-24 19:19 -0700
Re: How to handle qualified identifiers such as x.y in a Pascal-like language Hans-Peter Diettrich <DrDiettrich1@aol.com> - 2011-06-25 11:55 +0100
Re: How to handle qualified identifiers such as x.y in a Pascal-like language noitalmost <noitalmost@cox.net> - 2011-06-29 13:13 -0400
Re: How to handle qualified identifiers such as x.y in a Pascal-like language "[Linux Magazine]" <uu3kw29sb7@snkmail.com> - 2011-06-24 13:58 +0200
Re: How to handle qualified identifiers such as x.y in a Pascal-like language George Neuner <gneuner2@comcast.net> - 2011-06-25 17:11 -0400
Re: How to handle qualified identifiers such as x.y in a Pascal-like language noitalmost <noitalmost@cox.net> - 2011-06-23 12:43 -0400
Re: How to handle qualified identifiers such as x.y in a Pascal-like language Tony Finch <dot@dotat.at> - 2011-06-29 18:55 +0100
Re: How to handle qualified identifiers such as x.y in a Pascal-like language BGB <cr88192@hotmail.com> - 2011-06-29 15:51 -0700
csiph-web