source: src/GenPoly/GenPoly.h @ 3606fe4

ADTast-experimentalpthread-emulation
Last change on this file since 3606fe4 was 3606fe4, checked in by Andrew Beach <ajbeach@…>, 20 months ago

Translated Instantiate Generic to the new AST. This includes various utilities and some assorted clean-up.

  • Property mode set to 100644
File size: 6.9 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// GenPoly.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Mon May 18 07:44:20 2015
11// Last Modified By : Andrew Beach
12// Last Modified On : Fri Aug 19 16:03:00 2022
13// Update Count     : 8
14//
15
16#pragma once
17
18#include <iostream>               // for ostream
19#include <string>                 // for string, allocator, operator+, basic...
20
21#include "ErasableScopedMap.h"    // for ErasableScopedMap
22#include "AST/Fwd.hpp"
23#include "SymTab/Mangler.h"       // for Mangler
24#include "SynTree/Declaration.h"  // for TypeDecl::Data, AggregateDecl, Type...
25#include "SynTree/SynTree.h"      // for Visitor Nodes
26
27namespace GenPoly {
28
29        // TODO Via some tricks this works for ast::TypeDecl::Data as well.
30        typedef ErasableScopedMap< std::string, TypeDecl::Data > TyVarMap;
31
32        /// Replaces a TypeInstType by its referrent in the environment, if applicable
33        Type* replaceTypeInst( Type* type, const TypeSubstitution* env );
34
35        /// returns polymorphic type if is polymorphic type, NULL otherwise; will look up substitution in env if provided
36        Type *isPolyType( Type *type, const TypeSubstitution *env = 0 );
37        const ast::Type * isPolyType(const ast::Type * type, const ast::TypeSubstitution * env = nullptr);
38
39        /// returns polymorphic type if is polymorphic type in tyVars, NULL otherwise; will look up substitution in env if provided
40        Type *isPolyType( Type *type, const TyVarMap &tyVars, const TypeSubstitution *env = 0 );
41        const ast::Type * isPolyType(const ast::Type * type, const TyVarMap & tyVars, const ast::TypeSubstitution * env = nullptr);
42
43        /// returns dynamic-layout type if is dynamic-layout type in tyVars, NULL otherwise; will look up substitution in env if provided
44        ReferenceToType *isDynType( Type *type, const TyVarMap &tyVars, const TypeSubstitution *env = 0 );
45        const ast::BaseInstType *isDynType( const ast::Type *type, const TyVarMap &tyVars, const ast::TypeSubstitution *typeSubs = 0 );
46
47        /// true iff function has dynamic-layout return type under the given type variable map
48        ReferenceToType *isDynRet( FunctionType *function, const TyVarMap &tyVars );
49
50        /// true iff function has dynamic-layout return type under the type variable map generated from its forall-parameters
51        ReferenceToType *isDynRet( FunctionType *function );
52
53        /// A function needs an adapter if it returns a dynamic-layout value or if any of its parameters have dynamic-layout type
54        bool needsAdapter( FunctionType *adaptee, const TyVarMap &tyVarr );
55
56        /// returns polymorphic type if is pointer to polymorphic type, NULL otherwise; will look up substitution in env if provided
57        Type *isPolyPtr( Type *type, const TypeSubstitution *env = 0 );
58
59        /// returns polymorphic type if is pointer to polymorphic type in tyVars, NULL otherwise; will look up substitution in env if provided
60        Type *isPolyPtr( Type *type, const TyVarMap &tyVars, const TypeSubstitution *env = 0 );
61
62        /// if the base type (after dereferencing N >= 0 pointers) is a polymorphic type, returns the base type, NULL otherwise;
63        /// N will be stored in levels, if provided, will look up substitution in env if provided
64        Type *hasPolyBase( Type *type, int *levels = 0, const TypeSubstitution *env = 0 );
65
66        /// if the base type (after dereferencing N >= 0 pointers) is a polymorphic type in tyVars, returns the base type, NULL otherwise;
67        /// N will be stored in levels, if provided, will look up substitution in env if provided
68        Type *hasPolyBase( Type *type, const TyVarMap &tyVars, int *levels = 0, const TypeSubstitution *env = 0 );
69
70        /// true iff this type or some base of this type after dereferencing pointers is either polymorphic or a generic type with at least one
71        /// polymorphic parameter; will look up substitution in env if provided.
72        bool includesPolyType( Type *type, const TypeSubstitution *env = 0 );
73
74        /// true iff this type or some base of this type after dereferencing pointers is either polymorphic in tyVars, or a generic type with
75        /// at least one polymorphic parameter in tyVars; will look up substitution in env if provided.
76        bool includesPolyType( Type *type, const TyVarMap &tyVars, const TypeSubstitution *env = 0 );
77
78        /// Returns a pointer to the base FunctionType if ty is the type of a function (or pointer to one), NULL otherwise
79        FunctionType *getFunctionType( Type *ty );
80        const ast::FunctionType * getFunctionType( const ast::Type * ty );
81
82        /// If expr (after dereferencing N >= 0 pointers) is a variable expression, returns the variable expression, NULL otherwise;
83        /// N will be stored in levels, if provided
84        VariableExpr *getBaseVar( Expression *expr, int *levels = 0 );
85
86        /// true iff types are structurally identical, where TypeInstType's match any type.
87        bool typesPolyCompatible( Type *aty, Type *bty );
88        bool typesPolyCompatible( ast::Type const * lhs, ast::Type const * rhs );
89
90        /// true if arg requires boxing given exprTyVars
91        bool needsBoxing( Type * param, Type * arg, const TyVarMap &exprTyVars, const TypeSubstitution * env );
92        bool needsBoxing( const ast::Type * param, const ast::Type * arg, const TyVarMap &exprTyVars, const ast::TypeSubstitution * env);
93
94        /// true if arg requires boxing in the call to appExpr
95        bool needsBoxing( Type * param, Type * arg, ApplicationExpr * appExpr, const TypeSubstitution * env );
96        bool needsBoxing( const ast::Type * param, const ast::Type * arg, const ast::ApplicationExpr * appExpr, const ast::TypeSubstitution * env);
97
98        /// Adds the type variable `tyVar` to `tyVarMap`
99        void addToTyVarMap( TypeDecl * tyVar, TyVarMap &tyVarMap );
100
101        /// Adds the declarations in the forall list of type (and its pointed-to type if it's a pointer type) to `tyVarMap`
102        void makeTyVarMap( Type *type, TyVarMap &tyVarMap );
103        void makeTyVarMap(const ast::Type * type, TyVarMap & tyVarMap);
104
105        /// Prints type variable map
106        void printTyVarMap( std::ostream &os, const TyVarMap &tyVarMap );
107
108        /// Gets the mangled name of this type; alias for SymTab::Mangler::mangleType().
109        inline std::string mangleType( Type *ty ) { return SymTab::Mangler::mangleType( ty ); }
110
111        /// Gets the name of the sizeof parameter for the type, given its mangled name
112        inline std::string sizeofName( const std::string &name ) { return std::string( "_sizeof_" ) + name; }
113
114        /// Gets the name of the alignof parameter for the type, given its mangled name
115        inline std::string alignofName( const std::string &name ) { return std::string( "_alignof_" ) + name; }
116
117        /// Gets the name of the offsetof parameter for the type, given its mangled name
118        inline std::string offsetofName( const std::string &name ) { return std::string( "_offsetof_" ) + name; }
119
120        /// Gets the name of the layout function for a given aggregate type, given its declaration
121        inline std::string layoutofName( AggregateDecl *decl ) { return std::string( "_layoutof_" ) + decl->get_name(); }
122
123} // namespace GenPoly
124
125// Local Variables: //
126// tab-width: 4 //
127// mode: c++ //
128// compile-command: "make install" //
129// End: //
Note: See TracBrowser for help on using the repository browser.