source: src/ResolvExpr/TypeEnvironment.h @ 0873d22e

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

Update documentation for AssertCompare?

  • Property mode set to 100644
File size: 5.7 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// TypeEnvironment.h --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 12:24:58 2015
11// Last Modified By : Peter A. Buhr
12// Last Modified On : Sat Jul 22 09:35:45 2017
13// Update Count     : 3
14//
15
16#pragma once
17
18#include <iostream>                    // for ostream
19#include <list>                        // for list, list<>::iterator, list<>...
20#include <map>                         // for map, map<>::value_compare
21#include <set>                         // for set
22#include <string>                      // for string
23
24#include "SynTree/Declaration.h"       // for TypeDecl::Data, DeclarationWit...
25#include "SynTree/SynTree.h"           // for UniqueId
26#include "SynTree/Type.h"              // for Type, Type::ForallList
27#include "SynTree/TypeSubstitution.h"  // for TypeSubstitution
28
29namespace ResolvExpr {
30        // adding this comparison operator significantly improves assertion resolution run time for
31        // some cases. The current resolution algorithm's speed partially depends on the order of
32        // assertions. Assertions which have fewer possible matches should appear before
33        // assertions which have more possible matches. This seems to imply that this could
34        // be further improved by providing an indexer as an additional argument and ordering based
35        // on the number of matches of the same kind (object, function) for the names of the
36        // declarations.
37        //
38        // I've seen a TU go from 54 minutes to 1 minute 34 seconds with the addition of this comparator.
39        //
40        // Note: since this compares pointers for position, minor changes in the source file that affect
41        // memory layout can alter compilation time in unpredictable ways. For example, the placement
42        // of a line directive can reorder type pointers with respect to each other so that assertions
43        // are seen in different orders, causing a potentially different number of unification calls when
44        // resolving assertions. I've seen a TU go from 36 seconds to 27 seconds by reordering line directives
45        // alone, so it would be nice to fix this comparison so that assertions compare more consistently.
46        // I've tried to modify this to compare on mangle name instead of type as the second comparator, but
47        // this causes some assertions to never be recorded. More investigation is needed.
48        struct AssertCompare {
49                bool operator()( DeclarationWithType * d1, DeclarationWithType * d2 ) const {
50                        int cmp = d1->get_name().compare( d2->get_name() );
51                        return cmp < 0 ||
52                                ( cmp == 0 && d1->get_type() < d2->get_type() );
53                }
54        };
55        struct AssertionSetValue {
56                bool isUsed;
57                // chain of Unique IDs of the assertion declarations. The first ID in the chain is the ID of an assertion on the current type,
58                // with each successive ID being the ID of an assertion pulled in by the previous ID. The last ID in the chain is
59                // the ID of the assertion that pulled in the current assertion.
60                std::list< UniqueId > idChain;
61        };
62        typedef std::map< DeclarationWithType*, AssertionSetValue, AssertCompare > AssertionSet;
63        typedef std::map< std::string, TypeDecl::Data > OpenVarSet;
64
65        void printAssertionSet( const AssertionSet &, std::ostream &, int indent = 0 );
66        void printOpenVarSet( const OpenVarSet &, std::ostream &, int indent = 0 );
67
68        struct EqvClass {
69                std::set< std::string > vars;
70                Type *type;
71                bool allowWidening;
72                TypeDecl::Data data;
73
74                void initialize( const EqvClass &src, EqvClass &dest );
75                EqvClass();
76                EqvClass( const EqvClass &other );
77                EqvClass &operator=( const EqvClass &other );
78                ~EqvClass();
79                void print( std::ostream &os, Indenter indent = {} ) const;
80        };
81
82        class TypeEnvironment {
83          public:
84                bool lookup( const std::string &var, EqvClass &eqvClass ) const;
85                void add( const EqvClass &eqvClass );
86                void add( const Type::ForallList &tyDecls );
87                void add( const TypeSubstitution & sub );
88                template< typename SynTreeClass > int apply( SynTreeClass *&type ) const;
89                template< typename SynTreeClass > int applyFree( SynTreeClass *&type ) const;
90                void makeSubstitution( TypeSubstitution &result ) const;
91                bool isEmpty() const { return env.empty(); }
92                void print( std::ostream &os, Indenter indent = {} ) const;
93                void combine( const TypeEnvironment &second, Type *(*combineFunc)( Type*, Type* ) );
94                void simpleCombine( const TypeEnvironment &second );
95                void extractOpenVars( OpenVarSet &openVars ) const;
96                TypeEnvironment *clone() const { return new TypeEnvironment( *this ); }
97
98                /// Iteratively adds the environment of a new actual (with allowWidening = false),
99                /// and extracts open variables.
100                void addActual( const TypeEnvironment& actualEnv, OpenVarSet& openVars );
101
102                typedef std::list< EqvClass >::iterator iterator;
103                iterator begin() { return env.begin(); }
104                iterator end() { return env.end(); }
105                typedef std::list< EqvClass >::const_iterator const_iterator;
106                const_iterator begin() const { return env.begin(); }
107                const_iterator end() const { return env.end(); }
108          private:
109                std::list< EqvClass > env;
110                std::list< EqvClass >::iterator internal_lookup( const std::string &var );
111        };
112
113        template< typename SynTreeClass >
114        int TypeEnvironment::apply( SynTreeClass *&type ) const {
115                TypeSubstitution sub;
116                makeSubstitution( sub );
117                return sub.apply( type );
118        }
119
120        template< typename SynTreeClass >
121        int TypeEnvironment::applyFree( SynTreeClass *&type ) const {
122                TypeSubstitution sub;
123                makeSubstitution( sub );
124                return sub.applyFree( type );
125        }
126
127        std::ostream & operator<<( std::ostream & out, const TypeEnvironment & env );
128} // namespace ResolvExpr
129
130// Local Variables: //
131// tab-width: 4 //
132// mode: c++ //
133// compile-command: "make install" //
134// End: //
Note: See TracBrowser for help on using the repository browser.