source: src/SynTree/FunctionDecl.cc@ 9b4f329

ADT arm-eh ast-experimental cleanup-dtors enum forall-pointer-decay jacob/cs343-translation jenkins-sandbox new-ast new-ast-unique-expr pthread-emulation qualifiedEnum
Last change on this file since 9b4f329 was 08222c7, checked in by Thierry Delisle <tdelisle@…>, 7 years ago

Fixed some errors with incorrect trailing whitespace in the tests

  • Property mode set to 100644
File size: 3.5 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//
[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...
[51b73452]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...
[7862059]28#include "DeclReplacer.h"
[51b73452]29
[3fe34ae]30extern bool translation_unit_nomain;
31
[ddfd945]32FunctionDecl::FunctionDecl( const std::string &name, Type::StorageClasses scs, LinkageSpec::Spec linkage, FunctionType *type, CompoundStmt *statements, std::list< Attribute * > attributes, Type::FuncSpecifiers fs )
[a7c90d4]33 : Parent( name, scs, linkage, attributes, fs ), type( type ), statements( statements ) {
[dd020c0]34 // hack forcing the function "main" to have Cforall linkage to replace main even if it is inside an extern
[0dd3a2f]35 if ( name == "main" ) {
[13de47bc]36 set_linkage( CodeGen::FixMain::mainLinkage() );
[0dd3a2f]37 } // if
[51b73452]38}
39
40FunctionDecl::FunctionDecl( const FunctionDecl &other )
[a7c90d4]41 : Parent( other ), type( maybeClone( other.type ) ), statements( maybeClone( other.statements ) ) {
[97dbc09]42
[7862059]43 DeclReplacer::DeclMap declMap;
[97dbc09]44 for ( auto p : group_iterate( other.type->parameters, type->parameters ) ) {
45 declMap[ std::get<0>(p) ] = std::get<1>(p);
46 }
47 for ( auto p : group_iterate( other.type->returnVals, type->returnVals ) ) {
48 declMap[ std::get<0>(p) ] = std::get<1>(p);
49 }
50 if ( ! declMap.empty() ) {
[7862059]51 DeclReplacer::replace( this, declMap );
[97dbc09]52 }
[574894d]53 cloneAll( other.withExprs, withExprs );
[51b73452]54}
55
[c11e31c]56FunctionDecl::~FunctionDecl() {
[0dd3a2f]57 delete type;
58 delete statements;
[574894d]59 deleteAll( withExprs );
[51b73452]60}
61
[75626a1]62FunctionDecl * FunctionDecl::newFunction( const std::string & name, FunctionType * type, CompoundStmt * statements ) {
63 return new FunctionDecl( name, Type::StorageClasses(), LinkageSpec::C, type, statements );
64}
65
[50377a4]66void FunctionDecl::print( std::ostream &os, Indenter indent ) const {
[0dd3a2f]67 using std::endl;
68 using std::string;
[9243a501]69
[50377a4]70 if ( name != "" ) {
71 os << name << ": ";
[0dd3a2f]72 } // if
[50377a4]73 if ( linkage != LinkageSpec::Cforall ) {
74 os << LinkageSpec::linkageName( linkage ) << " ";
[0dd3a2f]75 } // if
[7baed7d]76
[50377a4]77 printAll( attributes, os, indent );
[7baed7d]78
[6e8bd43]79 get_storageClasses().print( os );
80 get_funcSpec().print( os );
[dd020c0]81
[50377a4]82 if ( type ) {
83 type->print( os, indent );
[0dd3a2f]84 } else {
85 os << "untyped entity ";
86 } // if
[843054c2]87
[0dd3a2f]88 if ( statements ) {
[08222c7]89 os << indent << "... with body" << endl << indent+1;
[50377a4]90 statements->print( os, indent+1 );
[0dd3a2f]91 } // if
[51b73452]92}
93
[50377a4]94void FunctionDecl::printShort( std::ostream &os, Indenter indent ) const {
[0dd3a2f]95 using std::endl;
96 using std::string;
[9243a501]97
[50377a4]98 if ( name != "" ) {
99 os << name << ": ";
[0dd3a2f]100 } // if
[7baed7d]101
[6e8bd43]102 get_storageClasses().print( os );
103 get_funcSpec().print( os );
[dd020c0]104
[50377a4]105 if ( type ) {
106 type->print( os, indent );
[0dd3a2f]107 } else {
108 os << "untyped entity ";
109 } // if
[51b73452]110}
[0dd3a2f]111
112// Local Variables: //
113// tab-width: 4 //
114// mode: c++ //
115// compile-command: "make install" //
116// End: //
Note: See TracBrowser for help on using the repository browser.