source: src/ResolvExpr/typeops.h @ ecd4923

ADTaaron-thesisarm-ehast-experimentalcleanup-dtorsdeferred_resndemanglerenumforall-pointer-decayjacob/cs343-translationjenkins-sandboxnew-astnew-ast-unique-exprnew-envno_listpersistent-indexerpthread-emulationqualifiedEnumresolv-newwith_gc
Last change on this file since ecd4923 was 6d2f993, checked in by Rob Schluntz <rschlunt@…>, 6 years ago

Move referenceToRvalueConversion declaration

  • Property mode set to 100644
File size: 4.1 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// typeops.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 07:28:22 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Sat Jul 22 09:36:18 2017
13// Update Count     : 3
14//
15
16#pragma once
17
18#include <vector>
19
20#include "SynTree/SynTree.h"
21#include "SynTree/Type.h"
22#include "SymTab/Indexer.h"
23#include "Cost.h"
24#include "TypeEnvironment.h"
25
26namespace ResolvExpr {
27        // combos: takes a list of sets and returns a set of lists representing every possible way of forming a list by
28        // picking one element out of each set
29        template< typename InputIterator, typename OutputIterator >
30        void combos( InputIterator begin, InputIterator end, OutputIterator out ) {
31                typedef typename InputIterator::value_type SetType;
32                typedef typename std::vector< typename SetType::value_type > ListType;
33
34                if ( begin == end )     {
35                        *out++ = ListType();
36                        return;
37                } // if
38
39                InputIterator current = begin;
40                begin++;
41
42                std::vector< ListType > recursiveResult;
43                combos( begin, end, back_inserter( recursiveResult ) );
44
45                for ( const auto& i : recursiveResult ) for ( const auto& j : *current ) {
46                        ListType result;
47                        std::back_insert_iterator< ListType > inserter = back_inserter( result );
48                        *inserter++ = j;
49                        std::copy( i.begin(), i.end(), inserter );
50                        *out++ = result;
51                }
52        }
53
54        // in AdjustExprType.cc
55        /// Replaces array types with the equivalent pointer, and function types with a pointer-to-function
56        void adjustExprType( Type *&type, const TypeEnvironment &env, const SymTab::Indexer &indexer );
57
58        template< typename ForwardIterator >
59        void adjustExprTypeList( ForwardIterator begin, ForwardIterator end, const TypeEnvironment &env, const SymTab::Indexer &indexer ) {
60                while ( begin != end ) {
61                        adjustExprType( *begin++, env, indexer );
62                } // while
63        }
64
65        // in CastCost.cc
66        Cost castCost( Type *src, Type *dest, const SymTab::Indexer &indexer, const TypeEnvironment &env );
67
68        // in ConversionCost.cc
69        Cost conversionCost( Type *src, Type *dest, const SymTab::Indexer &indexer, const TypeEnvironment &env );
70
71        // in PtrsAssignable.cc
72        int ptrsAssignable( Type *src, Type *dest, const TypeEnvironment &env );
73
74        // in PtrsCastable.cc
75        int ptrsCastable( Type *src, Type *dest, const TypeEnvironment &env, const SymTab::Indexer &indexer );
76
77        // in Unify.cc
78        bool isFtype( Type *type );
79        bool typesCompatible( Type *, Type *, const SymTab::Indexer &indexer, const TypeEnvironment &env );
80        bool typesCompatibleIgnoreQualifiers( Type *, Type *, const SymTab::Indexer &indexer, const TypeEnvironment &env );
81
82        inline bool typesCompatible( Type *t1, Type *t2, const SymTab::Indexer &indexer ) {
83                TypeEnvironment env;
84                return typesCompatible( t1, t2, indexer, env );
85        }
86
87        inline bool typesCompatibleIgnoreQualifiers( Type *t1, Type *t2, const SymTab::Indexer &indexer ) {
88                TypeEnvironment env;
89                return typesCompatibleIgnoreQualifiers( t1, t2, indexer, env );
90        }
91
92        /// creates the type represented by the list of returnVals in a FunctionType. The caller owns the return value.
93        Type * extractResultType( FunctionType * functionType );
94
95        // in CommonType.cc
96        Type *commonType( Type *type1, Type *type2, bool widenFirst, bool widenSecond, const SymTab::Indexer &indexer, TypeEnvironment &env, const OpenVarSet &openVars );
97
98        // in PolyCost.cc
99        int polyCost( Type *type, const TypeEnvironment &env, const SymTab::Indexer &indexer );
100
101        // in Occurs.cc
102        bool occurs( Type *type, std::string varName, const TypeEnvironment &env );
103
104        // in AlternativeFinder.cc
105        void referenceToRvalueConversion( Expression *& expr );
106
107        // flatten tuple type into list of types
108        template< typename OutputIterator >
109        void flatten( Type * type, OutputIterator out ) {
110                if ( TupleType * tupleType = dynamic_cast< TupleType * >( type ) ) {
111                        for ( Type * t : tupleType->get_types() ) {
112                                flatten( t, out );
113                        }
114                } else {
115                        *out++ = type->clone();
116                }
117        }
118} // namespace ResolvExpr
119
120// Local Variables: //
121// tab-width: 4 //
122// mode: c++ //
123// compile-command: "make install" //
124// End: //
Note: See TracBrowser for help on using the repository browser.