ADT
ast-experimental
pthread-emulation
Last change
on this file since ef1da0e2 was 7870799, checked in by Thierry Delisle <tdelisle@…>, 6 years ago |
Cast cost and conversion cost now take constant parameters.
This required supporting visiting const node.
The PassVisitor can now visit const nodes but not when using the Indexer
|
-
Property mode
set to
100644
|
File size:
1.5 KB
|
Rev | Line | |
---|
[294647b] | 1 | //
|
---|
| 2 | // Cforall Version 1.0.0 Copyright (C) 2015 University of Waterloo
|
---|
| 3 | //
|
---|
| 4 | // The contents of this file are covered under the licence agreement in the
|
---|
| 5 | // file "LICENCE" distributed with Cforall.
|
---|
| 6 | //
|
---|
| 7 | // BaseSyntaxNode.h --
|
---|
| 8 | //
|
---|
| 9 | // Author : Thierry Delisle
|
---|
| 10 | // Created On : Tue Feb 14 07:44:20 2017
|
---|
[39156ed] | 11 | // Last Modified By : Peter A. Buhr
|
---|
| 12 | // Last Modified On : Wed Jul 10 16:13:49 2019
|
---|
| 13 | // Update Count : 4
|
---|
[294647b] | 14 | //
|
---|
| 15 |
|
---|
[6b0b624] | 16 | #pragma once
|
---|
[294647b] | 17 |
|
---|
[21f0aa8] | 18 | #include "Common/CodeLocation.h"
|
---|
[50377a4] | 19 | #include "Common/Indenter.h"
|
---|
[b8665e3] | 20 | #include "Common/Stats.h"
|
---|
| 21 |
|
---|
[21f0aa8] | 22 | class Visitor;
|
---|
[5ea7a22] | 23 | class Mutator;
|
---|
[294647b] | 24 |
|
---|
| 25 | class BaseSyntaxNode {
|
---|
| 26 | public:
|
---|
[39156ed] | 27 | static Stats::Counters::SimpleCounter* new_nodes;
|
---|
[b8665e3] | 28 |
|
---|
[294647b] | 29 | CodeLocation location;
|
---|
[262f085f] | 30 |
|
---|
[39156ed] | 31 | BaseSyntaxNode() { ++*new_nodes; }
|
---|
| 32 | BaseSyntaxNode( const BaseSyntaxNode & o ) : location(o.location) { ++*new_nodes; }
|
---|
| 33 | BaseSyntaxNode & operator=( const BaseSyntaxNode & ) = default;
|
---|
[7870799] | 34 |
|
---|
[2873b737] | 35 | virtual ~BaseSyntaxNode() {}
|
---|
| 36 |
|
---|
[5ea7a22] | 37 | virtual BaseSyntaxNode * clone() const = 0;
|
---|
[2873b737] | 38 | virtual void accept( Visitor & v ) = 0;
|
---|
[7870799] | 39 | virtual void accept( Visitor & v ) const = 0;
|
---|
[5ea7a22] | 40 | virtual BaseSyntaxNode * acceptMutator( Mutator & m ) = 0;
|
---|
[39156ed] | 41 | /// Notes:
|
---|
| 42 | /// * each node is responsible for indenting its children.
|
---|
| 43 | /// * Expressions should not finish with a newline, since the expression's parent has better information.
|
---|
[50377a4] | 44 | virtual void print( std::ostream & os, Indenter indent = {} ) const = 0;
|
---|
[294647b] | 45 | };
|
---|
| 46 |
|
---|
[e149f77] | 47 | std::ostream & operator<<( std::ostream & out, const BaseSyntaxNode * node );
|
---|
| 48 |
|
---|
[294647b] | 49 | // Local Variables: //
|
---|
| 50 | // tab-width: 4 //
|
---|
| 51 | // mode: c++ //
|
---|
| 52 | // compile-command: "make install" //
|
---|
| 53 | // End: //
|
---|
Note:
See
TracBrowser
for help on using the repository browser.