source: src/ResolvExpr/ResolveTypeof.cpp @ 3e135c8

Last change on this file since 3e135c8 was 9d5eacb, checked in by JiadaL <j82liang@…>, 9 days ago

Fix the bug with typed anomynous enum got incorrect forward declaration

  • Property mode set to 100644
File size: 6.1 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// ResolveTypeof.cpp --
8//
9// Author           : Richard C. Bilson
10// Created On       : Sun May 17 12:12:20 2015
11// Last Modified By : Andrew Beach
12// Last Modified On : Wed Mar 16 16:09:00 2022
13// Update Count     : 4
14//
15
16#include "ResolveTypeof.hpp"
17
18#include <cassert>                  // for assert
19
20#include "AST/CVQualifiers.hpp"
21#include "AST/Node.hpp"
22#include "AST/Pass.hpp"
23#include "AST/TranslationUnit.hpp"
24#include "AST/Type.hpp"
25#include "AST/TypeEnvironment.hpp"
26#include "Common/Utility.hpp"       // for copy
27#include "InitTweak/InitTweak.hpp"  // for isConstExpr
28#include "RenameVars.hpp"
29#include "Resolver.hpp"             // for resolveInVoidContext
30#include "SymTab/Mangler.hpp"
31
32namespace ResolvExpr {
33
34namespace {
35
36struct ResolveTypeof : public ast::WithShortCircuiting {
37        const ResolveContext & context;
38
39        ResolveTypeof( const ResolveContext & context ) : context( context ) {}
40
41        void previsit( const ast::TypeofType * ) { visit_children = false; }
42
43        const ast::Type * postvisit( const ast::TypeofType * typeofType ) {
44                // pass on null expression
45                if ( ! typeofType->expr ) return typeofType;
46
47                ast::ptr< ast::Type > newType;
48                if ( auto tyExpr = typeofType->expr.as< ast::TypeExpr >() ) {
49                        // typeof wrapping type
50                        newType = tyExpr->type;
51                } else {
52                        // typeof wrapping expression
53                        ast::TypeEnvironment dummy;
54                        ast::ptr< ast::Expr > newExpr =
55                                resolveInVoidContext( typeofType->expr, context, dummy );
56                        assert( newExpr->result && ! newExpr->result->isVoid() );
57                        newType = newExpr->result;
58                }
59
60                // clear qualifiers for base, combine with typeoftype quals regardless
61                if ( typeofType->kind == ast::TypeofType::Basetypeof ) {
62                        // replace basetypeof(<enum>) by int
63                        auto enumInst = newType.as< ast::EnumInstType >();
64                        if ( enumInst && (!enumInst->base || !enumInst->base->isCfa) ) {
65                                newType = new ast::BasicType(
66                                        ast::BasicKind::SignedInt, newType->qualifiers, copy(newType->attributes) );
67                        }
68                        reset_qualifiers(
69                                newType,
70                                ( newType->qualifiers & ~ast::CV::EquivQualifiers ) | typeofType->qualifiers );
71                } else {
72                        add_qualifiers( newType, typeofType->qualifiers );
73                }
74
75                return newType.release();
76        }
77};
78
79} // anonymous namespace
80
81const ast::Type * resolveTypeof( const ast::Type * type , const ResolveContext & context ) {
82        ast::Pass< ResolveTypeof > mutator( context );
83        return type->accept( mutator );
84}
85
86struct FixArrayDimension {
87        const ResolveContext & context;
88        FixArrayDimension(const ResolveContext & context) : context( context ) {}
89
90        const ast::ArrayType * previsit (const ast::ArrayType * arrayType) {
91                if (!arrayType->dimension) return arrayType;
92                auto mutType = mutate(arrayType);
93                auto globalSizeType = context.global.sizeType;
94                ast::ptr<ast::Type> sizetype = globalSizeType ? globalSizeType : new ast::BasicType( ast::BasicKind::LongUnsignedInt );
95                mutType->dimension = findSingleExpression(arrayType->dimension, sizetype, context );
96
97                if (InitTweak::isConstExpr(mutType->dimension)) {
98                        mutType->isVarLen = ast::LengthFlag::FixedLen;
99                }
100                else {
101                        mutType->isVarLen = ast::LengthFlag::VariableLen;
102                }
103                return mutType;
104        }
105};
106
107const ast::Type * fixArrayType( const ast::Type * type, const ResolveContext & context ) {
108        ast::Pass<FixArrayDimension> visitor(context);
109        return type->accept(visitor);
110}
111
112const ast::ObjectDecl * fixObjectType( const ast::ObjectDecl * decl , const ResolveContext & context ) {
113        if ( decl->isTypeFixed ) {
114                return decl;
115        }
116
117        auto mutDecl = mutate(decl);
118        fixObjectInit(decl, context);
119        {
120                auto resolvedType = resolveTypeof(decl->type, context);
121                resolvedType = fixArrayType(resolvedType, context);
122                mutDecl->type = resolvedType;
123        }
124
125        // Do not mangle unnamed variables.
126        if ( !mutDecl->name.empty() ) {
127                mutDecl->mangleName = Mangle::mangle(mutDecl);
128        }
129
130        mutDecl->type = renameTyVars(mutDecl->type, RenameMode::GEN_EXPR_ID);
131        mutDecl->isTypeFixed = true;
132        return mutDecl;
133}
134
135const ast::ObjectDecl *fixObjectInit(
136                const ast::ObjectDecl *decl, const ResolveContext &context) {
137        if ( decl->isTypeFixed ) {
138                return decl;
139        }
140
141        if ( auto listInit = decl->init.as<ast::ListInit>() ) {
142                for ( size_t k = 0; k < listInit->designations.size(); k++ ) {
143                        const ast::Designation *des = listInit->designations[k].get();
144                        // Desination here
145                        ast::Designation * newDesignation = new ast::Designation(des->location);
146                        std::deque<ast::ptr<ast::Expr>> newDesignators;
147
148                        for ( ast::ptr<ast::Expr> designator : des->designators ) {
149                                // Stupid flag variable for development, to be removed
150                                if ( const ast::NameExpr * designatorName = designator.as<ast::NameExpr>() ) {
151                                        auto candidates = context.symtab.lookupId(designatorName->name);
152                                        // Does not work for the overloading case currently
153                                        // assert( candidates.size() == 1 );
154                                        if ( candidates.size() != 1 ) return decl;
155                                        auto candidate = candidates.at(0);
156                                        if ( const ast::EnumInstType * enumInst = dynamic_cast<const ast::EnumInstType *>(candidate.id->get_type())) {
157                                                // determine that is an enumInst, swap it with its const value
158                                                assert( candidates.size() == 1 );
159                                                const ast::EnumDecl * baseEnum = enumInst->base;
160                                                // Need to iterate over all enum value to find the initializer to swap
161                                                for ( size_t m = 0; m < baseEnum->members.size(); ++m ) {
162                                                        const ast::ObjectDecl * mem = baseEnum->members.at(m).as<const ast::ObjectDecl>();
163                                                        if ( baseEnum->members.at(m)->name == designatorName->name ) {
164                                                                assert( mem );
165                                                                newDesignators.push_back( ast::ConstantExpr::from_int(designator->location, m) );
166                                                                break;
167                                                        }
168                                                }
169                                        } else {
170                                                newDesignators.push_back( des->designators.at(0) );
171                                        }
172                                } else {
173                                        newDesignators.push_back( des->designators.at(0) );
174                                }
175                        }
176                        newDesignation->designators = newDesignators;
177                        listInit = ast::mutate_field_index(listInit, &ast::ListInit::designations, k, newDesignation);
178                }
179        }
180        return decl;
181}
182
183} // namespace ResolvExpr
184
185// Local Variables: //
186// tab-width: 4 //
187// mode: c++ //
188// compile-command: "make install" //
189// End: //
Note: See TracBrowser for help on using the repository browser.