Changeset 1ced874 for src/GenPoly/Box.cc
- Timestamp:
- Sep 6, 2016, 4:36:29 PM (9 years ago)
- 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:
- e76acbe
- Parents:
- 0362d42 (diff), f04a8b81 (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. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TabularUnified src/GenPoly/Box.cc ¶
r0362d42 r1ced874 158 158 class PolyGenericCalculator : public PolyMutator { 159 159 public: 160 typedef PolyMutator Parent; 161 using Parent::mutate; 162 160 163 template< typename DeclClass > 161 164 DeclClass *handleDecl( DeclClass *decl, Type *type ); … … 1675 1678 DeclClass * PolyGenericCalculator::handleDecl( DeclClass *decl, Type *type ) { 1676 1679 beginTypeScope( type ); 1680 // knownLayouts.beginScope(); 1681 // knownOffsets.beginScope(); 1682 1683 DeclClass *ret = static_cast< DeclClass *>( Parent::mutate( decl ) ); 1684 1685 // knownOffsets.endScope(); 1686 // knownLayouts.endScope(); 1687 endTypeScope(); 1688 return ret; 1689 } 1690 1691 ObjectDecl * PolyGenericCalculator::mutate( ObjectDecl *objectDecl ) { 1692 return handleDecl( objectDecl, objectDecl->get_type() ); 1693 } 1694 1695 DeclarationWithType * PolyGenericCalculator::mutate( FunctionDecl *functionDecl ) { 1677 1696 knownLayouts.beginScope(); 1678 1697 knownOffsets.beginScope(); 1679 1698 1680 DeclClass *ret = static_cast< DeclClass *>( Mutator::mutate( decl ) ); 1681 1699 DeclarationWithType * decl = handleDecl( functionDecl, functionDecl->get_functionType() ); 1682 1700 knownOffsets.endScope(); 1683 1701 knownLayouts.endScope(); 1684 endTypeScope(); 1685 return ret; 1686 } 1687 1688 ObjectDecl * PolyGenericCalculator::mutate( ObjectDecl *objectDecl ) { 1689 return handleDecl( objectDecl, objectDecl->get_type() ); 1690 } 1691 1692 DeclarationWithType * PolyGenericCalculator::mutate( FunctionDecl *functionDecl ) { 1693 return handleDecl( functionDecl, functionDecl->get_functionType() ); 1702 return decl; 1694 1703 } 1695 1704 … … 1700 1709 TypeDecl * PolyGenericCalculator::mutate( TypeDecl *typeDecl ) { 1701 1710 scopeTyVars[ typeDecl->get_name() ] = typeDecl->get_kind(); 1702 return Mutator::mutate( typeDecl );1711 return Parent::mutate( typeDecl ); 1703 1712 } 1704 1713 … … 1706 1715 beginTypeScope( pointerType ); 1707 1716 1708 Type *ret = Mutator::mutate( pointerType );1717 Type *ret = Parent::mutate( pointerType ); 1709 1718 1710 1719 endTypeScope(); … … 1724 1733 } 1725 1734 1726 Type *ret = Mutator::mutate( funcType );1735 Type *ret = Parent::mutate( funcType ); 1727 1736 1728 1737 endTypeScope(); … … 1745 1754 } 1746 1755 } 1747 return Mutator::mutate( declStmt );1756 return Parent::mutate( declStmt ); 1748 1757 } 1749 1758 … … 1787 1796 Expression *PolyGenericCalculator::mutate( MemberExpr *memberExpr ) { 1788 1797 // mutate, exiting early if no longer MemberExpr 1789 Expression *expr = Mutator::mutate( memberExpr );1798 Expression *expr = Parent::mutate( memberExpr ); 1790 1799 memberExpr = dynamic_cast< MemberExpr* >( expr ); 1791 1800 if ( ! memberExpr ) return expr; … … 1972 1981 Expression *PolyGenericCalculator::mutate( OffsetofExpr *offsetofExpr ) { 1973 1982 // mutate, exiting early if no longer OffsetofExpr 1974 Expression *expr = Mutator::mutate( offsetofExpr );1983 Expression *expr = Parent::mutate( offsetofExpr ); 1975 1984 offsetofExpr = dynamic_cast< OffsetofExpr* >( expr ); 1976 1985 if ( ! offsetofExpr ) return expr;
Note: See TracChangeset
for help on using the changeset viewer.