Changes in src/ResolvExpr/Unify.cc [4040425:d3b7937]
- File:
-
- 1 edited
-
src/ResolvExpr/Unify.cc (modified) (13 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/ResolvExpr/Unify.cc
r4040425 rd3b7937 5 5 // file "LICENCE" distributed with Cforall. 6 6 // 7 // Unify.cc -- 7 // Unify.cc -- 8 8 // 9 9 // Author : Richard C. Bilson 10 10 // Created On : Sun May 17 12:27:10 2015 11 // Last Modified By : Peter A. Buhr12 // Last Modified On : Wed Mar 2 17:37:05 201613 // Update Count : 3 711 // Last Modified By : Rob Schluntz 12 // Last Modified On : Wed Sep 02 14:43:22 2015 13 // Update Count : 36 14 14 // 15 15 … … 38 38 WidenMode operator&( const WidenMode &other ) { WidenMode newWM( *this ); newWM &= other; return newWM; } 39 39 operator bool() { return widenFirst && widenSecond; } 40 40 41 41 bool widenFirst : 1, widenSecond : 1; 42 42 }; … … 45 45 public: 46 46 Unify( Type *type2, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, const OpenVarSet &openVars, WidenMode widenMode, const SymTab::Indexer &indexer ); 47 47 48 48 bool get_result() const { return result; } 49 49 private: … … 56 56 virtual void visit(UnionInstType *aggregateUseType); 57 57 virtual void visit(EnumInstType *aggregateUseType); 58 virtual void visit( TraitInstType *aggregateUseType);58 virtual void visit(ContextInstType *aggregateUseType); 59 59 virtual void visit(TypeInstType *aggregateUseType); 60 60 virtual void visit(TupleType *tupleType); 61 virtual void visit(VarArgsType *varArgsType);62 61 63 62 template< typename RefType > void handleRefType( RefType *inst, Type *other ); … … 79 78 bool unifyInexact( Type *type1, Type *type2, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, const OpenVarSet &openVars, WidenMode widenMode, const SymTab::Indexer &indexer, Type *&common ); 80 79 bool unifyExact( Type *type1, Type *type2, TypeEnvironment &env, AssertionSet &needAssertions, AssertionSet &haveAssertions, const OpenVarSet &openVars, WidenMode widenMode, const SymTab::Indexer &indexer ); 81 80 82 81 bool typesCompatible( Type *first, Type *second, const SymTab::Indexer &indexer, const TypeEnvironment &env ) { 83 82 TypeEnvironment newEnv; … … 137 136 case TypeDecl::Dtype: 138 137 return ! isFtype( type, indexer ); 139 138 140 139 case TypeDecl::Ftype: 141 140 return isFtype( type, indexer ); … … 196 195 bool widen1 = false, widen2 = false; 197 196 Type *type1 = 0, *type2 = 0; 198 197 199 198 if ( env.lookup( var1->get_name(), class1 ) ) { 200 199 hasClass1 = true; … … 217 216 widen2 = widenMode.widenSecond && class2.allowWidening; 218 217 } // if 219 218 220 219 if ( type1 && type2 ) { 221 220 // std::cout << "has type1 && type2" << std::endl; … … 436 435 // to unify, array types must both be VLA or both not VLA 437 436 // and must both have a dimension expression or not have a dimension 438 if ( otherArray && arrayType->get_isVarLen() == otherArray->get_isVarLen() ) { 437 if ( otherArray && arrayType->get_isVarLen() == otherArray->get_isVarLen() 438 && ((arrayType->get_dimension() != 0 && otherArray->get_dimension() != 0) 439 || (arrayType->get_dimension() == 0 && otherArray->get_dimension() == 0))) { 439 440 440 441 // not positive this is correct in all cases, but it's needed for typedefs … … 447 448 ConstantExpr * ce1 = dynamic_cast< ConstantExpr * >( arrayType->get_dimension() ); 448 449 ConstantExpr * ce2 = dynamic_cast< ConstantExpr * >( otherArray->get_dimension() ); 449 // see C11 Reference Manual 6.7.6.2.6 450 // two array types with size specifiers that are integer constant expressions are 451 // compatible if both size specifiers have the same constant value 452 if ( ce1 && ce2 ) { 453 Constant * c1 = ce1->get_constant(); 454 Constant * c2 = ce2->get_constant(); 455 456 if ( c1->get_value() != c2->get_value() ) { 457 // does not unify if the dimension is different 458 return; 459 } 450 assert(ce1 && ce2); 451 452 Constant * c1 = ce1->get_constant(); 453 Constant * c2 = ce2->get_constant(); 454 455 if ( c1->get_value() != c2->get_value() ) { 456 // does not unify if the dimension is different 457 return; 460 458 } 461 459 } … … 486 484 487 485 if ( unifyDeclList( functionType->get_parameters().begin(), functionType->get_parameters().end(), otherFunction->get_parameters().begin(), otherFunction->get_parameters().end(), env, needAssertions, haveAssertions, openVars, indexer ) ) { 488 486 489 487 if ( unifyDeclList( functionType->get_returnVals().begin(), functionType->get_returnVals().end(), otherFunction->get_returnVals().begin(), otherFunction->get_returnVals().end(), env, needAssertions, haveAssertions, openVars, indexer ) ) { 490 488 … … 541 539 } 542 540 543 void Unify::visit( TraitInstType *contextInst) {541 void Unify::visit(ContextInstType *contextInst) { 544 542 handleRefType( contextInst, type2 ); 545 543 } … … 584 582 } 585 583 586 void Unify::visit(VarArgsType *varArgsType) {587 result = dynamic_cast< VarArgsType* >( type2 );588 }589 590 584 } // namespace ResolvExpr 591 585
Note:
See TracChangeset
for help on using the changeset viewer.