Expand PMF_FN_* macros.
[netbsd-mini2440.git] / external / bsd / byacc / dist / NOTES
blob6448920c299d58123d46ab504dbc1e84ad41abde
1 $NetBSD: NOTES,v 1.3 1997/10/20 03:41:15 lukem Exp $
3 Berkeley Yacc reflects its origins.  The reason so many routines
4 use exactly six register variables is that Berkeley Yacc was
5 developed on a VAX using PCC.  PCC placed at most six variables
6 in registers.  I went to considerable effort to find which six
7 variables most belonged in registers.  Changes in machines and
8 compilers make that effort worthless, perhaps even harmful.
10 [Given the previous paragraph, and the fact that GCC does not respect
11  register declarations, and the fact that much of the rest of the
12  4.4lite2 release had "register" declarations extirpated, I've removed
13  most of the register declarations from the code. I left them in the
14  generated skeleton code "for the hell of it" but they probably should
15  go from there, too. -- pm, July 1997]
17 [I totally removed the register stuff; we've deprecated it elsewhere
18  in the tree now -- lukem, October 1997]
20 The code contains many instances where address calculations are
21 performed in particular ways to optimize the code for the VAX.