Re: Requirements for Just-in-time Compilation

Brian.Inglis@SystematicSw.ab.ca
30 Apr 2001 00:52:08 -0400

          From comp.compilers

Related articles
Requirements for Just-in-time Compilation jp@demonseed.net (jason petrone) (2001-04-22)
Re: Requirements for Just-in-time Compilation at150bogomips@aol.com (2001-04-26)
Re: Requirements for Just-in-time Compilation ralph@inputplus.demon.co.uk (2001-04-26)
Re: Requirements for Just-in-time Compilation vbdis@aol.com (2001-04-26)
Re: Requirements for Just-in-time Compilation jp@demonseed.net (jason petrone) (2001-04-29)
Re: Requirements for Just-in-time Compilation Brian.Inglis@SystematicSw.ab.ca (2001-04-30)
| List of all articles for this month |

From: Brian.Inglis@SystematicSw.ab.ca
Newsgroups: comp.compilers
Date: 30 Apr 2001 00:52:08 -0400
Organization: Systematic Software
References: 01-04-120 01-04-132 01-04-144
Keywords: code
Posted-Date: 30 Apr 2001 00:52:08 EDT

On 29 Apr 2001 02:11:17 -0400, jason petrone <jp@demonseed.net>
wrote:


>Thanks to all for your responses. They were very helpful.
>
>Ralph Corderoy <ralph@inputplus.demon.co.uk> wrote:
>> Yes, an external assembler pass would be too slow. Is anyone using the
>> New Jersey Machine-Code Toolkit as part of a JIT or dynarec?
>> http://www.eecs.harvard.edu/~nr/toolkit/
>
>I really knew it would be too slow, I just wanted to make sure, since I don't
>really want to write an assembler. I am aware of the NJ-MC-TK, but I'm
>thinking about trying GNU Lightning first(www.gnu.org/software/lightning).
>
>>> It seems to me that supporting multiple architectures would require making
>>> extra passes, and would slow things down.
>> Why extra passes? A different backend would be used per architecture,
>> no?
>
>I'm thinking extra passes since I would need to have an architecture
>independent intermediate representation, like RTL. I couldn't use something
>like the single pass compiler that is the first example in the dragon book.


Your symbol table and syntax tree gives you an intermediate.
You could generate code at the statement or function level.
No need to build the whole tree, convert to intermediate, then
generate code.
Your JIT compiler would not then be IT IMHO.


Thanks. Take care, Brian Inglis Calgary, Alberta, Canada
--
(Brian dot Inglis at SystematicSw dot ab dot ca)


Post a followup to this message

Return to the comp.compilers page.
Search the comp.compilers archives again.