source: src/SynTree/FunctionDecl.cc @ 0794365

ast-experimental
Last change on this file since 0794365 was 056bee8, checked in by Andrew Beach <ajbeach@…>, 15 months ago

Added printing of with clauses to the printing of both new and old ast nodes.

  • Property mode set to 100644
File size: 3.6 KB
Line 
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// FunctionDecl.cc --
8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Mon Dec 16 15:11:20 2019
13// Update Count     : 77
14//
15
16#include <cassert>               // for assert
17#include <list>                  // for list
18#include <ostream>               // for operator<<, ostream, basic_ostream
19#include <string>                // for operator<<, string, char_traits, ope...
20
21#include "Attribute.h"           // for Attribute
22#include "CodeGen/FixMain.h"     // for FixMain
23#include "Common/utility.h"      // for maybeClone, printAll
24#include "Declaration.h"         // for FunctionDecl, FunctionDecl::Parent
25#include "Expression.h"
26#include "LinkageSpec.h"         // for Spec, linkageName, Cforall
27#include "Statement.h"           // for CompoundStmt
28#include "Type.h"                // for Type, FunctionType, Type::FuncSpecif...
29#include "DeclReplacer.h"
30
31extern bool translation_unit_nomain;
32
33FunctionDecl::FunctionDecl( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, FunctionType *type, CompoundStmt *statements, std::list< Attribute * > attributes, Type::FuncSpecifiers fs )
34        : Parent( name, scs, linkage, attributes, fs ), type( type ), statements( statements ) {
35        // hack forcing the function "main" to have Cforall linkage to replace main even if it is inside an extern
36        if ( name == "main" ) {
37                set_linkage( CodeGen::FixMain::mainLinkage() );
38        } // if
39}
40
41FunctionDecl::FunctionDecl( const FunctionDecl &other )
42                : Parent( other ), type( maybeClone( other.type ) ), statements( maybeClone( other.statements ) ) {
43
44        DeclReplacer::DeclMap declMap;
45        for ( auto p : group_iterate( other.type->parameters, type->parameters ) ) {
46                declMap[ std::get<0>(p) ] = std::get<1>(p);
47        }
48        for ( auto p : group_iterate( other.type->returnVals, type->returnVals ) ) {
49                declMap[ std::get<0>(p) ] = std::get<1>(p);
50        }
51        if ( ! declMap.empty() ) {
52                DeclReplacer::replace( this, declMap );
53        }
54        cloneAll( other.withExprs, withExprs );
55}
56
57FunctionDecl::~FunctionDecl() {
58        delete type;
59        delete statements;
60        deleteAll( withExprs );
61}
62
63FunctionDecl * FunctionDecl::newFunction( const std::string & name, FunctionType * type, CompoundStmt * statements ) {
64        return new FunctionDecl( name, Type::StorageClasses(), LinkageSpec::C, type, statements );
65}
66
67void FunctionDecl::print( std::ostream &os, Indenter indent ) const {
68        using std::endl;
69        using std::string;
70
71        if ( name != "" ) {
72                os << name << ": ";
73        } // if
74        if ( linkage != LinkageSpec::Cforall ) {
75                os << LinkageSpec::name( linkage ) << " ";
76        } // if
77
78        printAll( attributes, os, indent );
79
80        get_storageClasses().print( os );
81        get_funcSpec().print( os );
82
83        if ( type ) {
84                type->print( os, indent );
85        } else {
86                os << "untyped entity ";
87        } // if
88
89        if ( !withExprs.empty() ) {
90                os << indent << "... with clause" << std::endl;
91                os << indent + 1;
92                printAll( withExprs, os, indent + 1 );
93        }
94
95        if ( statements ) {
96                os << indent << "... with body" << endl << indent+1;
97                statements->print( os, indent+1 );
98        } // if
99}
100
101void FunctionDecl::printShort( std::ostream &os, Indenter indent ) const {
102        using std::endl;
103        using std::string;
104
105        if ( name != "" ) {
106                os << name << ": ";
107        } // if
108
109        get_storageClasses().print( os );
110        get_funcSpec().print( os );
111
112        if ( type ) {
113                type->print( os, indent );
114        } else {
115                os << "untyped entity ";
116        } // if
117}
118
119// Local Variables: //
120// tab-width: 4 //
121// mode: c++ //
122// compile-command: "make install" //
123// End: //
Note: See TracBrowser for help on using the repository browser.