[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 | // |
---|
[9243a501] | 7 | // FunctionDecl.cc -- |
---|
[0dd3a2f] | 8 | // |
---|
| 9 | // Author : Richard C. Bilson |
---|
| 10 | // Created On : Mon May 18 07:44:20 2015 |
---|
[8b7ee09] | 11 | // Last Modified By : Peter A. Buhr |
---|
[ddfd945] | 12 | // Last Modified On : Thu Mar 16 08:33:41 2017 |
---|
| 13 | // Update Count : 74 |
---|
[0dd3a2f] | 14 | // |
---|
| 15 | |
---|
[ea6332d] | 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... |
---|
[51b7345] | 20 | |
---|
[ea6332d] | 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 "Parser/LinkageSpec.h" // for Spec, linkageName, Cforall |
---|
| 26 | #include "Statement.h" // for CompoundStmt |
---|
| 27 | #include "Type.h" // for Type, FunctionType, Type::FuncSpecif... |
---|
[51b7345] | 28 | |
---|
[3fe34ae] | 29 | extern bool translation_unit_nomain; |
---|
| 30 | |
---|
[ddfd945] | 31 | FunctionDecl::FunctionDecl( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, FunctionType *type, CompoundStmt *statements, std::list< Attribute * > attributes, Type::FuncSpecifiers fs ) |
---|
[a7c90d4] | 32 | : Parent( name, scs, linkage, attributes, fs ), type( type ), statements( statements ) { |
---|
[dd020c0] | 33 | // hack forcing the function "main" to have Cforall linkage to replace main even if it is inside an extern |
---|
[0dd3a2f] | 34 | if ( name == "main" ) { |
---|
[13de47bc] | 35 | set_linkage( CodeGen::FixMain::mainLinkage() ); |
---|
[0dd3a2f] | 36 | } // if |
---|
[51b7345] | 37 | } |
---|
| 38 | |
---|
| 39 | FunctionDecl::FunctionDecl( const FunctionDecl &other ) |
---|
[a7c90d4] | 40 | : Parent( other ), type( maybeClone( other.type ) ), statements( maybeClone( other.statements ) ) { |
---|
[51b7345] | 41 | } |
---|
| 42 | |
---|
[c11e31c] | 43 | FunctionDecl::~FunctionDecl() { |
---|
[0dd3a2f] | 44 | delete type; |
---|
| 45 | delete statements; |
---|
[51b7345] | 46 | } |
---|
| 47 | |
---|
[c11e31c] | 48 | void FunctionDecl::print( std::ostream &os, int indent ) const { |
---|
[0dd3a2f] | 49 | using std::endl; |
---|
| 50 | using std::string; |
---|
[9243a501] | 51 | |
---|
[0dd3a2f] | 52 | if ( get_name() != "" ) { |
---|
[5f2f2d7] | 53 | os << get_name() << ": "; |
---|
[0dd3a2f] | 54 | } // if |
---|
| 55 | if ( get_linkage() != LinkageSpec::Cforall ) { |
---|
[faddbd8] | 56 | os << LinkageSpec::linkageName( get_linkage() ) << " "; |
---|
[0dd3a2f] | 57 | } // if |
---|
[7baed7d] | 58 | |
---|
[f9cebb5] | 59 | printAll( get_attributes(), os, indent ); |
---|
[7baed7d] | 60 | |
---|
[6e8bd43] | 61 | get_storageClasses().print( os ); |
---|
| 62 | get_funcSpec().print( os ); |
---|
[dd020c0] | 63 | |
---|
[0dd3a2f] | 64 | if ( get_type() ) { |
---|
| 65 | get_type()->print( os, indent ); |
---|
| 66 | } else { |
---|
| 67 | os << "untyped entity "; |
---|
| 68 | } // if |
---|
[843054c2] | 69 | |
---|
[0dd3a2f] | 70 | if ( statements ) { |
---|
[de62360d] | 71 | os << string( indent + 2, ' ' ) << "with body " << endl; |
---|
[9243a501] | 72 | os << string( indent + 4, ' ' ); |
---|
[de62360d] | 73 | statements->print( os, indent + 4 ); |
---|
[0dd3a2f] | 74 | } // if |
---|
[51b7345] | 75 | } |
---|
| 76 | |
---|
[c11e31c] | 77 | void FunctionDecl::printShort( std::ostream &os, int indent ) const { |
---|
[0dd3a2f] | 78 | using std::endl; |
---|
| 79 | using std::string; |
---|
[9243a501] | 80 | |
---|
[0dd3a2f] | 81 | if ( get_name() != "" ) { |
---|
[5f2f2d7] | 82 | os << get_name() << ": "; |
---|
[0dd3a2f] | 83 | } // if |
---|
[7baed7d] | 84 | |
---|
| 85 | // xxx - should printShort print attributes? |
---|
| 86 | |
---|
[6e8bd43] | 87 | get_storageClasses().print( os ); |
---|
| 88 | get_funcSpec().print( os ); |
---|
[dd020c0] | 89 | |
---|
[0dd3a2f] | 90 | if ( get_type() ) { |
---|
| 91 | get_type()->print( os, indent ); |
---|
| 92 | } else { |
---|
| 93 | os << "untyped entity "; |
---|
| 94 | } // if |
---|
[51b7345] | 95 | } |
---|
[0dd3a2f] | 96 | |
---|
| 97 | // Local Variables: // |
---|
| 98 | // tab-width: 4 // |
---|
| 99 | // mode: c++ // |
---|
| 100 | // compile-command: "make install" // |
---|
| 101 | // End: // |
---|