history.txt
上传用户:itx_2006
上传日期:2007-01-06
资源大小:493k
文件大小:8k
源码类别:

编译器/解释器

开发平台:

Others

  1.                     The History of PCCTS
  2.          The Purdue Compiler-Construction Tool Set
  3.                         Terence Parr
  4.                  Parr Research Corporation
  5.                    Minneapolis, Minnesota
  6.                             and
  7.                   University of Minnesota
  8.       Army High Performance Computing Research Center
  9.                       [Updated 8-7-94]
  10.      The PCCTS project began as a parser-generator project for a  gra-
  11. duate  course  at Purdue University in the Fall of 1988 taught by Hank
  12. Dietz- translator-writing systems.  Under the  guidance  of  Professor
  13. Dietz, the parser generator, ANTLR (originally called YUCC), continued
  14. after the termination of the course and eventually became the  subject
  15. of  Terence  Parr's Master's thesis.  Originally, lexical analysis was
  16. performed via ALX which was soon replaced by Will Cohen's DLG  in  the
  17. Fall  of  1989 (DFA-based lexical-analyzer generator, also an offshoot
  18. of the graduate translation course).
  19.      The alpha version of ANTLR was  totally  rewritten  resulting  in
  20. 1.00B.    Version   1.00B  was  released  via  an  internet  newsgroup
  21. (comp.compilers) posting in February of 1990 and  quickly  gathered  a
  22. large  following.  1.00B generated only LL(1) parsers, but allowed the
  23. merged description of lexical and syntactic analysis.  It had rudimen-
  24. tary  attribute  handling  similar  to that of YACC and did not incor-
  25. porate rule parameters or return values; downward inheritance was very
  26. awkward.   1.00B-generated  parsers  terminated  upon the first syntax
  27. error.  Lexical classes (modes) were not allowed and DLG did not  have
  28. an interactive mode.
  29.      Upon starting his Ph.D. at Purdue in the Fall  of  1990,  Terence
  30. Parr  began  the  second  total rewrite of ANTLR.  The method by which
  31. grammars may be  practically  analyzed  to  generate  LL(k)  lookahead
  32. information  was  discovered in August of 1990 just before his return.
  33. Version 1.00 incorporated this algorithm and included the AST  mechan-
  34. ism,  lexical  classes,  error  classes, and automatic error recovery;
  35. code quality and portability were higher.  In February  of  1992  1.00
  36. was  released  via  an  article in SIGPLAN Notices.  Peter Dahl, Ph.D.
  37. candidate, and Professor Matt O'Keefe (both at the University of  Min-
  38. nesota)  tested  this  version  extensively.  Dana Hoggatt (Micro Data
  39. Base Systems, Inc.) came up with the idea of error  grouping  (strings
  40. attached to non-terminals) and tested 1.00 heavily.
  41.      Version 1.06 was released in  December  1992  and  represented  a
  42. large  feature enhancement over 1.00.  For example, rudimentary seman-
  43. tic predicates were  introduced,  error  messages  were  significantly
  44. improved  for k>1 lookahead and ANTLR parsers could indicate that loo-
  45. kahead fetches were  to  occur  only  when  necessary  for  the  parse
  46.                                                                 Page 1
  47.                                                                  PCCTS
  48. (normally,  the  lookahead "pipe" was constantly full).  Russell Quong
  49. joined the project in the Spring of 1992 to aid in the semantic predi-
  50. cate  design.   Beginning  and  advanced  tutorials  were  created and
  51. released as well.  A makefile generator  was  included  that  sets  up
  52. dependencies  and  such  correctly  for  ANTLR and DLG.  Very few 1.00
  53. incompatibilities were introduced (1.00 was quite different from 1.00B
  54. in some areas).
  55.      1.10 was released on August 31, 1993 and incorporated bug  fixes,
  56. a  few  feature enhancements and a major new capability - an arbitrary
  57. lookahead operator (syntactic predicate), (alpha)?beta.  This  feature
  58. was  co-designed with Professor Russell Quong also at Purdue.  To sup-
  59. port infinite lookahead, a preprocessor flag, ZZINF_LOOK, was  created
  60. that  forced the ANTLR() macro to tokenize all input prior to parsing.
  61. Hence, at any moment, an action or predicate can see the entire  input
  62. sentence.   The predicate mechanism of 1.06 was extended to allow mul-
  63. tiple predicates to be hoisted; the syntactic context of  a  predicate
  64. was also moved along with the predicate.
  65.      In February of 1994, SORCERER (a  simple  tree-parser  generator)
  66. was  released.  This tool allows the user to parse child-sibling trees
  67. by specifying a grammar rather than building a recursive-descent  tree
  68. walker  by  hand.   Work  towards a library of tree transformations is
  69. underway.  Aaron Sawdey at The University of Minnesota became a second
  70. author of SORCERER after the initial release.
  71.      On April 1, 1994, PCCTS 1.20 was released.  This  was  the  first
  72. version  to  actively  support C++ output.  It also included important
  73. fixes regarding semantic predicates and (..)+ subrules.  This  version
  74. also introduced token classes, the "not" operator, and token ranges.
  75.      On June 19, 1994, SORCERER 1.00B9 was released.   Gary  Funck  of
  76. Intrepid  Technology  joined the SORCERER team and provided very valu-
  77. able suggestions regarding the "transform" mode of SORCERER.
  78.      On August 8, 1994, PCCTS 1.21 was released.  It mainly cleaned up
  79. the C++ output and included a number of bug fixes.
  80.      From the 1.21 release forward, the maintenance and support of all
  81. PCCTS  tools  will be primarily provided by Parr Research Corporation,
  82. Minneapolis MN---an organization founded on the principles  of  excel-
  83. lence in research and integrity in business; we are devoted to provid-
  84. ing really cool software tools.  Please see file PCCTS.FUTURE for more
  85. information.  All PCCTS tools currently in the public domain will con-
  86. tinue to be in the public domain.
  87.      Looking towards the future, a graphical user-interface is in  the
  88. design  phase.   This  would  allow  users  to view the syntax diagram
  89. representation of their grammars and would highlight  nondeterministic
  90. productions.   Parsing can be traced graphically as well.  This system
  91. will be built using a multiplatform window library.  We  also  antici-
  92. pate  the  introduction  of  a  sophisticated error handling mechanism
  93. called "parser exception handling" in a near future release.
  94.                                                                 Page 2
  95.                                                                  PCCTS
  96.      Currently, PCCTS is used at over 1000 known academic, government,
  97. and  commercial  sites in 37 countries.  Of course, the true number of
  98. users is unknown due to the large number of ftp sites.
  99.                                Credits
  100. _____________________________________________________________________________
  101. _____________________________________________________________________________
  102. |ANTLR 1.00A            Terence Parr   Hank Dietz                           |
  103. |ALX                    Terence Parr   Hank Dietz                           |
  104. |ANTLR 1.00B            Terence Parr   Hank Dietz, Will Cohen               |
  105. |DLG 1.00B              Will Cohen     Terence Parr, Hank Dietz             |
  106. |NFA Relabelling        Will Cohen                                          |
  107. |LL(k) analysis         Terence Parr   Hank Dietz                           |
  108. |ANTLR 1.00             Terence Parr   Hank Dietz, Will Cohen               |
  109. |DLG 1.00               Will Cohen     Terence Parr, Hank Dietz             |
  110. |ANTLR 1.06             Terence Parr   Will Cohen, Russell Quong, Hank Dietz|
  111. |DLG 1.06               Will Cohen     Terence Parr, Hank Dietz             |
  112. |ANTLR 1.10             Terence Parr   Will Cohen, Russell Quong            |
  113. |ANTLR 1.20             Terence Parr   Will Cohen, Russell Quong            |
  114. |ANTLR 1.21             Terence Parr   Russell Quong                        |
  115. |DLG 1.10               Will Cohen     Terence Parr                         |
  116. |DLG 1.20               Will Cohen     Terence Parr                         |
  117. |DLG 1.21               Terence Parr                                        |
  118. |Semantic predicates    Terence Parr   Russell Quonq                        |
  119. |Syntactic predicates   Terence Parr   Russell Quonq                        |
  120. |SORCERER 1.00A         Terence Parr                                        |
  121. |SORCERER 1.00B         Terence Parr   Aaron Sawdey                         |
  122. |SORCERER 1.00B9        Terence Parr   Aaron Sawdey, Gary Funck             |
  123. |___________________________________________________________________________|
  124.                                                                 Page 3