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 | // Declaration.cc --
|
---|
8 | //
|
---|
9 | // Author : Richard C. Bilson
|
---|
10 | // Created On : Mon May 18 07:44:20 2015
|
---|
11 | // Last Modified By : Andrew Beach
|
---|
12 | // Last Modified On : Wed Aug 9 14:38:00 2017
|
---|
13 | // Update Count : 25
|
---|
14 | //
|
---|
15 |
|
---|
16 | #include <map> // for _Rb_tree_const_iterator, map<>::...
|
---|
17 | #include <ostream> // for ostream, operator<<, basic_ostre...
|
---|
18 | #include <string> // for string
|
---|
19 | #include <utility> // for pair
|
---|
20 |
|
---|
21 | #include "Common/utility.h" // for maybeClone
|
---|
22 | #include "Declaration.h"
|
---|
23 | #include "SynTree/BaseSyntaxNode.h" // for BaseSyntaxNode
|
---|
24 | #include "SynTree/Statement.h" // for AsmStmt
|
---|
25 | #include "SynTree/SynTree.h" // for UniqueId
|
---|
26 | #include "Type.h" // for Type, Type::StorageClasses
|
---|
27 |
|
---|
28 | static UniqueId lastUniqueId = 0;
|
---|
29 | typedef std::map< UniqueId, Declaration* > IdMapType;
|
---|
30 | static IdMapType idMap;
|
---|
31 |
|
---|
32 | Declaration::Declaration( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage )
|
---|
33 | : name( name ), linkage( linkage ), storageClasses( scs ), uniqueId( 0 ) {
|
---|
34 | }
|
---|
35 |
|
---|
36 | Declaration::Declaration( const Declaration &other )
|
---|
37 | : BaseSyntaxNode( other ), name( other.name ), linkage( other.linkage ), extension( other.extension ), storageClasses( other.storageClasses ), uniqueId( other.uniqueId ) {
|
---|
38 | }
|
---|
39 |
|
---|
40 | Declaration::~Declaration() {
|
---|
41 | }
|
---|
42 |
|
---|
43 | void Declaration::fixUniqueId() {
|
---|
44 | uniqueId = ++lastUniqueId;
|
---|
45 | idMap[ uniqueId ] = this;
|
---|
46 | }
|
---|
47 |
|
---|
48 | Declaration *Declaration::declFromId( UniqueId id ) {
|
---|
49 | IdMapType::const_iterator i = idMap.find( id );
|
---|
50 | return i != idMap.end() ? i->second : 0;
|
---|
51 | }
|
---|
52 |
|
---|
53 | void Declaration::dumpIds( std::ostream &os ) {
|
---|
54 | for ( IdMapType::const_iterator i = idMap.begin(); i != idMap.end(); ++i ) {
|
---|
55 | os << i->first << " -> ";
|
---|
56 | i->second->printShort( os );
|
---|
57 | os << std::endl;
|
---|
58 | } // for
|
---|
59 | }
|
---|
60 |
|
---|
61 | std::ostream & operator<<( std::ostream & out, const Declaration * decl ) {
|
---|
62 | if ( decl ){
|
---|
63 | decl->print( out );
|
---|
64 | } else {
|
---|
65 | out << "nullptr";
|
---|
66 | }
|
---|
67 | return out;
|
---|
68 | }
|
---|
69 |
|
---|
70 |
|
---|
71 | AsmDecl::AsmDecl( AsmStmt *stmt ) : Declaration( "", Type::StorageClasses(), LinkageSpec::C ), stmt( stmt ) {
|
---|
72 | }
|
---|
73 |
|
---|
74 | AsmDecl::AsmDecl( const AsmDecl &other ) : Declaration( other ), stmt( maybeClone( other.stmt ) ) {
|
---|
75 | }
|
---|
76 |
|
---|
77 | AsmDecl::~AsmDecl() {
|
---|
78 | delete stmt;
|
---|
79 | }
|
---|
80 |
|
---|
81 | void AsmDecl::print( std::ostream &os, int indent ) const {
|
---|
82 | stmt->print( os, indent );
|
---|
83 | }
|
---|
84 |
|
---|
85 | void AsmDecl::printShort( std::ostream &os, int indent ) const {
|
---|
86 | stmt->print( os, indent );
|
---|
87 | }
|
---|
88 |
|
---|
89 |
|
---|
90 | // Local Variables: //
|
---|
91 | // tab-width: 4 //
|
---|
92 | // mode: c++ //
|
---|
93 | // compile-command: "make install" //
|
---|
94 | // End: //
|
---|