Re: [QUERY] A "ignorant newbie" question about compiler-writing.

Darius Blasband <darius@phidani.be>
30 Jan 1997 22:29:02 -0500

          From comp.compilers

Related articles
[2 earlier articles]
Re: [QUERY] A "ignorant newbie" question about compiler-writing. jlilley@empathy.com (1997-01-03)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. robison@kai.com (Arch Robison) (1997-01-03)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. mw@ipx2.rz.uni-mannheim.de (1997-01-04)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. kanze@gabi-soft.fr (1997-01-29)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. kanze@gabi-soft.fr (1997-01-29)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. mw@ipx2.rz.uni-mannheim.de (1997-01-30)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. darius@phidani.be (Darius Blasband) (1997-01-30)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. kanze@gabi-soft.fr (J. Kanze) (1997-01-30)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. iainf@bristol.st.com (1997-02-07)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. mff@research.att.com (Mary Fernandez) (1997-02-11)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. dennis@netcom.com (1997-02-16)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. kanze@gabi-soft.fr (1997-02-16)
Re: [QUERY] A "ignorant newbie" question about compiler-writing. nr@adder.cs.virginia.edu (Norman Ramsey) (1997-02-20)
[4 later articles]
| List of all articles for this month |

From: Darius Blasband <darius@phidani.be>
Newsgroups: comp.compilers
Date: 30 Jan 1997 22:29:02 -0500
Organization: Phidani Software, Brussels
Keywords: practice, performance

J. Kanze wrote:


> What makes it hard(er) is that the programmers don't cooperate. If
> you accept that the compiler just aborts after the first error, it
> will be a lot simpler. Of course, I'd never buy such a compiler:-).


Well, I remember using Turbo Pascal 3.0, and it was quite a usable
product, for reasonably sized projects. Deciding not to take error
recovery into account has several implications, and I believe it is
mainly a matter of making the proper compromise, between ease of use
and performance. Such a design implies a well-integrated environment
(quite easy to do with virtually any available text editor today), a
bit of liberality to resist some errors (missing semicolon in some
contexts), but it can give you unmatched parsing performance.


I'd agree with you if you refuse such a design in case of a C
compiler, that must parse large amounts of header files before getting
to the real work, but in many contexts, no error recovery can be a
smart and cost effective compromise.


Cheers,


Darius


--


Post a followup to this message

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