Changeset 8135d4c for src/GenPoly/Box.cc


Ignore:
Timestamp:
Aug 22, 2017, 7:31:52 PM (7 years ago)
Author:
Rob Schluntz <rschlunt@…>
Branches:
ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
Children:
9aaac6e9
Parents:
fc56cdbf (diff), b3d413b (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' into references

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/GenPoly/Box.cc

    rfc56cdbf r8135d4c  
    1414//
    1515
    16 #include <algorithm>
    17 #include <iterator>
    18 #include <list>
    19 #include <map>
    20 #include <set>
    21 #include <stack>
    22 #include <string>
    23 #include <utility>
    24 #include <vector>
    25 #include <cassert>
     16#include <algorithm>                     // for mismatch
     17#include <cassert>                       // for assert, safe_dynamic_cast
     18#include <iostream>                      // for operator<<, stringstream
     19#include <list>                          // for list, list<>::iterator, _Lis...
     20#include <map>                           // for _Rb_tree_const_iterator, map
     21#include <memory>                        // for auto_ptr
     22#include <set>                           // for set
     23#include <string>                        // for string, allocator, basic_string
     24#include <utility>                       // for pair
    2625
    2726#include "Box.h"
    28 #include "DeclMutator.h"
    29 #include "Lvalue.h"
    30 #include "FindFunction.h"
    31 #include "PolyMutator.h"
    32 #include "ScopedSet.h"
    33 #include "ScrubTyVars.h"
    34 
    35 #include "Parser/ParseNode.h"
    36 
    37 #include "SynTree/Attribute.h"
    38 #include "SynTree/Constant.h"
    39 #include "SynTree/Declaration.h"
    40 #include "SynTree/Expression.h"
    41 #include "SynTree/Initializer.h"
    42 #include "SynTree/Mutator.h"
    43 #include "SynTree/Statement.h"
    44 #include "SynTree/Type.h"
    45 #include "SynTree/TypeSubstitution.h"
    46 
    47 #include "ResolvExpr/TypeEnvironment.h"
    48 #include "ResolvExpr/TypeMap.h"
    49 #include "ResolvExpr/typeops.h"
    50 
    51 #include "SymTab/Indexer.h"
    52 #include "SymTab/Mangler.h"
    53 
    54 #include "Common/ScopedMap.h"
    55 #include "Common/SemanticError.h"
    56 #include "Common/UniqueName.h"
    57 #include "Common/utility.h"
    5827
    5928#include "CodeGen/OperatorTable.h"
    60 
    61 #include "InitTweak/InitTweak.h"
    62 
    63 #include <ext/functional> // temporary
     29#include "Common/ScopedMap.h"            // for ScopedMap, ScopedMap<>::iter...
     30#include "Common/SemanticError.h"        // for SemanticError
     31#include "Common/UniqueName.h"           // for UniqueName
     32#include "Common/utility.h"              // for toString
     33#include "DeclMutator.h"                 // for DeclMutator
     34#include "FindFunction.h"                // for findFunction, findAndReplace...
     35#include "GenPoly/ErasableScopedMap.h"   // for ErasableScopedMap<>::const_i...
     36#include "GenPoly/GenPoly.h"             // for TyVarMap, isPolyType, mangle...
     37#include "InitTweak/InitTweak.h"         // for getFunctionName, isAssignment
     38#include "Lvalue.h"                      // for generalizedLvalue
     39#include "Parser/LinkageSpec.h"          // for C, Spec, Cforall, Intrinsic
     40#include "PolyMutator.h"                 // for PolyMutator
     41#include "ResolvExpr/TypeEnvironment.h"  // for EqvClass
     42#include "ResolvExpr/typeops.h"          // for typesCompatible
     43#include "ScopedSet.h"                   // for ScopedSet, ScopedSet<>::iter...
     44#include "ScrubTyVars.h"                 // for ScrubTyVars
     45#include "SymTab/Indexer.h"              // for Indexer
     46#include "SymTab/Mangler.h"              // for Mangler
     47#include "SynTree/Attribute.h"           // for Attribute
     48#include "SynTree/Constant.h"            // for Constant
     49#include "SynTree/Declaration.h"         // for DeclarationWithType, ObjectDecl
     50#include "SynTree/Expression.h"          // for ApplicationExpr, UntypedExpr
     51#include "SynTree/Initializer.h"         // for SingleInit, Initializer, Lis...
     52#include "SynTree/Label.h"               // for Label, noLabels
     53#include "SynTree/Mutator.h"             // for maybeMutate, Mutator, mutateAll
     54#include "SynTree/Statement.h"           // for ExprStmt, DeclStmt, ReturnStmt
     55#include "SynTree/SynTree.h"             // for UniqueId
     56#include "SynTree/Type.h"                // for Type, FunctionType, PointerType
     57#include "SynTree/TypeSubstitution.h"    // for TypeSubstitution, operator<<
    6458
    6559namespace GenPoly {
Note: See TracChangeset for help on using the changeset viewer.