source: src/GenPoly/GenPoly.h @ 1fb09ef

ADTast-experimental
Last change on this file since 1fb09ef was 4da152a, checked in by Andrew Beach <ajbeach@…>, 20 months ago

Cleaning old box pass for easier translation. Adding a bunch of const qualifiers. Hopefully this will remove some ambiguity about where changes happen, but const is dropped quickly in the old ast.

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