source: src/SynTree/Declaration.cc @ 9be45a2

ADTarm-ehast-experimentalenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprpthread-emulationqualifiedEnum
Last change on this file since 9be45a2 was 77bfc80, checked in by Thierry Delisle <tdelisle@…>, 5 years ago

Fixed some warnings and better messaging for unimplemented stubs

  • Property mode set to 100644
File size: 3.4 KB
RevLine 
[0dd3a2f]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//
[f9cebb5]7// Declaration.cc --
[0dd3a2f]8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
[65cdc1e]11// Last Modified By : Andrew Beach
12// Last Modified On : Wed Aug  9 14:38:00 2017
13// Update Count     : 25
[0dd3a2f]14//
[51b7345]15
[ea6332d]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
[51b7345]22#include "Declaration.h"
[ea6332d]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
[51b7345]27
28static UniqueId lastUniqueId = 0;
29typedef std::map< UniqueId, Declaration* > IdMapType;
30static IdMapType idMap;
31
[68fe077a]32Declaration::Declaration( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage )
[77bfc80]33                : name( name ), linkage( linkage ), uniqueId( 0 ), storageClasses( scs ) {
[51b7345]34}
35
36Declaration::Declaration( const Declaration &other )
[77bfc80]37        : BaseSyntaxNode( other ), name( other.name ), linkage( other.linkage ), extension( other.extension ), uniqueId( other.uniqueId ), storageClasses( other.storageClasses ) {
[51b7345]38}
39
[0dd3a2f]40Declaration::~Declaration() {
[51b7345]41}
42
[0dd3a2f]43void Declaration::fixUniqueId() {
[582ee28]44        // don't need to set unique ID twice
45        if ( uniqueId ) return;
[0dd3a2f]46        uniqueId = ++lastUniqueId;
47        idMap[ uniqueId ] = this;
[51b7345]48}
49
[0dd3a2f]50Declaration *Declaration::declFromId( UniqueId id ) {
51        IdMapType::const_iterator i = idMap.find( id );
[68cd1ce]52        return i != idMap.end() ? i->second : 0;
[51b7345]53}
54
[0dd3a2f]55void Declaration::dumpIds( std::ostream &os ) {
56        for ( IdMapType::const_iterator i = idMap.begin(); i != idMap.end(); ++i ) {
57                os << i->first << " -> ";
58                i->second->printShort( os );
59                os << std::endl;
60        } // for
[51b7345]61}
62
[baf7fee]63
[68fe077a]64AsmDecl::AsmDecl( AsmStmt *stmt ) : Declaration( "", Type::StorageClasses(), LinkageSpec::C ), stmt( stmt ) {
[e994912]65}
66
67AsmDecl::AsmDecl( const AsmDecl &other ) : Declaration( other ), stmt( maybeClone( other.stmt ) ) {
68}
69
70AsmDecl::~AsmDecl() {
71        delete stmt;
72}
73
[50377a4]74void AsmDecl::print( std::ostream &os, Indenter indent ) const {
[e994912]75        stmt->print( os, indent );
76}
77
[50377a4]78void AsmDecl::printShort( std::ostream &os, Indenter indent ) const {
[e994912]79        stmt->print( os, indent );
80}
81
82
[f6e3e34]83StaticAssertDecl::StaticAssertDecl( Expression * condition, ConstantExpr * message ) : Declaration( "", Type::StorageClasses(), LinkageSpec::C ), condition( condition ), message( message )  {
84}
85
86StaticAssertDecl::StaticAssertDecl( const StaticAssertDecl & other ) : Declaration( other ), condition( maybeClone( other.condition ) ), message( maybeClone( other.message ) )  {
87}
88
89StaticAssertDecl::~StaticAssertDecl() {
90        delete condition;
91        delete message;
92}
93
94void StaticAssertDecl::print( std::ostream &os, Indenter indent ) const {
95        os << "Static Assert with condition: ";
96        condition->print( os, indent+1 );
97        os << std::endl << indent << "and message: ";
98        message->print( os, indent+1 );
99os << std::endl;
100}
101
102void StaticAssertDecl::printShort( std::ostream &os, Indenter indent ) const {
103        print( os, indent );
104}
105
[3ed994e]106
[0dd3a2f]107// Local Variables: //
108// tab-width: 4 //
109// mode: c++ //
110// compile-command: "make install" //
111// End: //
Note: See TracBrowser for help on using the repository browser.