ASTRefCount.cpp
上传用户:afrynkmhm
上传日期:2007-01-06
资源大小:1262k
文件大小:2k
源码类别:

编译器/解释器

开发平台:

Others

  1. #include "antlr/ASTRefCount.hpp"
  2. #include "antlr/AST.hpp"
  3. ANTLR_BEGIN_NAMESPACE(antlr)
  4. /**
  5.  * <b>SOFTWARE RIGHTS</b>
  6.  * <p>
  7.  * ANTLR 2.6.0 MageLang Insitute, 1999
  8.  * <p>
  9.  * We reserve no legal rights to the ANTLR--it is fully in the
  10.  * public domain. An individual or company may do whatever
  11.  * they wish with source code distributed with ANTLR or the
  12.  * code generated by ANTLR, including the incorporation of
  13.  * ANTLR, or its output, into commerical software.
  14.  * <p>
  15.  * We encourage users to develop software with ANTLR. However,
  16.  * we do ask that credit is given to us for developing
  17.  * ANTLR. By "credit", we mean that if you use ANTLR or
  18.  * incorporate any source code into one of your programs
  19.  * (commercial product, research project, or otherwise) that
  20.  * you acknowledge this fact somewhere in the documentation,
  21.  * research report, etc... If you like ANTLR and have
  22.  * developed a nice tool with the output, please mention that
  23.  * you developed it using ANTLR. In addition, we ask that the
  24.  * headers remain intact in our source code. As long as these
  25.  * guidelines are kept, we expect to continue enhancing this
  26.  * system and expect to make other tools available as they are
  27.  * completed.
  28.  * <p>
  29.  * The ANTLR gang:
  30.  * @version ANTLR 2.6.0 MageLang Insitute, 1999
  31.  * @author Terence Parr, <a href=http://www.MageLang.com>MageLang Institute</a>
  32.  * @author <br>John Lilley, <a href=http://www.Empathy.com>Empathy Software</a>
  33.  * @author <br><a href="mailto:pete@yamuna.demon.co.uk">Pete Wells</a>
  34.  */
  35. ASTRef::ASTRef(AST* p)
  36. : ptr(p), count(1)
  37. {
  38. if (p && !p->ref)
  39. p->ref = this;
  40. }
  41. ASTRef::~ASTRef()
  42. {
  43. delete ptr;
  44. }
  45. ASTRef* ASTRef::increment()
  46. {
  47. ++count;
  48. return this;
  49. }
  50. bool ASTRef::decrement()
  51. {
  52. return (--count==0);
  53. }
  54. ASTRef* ASTRef::getRef(const AST* p)
  55. {
  56. if (p) {
  57. AST* pp = const_cast<AST*>(p);
  58. if (pp->ref)
  59. return pp->ref->increment();
  60. else
  61. return new ASTRef(pp);
  62. } else
  63. return 0;
  64. }
  65. ANTLR_END_NAMESPACE