This is the mail archive of the gcc@gcc.gnu.org mailing list for the GCC project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: Apple's implementation of precompiled headers


<<You shouldn't be that amazed, I reported the experimental results
last year.  If you want fast compilation of programs with huge
headers (for Macs the round number is 100K lines of header pulled
in per source file), you have to have the set of declarations in
memory and available for random access by name.  Parsing, compiling,
reading from disk, all of them take too long.
>>

But they really shouldn't take that long, disks are slow beasts. Yes, it
is certainly understandable that code generation can take a long time, but
it is surprising for front end analysis for a simple language like C to
be this slow. Certainly one should be able to parse C at a million lines
a minute on a modern machine, and there is not much semantic analysis to
do in C.

I am puzzled by the comment on reading from disk, precompiled headers 
still have to be read from disk, and the problem is usually that the
precompiled headers are much larger than the sources. So I must be
missing something.

Obviously keeping stuff in memory from one compilation to another can
be a win for example if this is what you are talking about ...


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]