| 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 | // CommonType.cc -- | 
|---|
| 8 | // | 
|---|
| 9 | // Author           : Richard C. Bilson | 
|---|
| 10 | // Created On       : Sun May 17 06:59:27 2015 | 
|---|
| 11 | // Last Modified By : Peter A. Buhr | 
|---|
| 12 | // Last Modified On : Sun May 17 07:04:50 2015 | 
|---|
| 13 | // Update Count     : 2 | 
|---|
| 14 | // | 
|---|
| 15 |  | 
|---|
| 16 | #include "typeops.h" | 
|---|
| 17 | #include "SynTree/Type.h" | 
|---|
| 18 | #include "Unify.h" | 
|---|
| 19 |  | 
|---|
| 20 |  | 
|---|
| 21 | /// #define DEBUG | 
|---|
| 22 |  | 
|---|
| 23 | namespace ResolvExpr { | 
|---|
| 24 | class CommonType : public Visitor { | 
|---|
| 25 | public: | 
|---|
| 26 | CommonType( Type *type2, bool widenFirst, bool widenSecond, const SymTab::Indexer &indexer, TypeEnvironment &env, const OpenVarSet &openVars ); | 
|---|
| 27 | Type *get_result() const { return result; } | 
|---|
| 28 | private: | 
|---|
| 29 | virtual void visit( VoidType *voidType ); | 
|---|
| 30 | virtual void visit( BasicType *basicType ); | 
|---|
| 31 | virtual void visit( PointerType *pointerType ); | 
|---|
| 32 | virtual void visit( ArrayType *arrayType ); | 
|---|
| 33 | virtual void visit( FunctionType *functionType ); | 
|---|
| 34 | virtual void visit( StructInstType *aggregateUseType ); | 
|---|
| 35 | virtual void visit( UnionInstType *aggregateUseType ); | 
|---|
| 36 | virtual void visit( EnumInstType *aggregateUseType ); | 
|---|
| 37 | virtual void visit( ContextInstType *aggregateUseType ); | 
|---|
| 38 | virtual void visit( TypeInstType *aggregateUseType ); | 
|---|
| 39 | virtual void visit( TupleType *tupleType ); | 
|---|
| 40 |  | 
|---|
| 41 | template< typename RefType > void handleRefType( RefType *inst, Type *other ); | 
|---|
| 42 |  | 
|---|
| 43 | Type *result; | 
|---|
| 44 | Type *type2;                            // inherited | 
|---|
| 45 | bool widenFirst, widenSecond; | 
|---|
| 46 | const SymTab::Indexer &indexer; | 
|---|
| 47 | TypeEnvironment &env; | 
|---|
| 48 | const OpenVarSet &openVars; | 
|---|
| 49 | }; | 
|---|
| 50 |  | 
|---|
| 51 | Type *commonType( Type *type1, Type *type2, bool widenFirst, bool widenSecond, const SymTab::Indexer &indexer, TypeEnvironment &env, const OpenVarSet &openVars ) { | 
|---|
| 52 | CommonType visitor( type2, widenFirst, widenSecond, indexer, env, openVars ); | 
|---|
| 53 | type1->accept( visitor ); | 
|---|
| 54 | Type *result = visitor.get_result(); | 
|---|
| 55 | if ( ! result ) { | 
|---|
| 56 | if ( widenSecond ) { | 
|---|
| 57 | TypeInstType *inst = dynamic_cast< TypeInstType* >( type2 ); | 
|---|
| 58 | if ( inst ) { | 
|---|
| 59 | NamedTypeDecl *nt = indexer.lookupType( inst->get_name() ); | 
|---|
| 60 | if ( nt ) { | 
|---|
| 61 | TypeDecl *type = dynamic_cast< TypeDecl* >( nt ); | 
|---|
| 62 | assert( type ); | 
|---|
| 63 | if ( type->get_base() ) { | 
|---|
| 64 | Type::Qualifiers tq1 = type1->get_qualifiers(), tq2 = type2->get_qualifiers(); | 
|---|
| 65 | AssertionSet have, need; | 
|---|
| 66 | OpenVarSet newOpen( openVars ); | 
|---|
| 67 | type1->get_qualifiers() = Type::Qualifiers(); | 
|---|
| 68 | type->get_base()->get_qualifiers() = tq1; | 
|---|
| 69 | if ( unifyExact( type1, type->get_base(), env, have, need, newOpen, indexer ) ) { | 
|---|
| 70 | result = type1->clone(); | 
|---|
| 71 | result->get_qualifiers() = tq1 + tq2; | 
|---|
| 72 | } // if | 
|---|
| 73 | type1->get_qualifiers() = tq1; | 
|---|
| 74 | type->get_base()->get_qualifiers() = Type::Qualifiers(); | 
|---|
| 75 | } // if | 
|---|
| 76 | } // if | 
|---|
| 77 | } // if | 
|---|
| 78 | } // if | 
|---|
| 79 | } // if | 
|---|
| 80 | #ifdef DEBUG | 
|---|
| 81 | std::cout << "============= commonType" << std::endl << "type1 is "; | 
|---|
| 82 | type1->print( std::cout ); | 
|---|
| 83 | std::cout << " type2 is "; | 
|---|
| 84 | type2->print( std::cout ); | 
|---|
| 85 | if ( result ) { | 
|---|
| 86 | std::cout << " common type is "; | 
|---|
| 87 | result->print( std::cout ); | 
|---|
| 88 | } else { | 
|---|
| 89 | std::cout << " no common type"; | 
|---|
| 90 | } // if | 
|---|
| 91 | std::cout << std::endl; | 
|---|
| 92 | #endif | 
|---|
| 93 | return result; | 
|---|
| 94 | } | 
|---|
| 95 |  | 
|---|
| 96 | static const BasicType::Kind combinedType[ BasicType::NUMBER_OF_BASIC_TYPES ][ BasicType::NUMBER_OF_BASIC_TYPES ] = | 
|---|
| 97 | { | 
|---|
| 98 | /*              Bool            Char    SignedChar      UnsignedChar    ShortSignedInt  ShortUnsignedInt        SignedInt       UnsignedInt     LongSignedInt   LongUnsignedInt LongLongSignedInt       LongLongUnsignedInt     Float   Double  LongDouble      FloatComplex    DoubleComplex   LongDoubleComplex       FloatImaginary  DoubleImaginary LongDoubleImaginary */ | 
|---|
| 99 | /* Bool */      { BasicType::Bool,              BasicType::Char,        BasicType::SignedChar,  BasicType::UnsignedChar,        BasicType::ShortSignedInt,      BasicType::ShortUnsignedInt,    BasicType::SignedInt,   BasicType::UnsignedInt, BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 100 | /* Char */      { BasicType::Char,              BasicType::Char,        BasicType::UnsignedChar,        BasicType::UnsignedChar,        BasicType::ShortSignedInt,      BasicType::ShortUnsignedInt,    BasicType::SignedInt,   BasicType::UnsignedInt, BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 101 | /* SignedChar */        { BasicType::SignedChar,        BasicType::UnsignedChar,        BasicType::SignedChar,  BasicType::UnsignedChar,        BasicType::ShortSignedInt,      BasicType::ShortUnsignedInt,    BasicType::SignedInt,   BasicType::UnsignedInt, BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 102 | /* UnsignedChar */      { BasicType::UnsignedChar,      BasicType::UnsignedChar,        BasicType::UnsignedChar,        BasicType::UnsignedChar,        BasicType::ShortSignedInt,      BasicType::ShortUnsignedInt,    BasicType::SignedInt,   BasicType::UnsignedInt, BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 103 | /* ShortSignedInt */    { BasicType::ShortSignedInt,    BasicType::ShortSignedInt,      BasicType::ShortSignedInt,      BasicType::ShortSignedInt,      BasicType::ShortSignedInt,      BasicType::ShortUnsignedInt,    BasicType::SignedInt,   BasicType::UnsignedInt, BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 104 | /* ShortUnsignedInt */  { BasicType::ShortUnsignedInt,  BasicType::ShortUnsignedInt,    BasicType::ShortUnsignedInt,    BasicType::ShortUnsignedInt,    BasicType::ShortUnsignedInt,    BasicType::ShortUnsignedInt,    BasicType::SignedInt,   BasicType::UnsignedInt, BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 105 | /* SignedInt */         { BasicType::SignedInt,         BasicType::SignedInt,   BasicType::SignedInt,   BasicType::SignedInt,   BasicType::SignedInt,   BasicType::SignedInt,   BasicType::SignedInt,   BasicType::UnsignedInt, BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 106 | /* UnsignedInt */       { BasicType::UnsignedInt,               BasicType::UnsignedInt, BasicType::UnsignedInt, BasicType::UnsignedInt, BasicType::UnsignedInt, BasicType::UnsignedInt, BasicType::UnsignedInt, BasicType::UnsignedInt, BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 107 | /* LongSignedInt */     { BasicType::LongSignedInt,             BasicType::LongSignedInt,       BasicType::LongSignedInt,       BasicType::LongSignedInt,       BasicType::LongSignedInt,       BasicType::LongSignedInt,       BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongSignedInt,       BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 108 | /* LongUnsignedInt */   { BasicType::LongUnsignedInt,   BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongUnsignedInt,     BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 109 | /* LongLongSignedInt */         { BasicType::LongLongSignedInt, BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongSignedInt,   BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 110 | /* LongLongUnsignedInt */       { BasicType::LongLongUnsignedInt,       BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::LongLongUnsignedInt, BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 111 | /* Float */     { BasicType::Float,     BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Float,       BasicType::Double,      BasicType::LongDouble,  BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 112 | /* Double */    { BasicType::Double,    BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::Double,      BasicType::LongDouble,  BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 113 | /* LongDouble */        { BasicType::LongDouble,                BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDouble,  BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex }, | 
|---|
| 114 | /* FloatComplex */      { BasicType::FloatComplex,      BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 115 | /* DoubleComplex */     { BasicType::DoubleComplex,     BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::LongDoubleComplex }, | 
|---|
| 116 | /* LongDoubleComplex */         { BasicType::LongDoubleComplex, BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex }, | 
|---|
| 117 | /* FloatImaginary */    { BasicType::FloatComplex,      BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatComplex,        BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::FloatImaginary,      BasicType::DoubleImaginary,     BasicType::LongDoubleImaginary }, | 
|---|
| 118 | /* DoubleImaginary */   { BasicType::DoubleComplex,     BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::DoubleComplex,       BasicType::DoubleComplex,       BasicType::LongDoubleComplex,   BasicType::DoubleImaginary,     BasicType::DoubleImaginary,     BasicType::LongDoubleImaginary }, | 
|---|
| 119 | /* LongDoubleImaginary */       { BasicType::LongDoubleComplex, BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleComplex,   BasicType::LongDoubleImaginary, BasicType::LongDoubleImaginary, BasicType::LongDoubleImaginary } | 
|---|
| 120 | }; | 
|---|
| 121 |  | 
|---|
| 122 | CommonType::CommonType( Type *type2, bool widenFirst, bool widenSecond, const SymTab::Indexer &indexer, TypeEnvironment &env, const OpenVarSet &openVars ) | 
|---|
| 123 | : result( 0 ), type2( type2 ), widenFirst( widenFirst ), widenSecond( widenSecond ), indexer( indexer ), env( env ), openVars( openVars ) { | 
|---|
| 124 | } | 
|---|
| 125 |  | 
|---|
| 126 | void CommonType::visit( VoidType *voidType ) { | 
|---|
| 127 | } | 
|---|
| 128 |  | 
|---|
| 129 | void CommonType::visit( BasicType *basicType ) { | 
|---|
| 130 | if ( BasicType *otherBasic = dynamic_cast< BasicType* >( type2 ) ) { | 
|---|
| 131 | BasicType::Kind newType = combinedType[ basicType->get_kind() ][ otherBasic->get_kind() ]; | 
|---|
| 132 | if ( ( ( newType == basicType->get_kind() && basicType->get_qualifiers() >= otherBasic->get_qualifiers() ) || widenFirst ) && ( ( newType == otherBasic->get_kind() && basicType->get_qualifiers() <= otherBasic->get_qualifiers() ) || widenSecond ) ) { | 
|---|
| 133 | result = new BasicType( basicType->get_qualifiers() + otherBasic->get_qualifiers(), newType ); | 
|---|
| 134 | } // if | 
|---|
| 135 | } // if | 
|---|
| 136 | } | 
|---|
| 137 |  | 
|---|
| 138 | void CommonType::visit( PointerType *pointerType ) { | 
|---|
| 139 | if ( PointerType *otherPointer = dynamic_cast< PointerType* >( type2 ) ) { | 
|---|
| 140 | if ( widenFirst && dynamic_cast< VoidType* >( otherPointer->get_base() ) ) { | 
|---|
| 141 | result = otherPointer->clone(); | 
|---|
| 142 | result->get_qualifiers() += pointerType->get_qualifiers(); | 
|---|
| 143 | } else if ( widenSecond && dynamic_cast< VoidType* >( pointerType->get_base() ) ) { | 
|---|
| 144 | result = pointerType->clone(); | 
|---|
| 145 | result->get_qualifiers() += otherPointer->get_qualifiers(); | 
|---|
| 146 | } else if ( ( pointerType->get_base()->get_qualifiers() >= otherPointer->get_base()->get_qualifiers() || widenFirst ) | 
|---|
| 147 | && ( pointerType->get_base()->get_qualifiers() <= otherPointer->get_base()->get_qualifiers() || widenSecond ) ) { | 
|---|
| 148 | Type::Qualifiers tq1 = pointerType->get_base()->get_qualifiers(), tq2 = otherPointer->get_base()->get_qualifiers(); | 
|---|
| 149 | pointerType->get_base()->get_qualifiers() = Type::Qualifiers(); | 
|---|
| 150 | otherPointer->get_base()->get_qualifiers() = Type::Qualifiers(); | 
|---|
| 151 | AssertionSet have, need; | 
|---|
| 152 | OpenVarSet newOpen( openVars ); | 
|---|
| 153 | if ( unifyExact( pointerType->get_base(), otherPointer->get_base(), env, have, need, newOpen, indexer ) ) { | 
|---|
| 154 | if ( tq1 < tq2 ) { | 
|---|
| 155 | result = pointerType->clone(); | 
|---|
| 156 | } else { | 
|---|
| 157 | result = otherPointer->clone(); | 
|---|
| 158 | } // if | 
|---|
| 159 | result->get_qualifiers() = tq1 + tq2; | 
|---|
| 160 | } else { | 
|---|
| 161 | /// std::cout << "place for ptr-to-type" << std::endl; | 
|---|
| 162 | } // if | 
|---|
| 163 | pointerType->get_base()->get_qualifiers() = tq1; | 
|---|
| 164 | otherPointer->get_base()->get_qualifiers() = tq2; | 
|---|
| 165 | } // if | 
|---|
| 166 | } // if | 
|---|
| 167 | } | 
|---|
| 168 |  | 
|---|
| 169 | void CommonType::visit( ArrayType *arrayType ) { | 
|---|
| 170 | } | 
|---|
| 171 |  | 
|---|
| 172 | void CommonType::visit( FunctionType *functionType ) { | 
|---|
| 173 | } | 
|---|
| 174 |  | 
|---|
| 175 | template< typename RefType > void CommonType::handleRefType( RefType *inst, Type *other ) { | 
|---|
| 176 | } | 
|---|
| 177 |  | 
|---|
| 178 | void CommonType::visit( StructInstType *aggregateUseType ) { | 
|---|
| 179 | } | 
|---|
| 180 |  | 
|---|
| 181 | void CommonType::visit( UnionInstType *aggregateUseType ) { | 
|---|
| 182 | } | 
|---|
| 183 |  | 
|---|
| 184 | void CommonType::visit( EnumInstType *aggregateUseType ) { | 
|---|
| 185 | } | 
|---|
| 186 |  | 
|---|
| 187 | void CommonType::visit( ContextInstType *aggregateUseType ) { | 
|---|
| 188 | } | 
|---|
| 189 |  | 
|---|
| 190 | void CommonType::visit( TypeInstType *inst ) { | 
|---|
| 191 | if ( widenFirst ) { | 
|---|
| 192 | NamedTypeDecl *nt = indexer.lookupType( inst->get_name() ); | 
|---|
| 193 | if ( nt ) { | 
|---|
| 194 | TypeDecl *type = dynamic_cast< TypeDecl* >( nt ); | 
|---|
| 195 | assert( type ); | 
|---|
| 196 | if ( type->get_base() ) { | 
|---|
| 197 | Type::Qualifiers tq1 = inst->get_qualifiers(), tq2 = type2->get_qualifiers(); | 
|---|
| 198 | AssertionSet have, need; | 
|---|
| 199 | OpenVarSet newOpen( openVars ); | 
|---|
| 200 | type2->get_qualifiers() = Type::Qualifiers(); | 
|---|
| 201 | type->get_base()->get_qualifiers() = tq1; | 
|---|
| 202 | if ( unifyExact( type->get_base(), type2, env, have, need, newOpen, indexer ) ) { | 
|---|
| 203 | result = type2->clone(); | 
|---|
| 204 | result->get_qualifiers() = tq1 + tq2; | 
|---|
| 205 | } // if | 
|---|
| 206 | type2->get_qualifiers() = tq2; | 
|---|
| 207 | type->get_base()->get_qualifiers() = Type::Qualifiers(); | 
|---|
| 208 | } // if | 
|---|
| 209 | } // if | 
|---|
| 210 | } // if | 
|---|
| 211 | } | 
|---|
| 212 |  | 
|---|
| 213 | void CommonType::visit( TupleType *tupleType ) { | 
|---|
| 214 | } | 
|---|
| 215 | } // namespace ResolvExpr | 
|---|
| 216 |  | 
|---|
| 217 | // Local Variables: // | 
|---|
| 218 | // tab-width: 4 // | 
|---|
| 219 | // mode: c++ // | 
|---|
| 220 | // compile-command: "make install" // | 
|---|
| 221 | // End: // | 
|---|