source: src/InitTweak/GenInit.h@ 1931bb01

ADT ast-experimental pthread-emulation qualifiedEnum
Last change on this file since 1931bb01 was 4ec9513, checked in by Andrew Beach <ajbeach@…>, 3 years ago

Converted validate C, including adding DimensionExpr to the new ast.

  • Property mode set to 100644
File size: 2.8 KB
RevLine 
[51587aa]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//
[f0121d7]7// GenInit.h --
[51587aa]8//
[843054c2]9// Author : Rodolfo G. Esteves
[51587aa]10// Created On : Mon May 18 07:44:20 2015
[a36eb2d]11// Last Modified By : Andrew Beach
[4ec9513]12// Last Modified On : Fri Mar 18 14:22:00 2022
13// Update Count : 7
[51587aa]14//
[48e99f2]15
[6b0b624]16#pragma once
[48e99f2]17
[bfd4974]18#include <list> // for list
19#include <string> // for string
[48e99f2]20
[234b1cb]21#include "AST/Fwd.hpp"
[b8524ca]22#include "Common/CodeLocation.h"
[bfd4974]23#include "GenPoly/ScopedSet.h" // for ScopedSet
[234b1cb]24#include "SynTree/SynTree.h" // for Visitor Nodes
[48e99f2]25
26namespace InitTweak {
[a0fdbd5]27 /// Adds return value temporaries and wraps Initializers in ConstructorInit nodes
28 void genInit( std::list< Declaration * > & translationUnit );
[a36eb2d]29 void genInit( ast::TranslationUnit & translationUnit );
[f0121d7]30
[8b11840]31 /// Converts return statements into copy constructor calls on the hidden return variable
32 void fixReturnStatements( std::list< Declaration * > & translationUnit );
[4ec9513]33 void fixReturnStatements( ast::TranslationUnit & translationUnit );
[8b11840]34
35 /// generates a single ctor/dtor statement using objDecl as the 'this' parameter and arg as the optional argument
36 ImplicitCtorDtorStmt * genCtorDtor( const std::string & fname, ObjectDecl * objDecl, Expression * arg = nullptr );
[490fb92e]37 ast::ptr<ast::Stmt> genCtorDtor (const CodeLocation & loc, const std::string & fname, const ast::ObjectDecl * objDecl, const ast::Expr * arg = nullptr);
[092528b]38
[f0121d7]39 /// creates an appropriate ConstructorInit node which contains a constructor, destructor, and C-initializer
40 ConstructorInit * genCtorInit( ObjectDecl * objDecl );
[b8524ca]41 ast::ConstructorInit * genCtorInit( const CodeLocation & loc, const ast::ObjectDecl * objDecl );
[bfd4974]42
43 class ManagedTypes {
44 public:
45 bool isManaged( ObjectDecl * objDecl ) const ; // determine if object is managed
46 bool isManaged( Type * type ) const; // determine if type is managed
47
48 void handleDWT( DeclarationWithType * dwt ); // add type to managed if ctor/dtor
49 void handleStruct( StructDecl * aggregateDecl ); // add type to managed if child is managed
50
51 void beginScope();
52 void endScope();
53 private:
54 GenPoly::ScopedSet< std::string > managedTypes;
55 };
[16ba4a6f]56
57 class ManagedTypes_new {
58 public:
59 bool isManaged( const ast::ObjectDecl * objDecl ) const ; // determine if object is managed
60 bool isManaged( const ast::Type * type ) const; // determine if type is managed
61
62 void handleDWT( const ast::DeclWithType * dwt ); // add type to managed if ctor/dtor
63 void handleStruct( const ast::StructDecl * aggregateDecl ); // add type to managed if child is managed
64
65 void beginScope();
66 void endScope();
67 private:
68 GenPoly::ScopedSet< std::string > managedTypes;
69 };
[02c7d04]70} // namespace
[48e99f2]71
[51587aa]72// Local Variables: //
73// tab-width: 4 //
74// mode: c++ //
75// compile-command: "make install" //
76// End: //
Note: See TracBrowser for help on using the repository browser.