[0dd3a2f] | 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 | //
|
---|
[743fbda] | 7 | // Indexer.cc --
|
---|
[0dd3a2f] | 8 | //
|
---|
| 9 | // Author : Richard C. Bilson
|
---|
| 10 | // Created On : Sun May 17 21:37:33 2015
|
---|
[4e06c1e] | 11 | // Last Modified By : Peter A. Buhr
|
---|
| 12 | // Last Modified On : Tue Jul 12 17:47:47 2016
|
---|
| 13 | // Update Count : 12
|
---|
[0dd3a2f] | 14 | //
|
---|
| 15 |
|
---|
[e8032b0] | 16 | #include "Indexer.h"
|
---|
| 17 |
|
---|
[52c2a72] | 18 | #include <string>
|
---|
| 19 | #include <typeinfo>
|
---|
| 20 | #include <unordered_map>
|
---|
[5447e09] | 21 | #include <unordered_set>
|
---|
[52c2a72] | 22 | #include <utility>
|
---|
[1ba88a0] | 23 | #include <algorithm>
|
---|
[52c2a72] | 24 |
|
---|
[bed4c63e] | 25 | #include "Mangler.h"
|
---|
| 26 |
|
---|
| 27 | #include "Common/utility.h"
|
---|
| 28 |
|
---|
| 29 | #include "ResolvExpr/typeops.h"
|
---|
[e8032b0] | 30 |
|
---|
[51b73452] | 31 | #include "SynTree/Declaration.h"
|
---|
| 32 | #include "SynTree/Type.h"
|
---|
| 33 | #include "SynTree/Expression.h"
|
---|
| 34 | #include "SynTree/Initializer.h"
|
---|
| 35 | #include "SynTree/Statement.h"
|
---|
[e8032b0] | 36 |
|
---|
[1ba88a0] | 37 | #include "InitTweak/InitTweak.h"
|
---|
| 38 |
|
---|
[17cd4eb] | 39 | #define debugPrint(x) if ( doDebug ) { std::cout << x; }
|
---|
[51b73452] | 40 |
|
---|
| 41 | namespace SymTab {
|
---|
[ae4c85a] | 42 | template< typename Container, typename VisitorType >
|
---|
| 43 | inline void acceptAllNewScope( Container &container, VisitorType &visitor ) {
|
---|
| 44 | visitor.enterScope();
|
---|
| 45 | acceptAll( container, visitor );
|
---|
| 46 | visitor.leaveScope();
|
---|
| 47 | }
|
---|
| 48 |
|
---|
[bed4c63e] | 49 | typedef std::unordered_map< std::string, DeclarationWithType* > MangleTable;
|
---|
| 50 | typedef std::unordered_map< std::string, MangleTable > IdTable;
|
---|
[52c2a72] | 51 | typedef std::unordered_map< std::string, NamedTypeDecl* > TypeTable;
|
---|
| 52 | typedef std::unordered_map< std::string, StructDecl* > StructTable;
|
---|
| 53 | typedef std::unordered_map< std::string, EnumDecl* > EnumTable;
|
---|
| 54 | typedef std::unordered_map< std::string, UnionDecl* > UnionTable;
|
---|
| 55 | typedef std::unordered_map< std::string, TraitDecl* > TraitTable;
|
---|
| 56 |
|
---|
[bed4c63e] | 57 | void dump( const IdTable &table, std::ostream &os ) {
|
---|
| 58 | for ( IdTable::const_iterator id = table.begin(); id != table.end(); ++id ) {
|
---|
| 59 | for ( MangleTable::const_iterator mangle = id->second.begin(); mangle != id->second.end(); ++mangle ) {
|
---|
| 60 | os << mangle->second << std::endl;
|
---|
| 61 | }
|
---|
| 62 | }
|
---|
| 63 | }
|
---|
[743fbda] | 64 |
|
---|
[52c2a72] | 65 | template< typename Decl >
|
---|
| 66 | void dump( const std::unordered_map< std::string, Decl* > &table, std::ostream &os ) {
|
---|
| 67 | for ( typename std::unordered_map< std::string, Decl* >::const_iterator it = table.begin(); it != table.end(); ++it ) {
|
---|
| 68 | os << it->second << std::endl;
|
---|
| 69 | } // for
|
---|
| 70 | }
|
---|
[743fbda] | 71 |
|
---|
[e8032b0] | 72 | struct Indexer::Impl {
|
---|
[52c2a72] | 73 | Impl( unsigned long _scope ) : refCount(1), scope( _scope ), size( 0 ), base(),
|
---|
[e8032b0] | 74 | idTable(), typeTable(), structTable(), enumTable(), unionTable(), traitTable() {}
|
---|
[52c2a72] | 75 | Impl( unsigned long _scope, Indexer &&_base ) : refCount(1), scope( _scope ), size( 0 ), base( _base ),
|
---|
[e8032b0] | 76 | idTable(), typeTable(), structTable(), enumTable(), unionTable(), traitTable() {}
|
---|
| 77 | unsigned long refCount; ///< Number of references to these tables
|
---|
[52c2a72] | 78 | unsigned long scope; ///< Scope these tables are associated with
|
---|
[e8032b0] | 79 | unsigned long size; ///< Number of elements stored in this table
|
---|
| 80 | const Indexer base; ///< Base indexer this extends
|
---|
[743fbda] | 81 |
|
---|
[e8032b0] | 82 | IdTable idTable; ///< Identifier namespace
|
---|
| 83 | TypeTable typeTable; ///< Type namespace
|
---|
| 84 | StructTable structTable; ///< Struct namespace
|
---|
| 85 | EnumTable enumTable; ///< Enum namespace
|
---|
| 86 | UnionTable unionTable; ///< Union namespace
|
---|
| 87 | TraitTable traitTable; ///< Trait namespace
|
---|
| 88 | };
|
---|
| 89 |
|
---|
| 90 | Indexer::Impl *Indexer::newRef( Indexer::Impl *toClone ) {
|
---|
| 91 | if ( ! toClone ) return 0;
|
---|
| 92 |
|
---|
| 93 | // shorten the search chain by skipping empty links
|
---|
| 94 | Indexer::Impl *ret = toClone->size == 0 ? toClone->base.tables : toClone;
|
---|
| 95 | if ( ret ) { ++ret->refCount; }
|
---|
| 96 |
|
---|
| 97 | return ret;
|
---|
| 98 | }
|
---|
| 99 |
|
---|
| 100 | void Indexer::deleteRef( Indexer::Impl *toFree ) {
|
---|
| 101 | if ( ! toFree ) return;
|
---|
| 102 |
|
---|
| 103 | if ( --toFree->refCount == 0 ) delete toFree;
|
---|
| 104 | }
|
---|
| 105 |
|
---|
[1ba88a0] | 106 | void Indexer::removeSpecialOverrides( const std::string &id, std::list< DeclarationWithType * > & out ) const {
|
---|
[ee1635c8] | 107 | // only need to perform this step for constructors, destructors, and assignment functions
|
---|
| 108 | if ( ! InitTweak::isCtorDtorAssign( id ) ) return;
|
---|
[1ba88a0] | 109 |
|
---|
| 110 | // helpful data structure
|
---|
| 111 | struct ValueType {
|
---|
| 112 | struct DeclBall {
|
---|
| 113 | FunctionDecl * decl;
|
---|
| 114 | bool isUserDefinedFunc; // properties for this particular decl
|
---|
| 115 | bool isDefaultFunc;
|
---|
| 116 | bool isCopyFunc;
|
---|
| 117 | };
|
---|
| 118 | // properties for this type
|
---|
| 119 | bool userDefinedFunc = false; // any user defined function found
|
---|
| 120 | bool userDefinedDefaultFunc = false; // user defined default ctor found
|
---|
| 121 | bool userDefinedCopyFunc = false; // user defined copy ctor found
|
---|
| 122 | std::list< DeclBall > decls;
|
---|
| 123 |
|
---|
| 124 | // another FunctionDecl for the current type was found - determine
|
---|
| 125 | // if it has special properties and update data structure accordingly
|
---|
| 126 | ValueType & operator+=( FunctionDecl * function ) {
|
---|
| 127 | bool isUserDefinedFunc = ! LinkageSpec::isOverridable( function->get_linkage() );
|
---|
| 128 | bool isDefaultFunc = function->get_functionType()->get_parameters().size() == 1;
|
---|
[ee1635c8] | 129 | bool isCopyFunc = InitTweak::isCopyFunction( function, function->get_name() );
|
---|
[1ba88a0] | 130 | decls.push_back( DeclBall{ function, isUserDefinedFunc, isDefaultFunc, isCopyFunc } );
|
---|
| 131 | userDefinedFunc = userDefinedFunc || isUserDefinedFunc;
|
---|
| 132 | userDefinedDefaultFunc = userDefinedDefaultFunc || (isUserDefinedFunc && isDefaultFunc);
|
---|
| 133 | userDefinedCopyFunc = userDefinedCopyFunc || (isUserDefinedFunc && isCopyFunc);
|
---|
| 134 | return *this;
|
---|
| 135 | }
|
---|
| 136 | }; // ValueType
|
---|
| 137 |
|
---|
| 138 | std::list< DeclarationWithType * > copy;
|
---|
| 139 | copy.splice( copy.end(), out );
|
---|
| 140 |
|
---|
| 141 | // organize discovered declarations by type
|
---|
| 142 | std::unordered_map< std::string, ValueType > funcMap;
|
---|
| 143 | for ( DeclarationWithType * decl : copy ) {
|
---|
| 144 | if ( FunctionDecl * function = dynamic_cast< FunctionDecl * >( decl ) ) {
|
---|
| 145 | std::list< DeclarationWithType * > params = function->get_functionType()->get_parameters();
|
---|
| 146 | assert( ! params.empty() );
|
---|
[24670d2] | 147 | // use base type of pointer, so that qualifiers on the pointer type aren't considered.
|
---|
| 148 | Type * base = safe_dynamic_cast< PointerType * >( params.front()->get_type() )->get_base();
|
---|
| 149 | funcMap[ Mangler::mangle( base ) ] += function;
|
---|
[1ba88a0] | 150 | } else {
|
---|
| 151 | out.push_back( decl );
|
---|
| 152 | }
|
---|
| 153 | }
|
---|
| 154 |
|
---|
| 155 | // if a type contains user defined ctor/dtors, then special rules trigger, which determine
|
---|
| 156 | // the set of ctor/dtors that are seen by the requester. In particular, if the user defines
|
---|
| 157 | // a default ctor, then the generated default ctor should never be seen, likewise for copy ctor
|
---|
| 158 | // and dtor. If the user defines any ctor/dtor, then no generated field ctors should be seen.
|
---|
| 159 | for ( std::pair< const std::string, ValueType > & pair : funcMap ) {
|
---|
| 160 | ValueType & val = pair.second;
|
---|
| 161 | for ( ValueType::DeclBall ball : val.decls ) {
|
---|
| 162 | if ( ! val.userDefinedFunc || ball.isUserDefinedFunc || (! val.userDefinedDefaultFunc && ball.isDefaultFunc) || (! val.userDefinedCopyFunc && ball.isCopyFunc) ) {
|
---|
| 163 | // decl conforms to the rules described above, so it should be seen by the requester
|
---|
| 164 | out.push_back( ball.decl );
|
---|
| 165 | }
|
---|
| 166 | }
|
---|
| 167 | }
|
---|
| 168 | }
|
---|
| 169 |
|
---|
[e8032b0] | 170 | void Indexer::makeWritable() {
|
---|
| 171 | if ( ! tables ) {
|
---|
[52c2a72] | 172 | // create indexer if not yet set
|
---|
| 173 | tables = new Indexer::Impl( scope );
|
---|
| 174 | } else if ( tables->refCount > 1 || tables->scope != scope ) {
|
---|
| 175 | // make this indexer the base of a fresh indexer at the current scope
|
---|
| 176 | tables = new Indexer::Impl( scope, std::move( *this ) );
|
---|
[e8032b0] | 177 | }
|
---|
| 178 | }
|
---|
| 179 |
|
---|
[52c2a72] | 180 | Indexer::Indexer( bool _doDebug ) : tables( 0 ), scope( 0 ), doDebug( _doDebug ) {}
|
---|
[e8032b0] | 181 |
|
---|
[52c2a72] | 182 | Indexer::Indexer( const Indexer &that ) : tables( newRef( that.tables ) ), scope( that.scope ), doDebug( that.doDebug ) {}
|
---|
[e8032b0] | 183 |
|
---|
[52c2a72] | 184 | Indexer::Indexer( Indexer &&that ) : tables( that.tables ), scope( that.scope ), doDebug( that.doDebug ) {
|
---|
[e8032b0] | 185 | that.tables = 0;
|
---|
| 186 | }
|
---|
| 187 |
|
---|
| 188 | Indexer::~Indexer() {
|
---|
| 189 | deleteRef( tables );
|
---|
| 190 | }
|
---|
| 191 |
|
---|
| 192 | Indexer& Indexer::operator= ( const Indexer &that ) {
|
---|
| 193 | deleteRef( tables );
|
---|
| 194 |
|
---|
| 195 | tables = newRef( that.tables );
|
---|
[52c2a72] | 196 | scope = that.scope;
|
---|
[e8032b0] | 197 | doDebug = that.doDebug;
|
---|
| 198 |
|
---|
| 199 | return *this;
|
---|
| 200 | }
|
---|
| 201 |
|
---|
| 202 | Indexer& Indexer::operator= ( Indexer &&that ) {
|
---|
| 203 | deleteRef( tables );
|
---|
| 204 |
|
---|
| 205 | tables = that.tables;
|
---|
[52c2a72] | 206 | scope = that.scope;
|
---|
[e8032b0] | 207 | doDebug = that.doDebug;
|
---|
[17cd4eb] | 208 |
|
---|
[e8032b0] | 209 | that.tables = 0;
|
---|
| 210 |
|
---|
| 211 | return *this;
|
---|
| 212 | }
|
---|
[17cd4eb] | 213 |
|
---|
[a08ba92] | 214 | void Indexer::visit( ObjectDecl *objectDecl ) {
|
---|
[ae4c85a] | 215 | enterScope();
|
---|
[0dd3a2f] | 216 | maybeAccept( objectDecl->get_type(), *this );
|
---|
[ae4c85a] | 217 | leaveScope();
|
---|
[0dd3a2f] | 218 | maybeAccept( objectDecl->get_init(), *this );
|
---|
| 219 | maybeAccept( objectDecl->get_bitfieldWidth(), *this );
|
---|
| 220 | if ( objectDecl->get_name() != "" ) {
|
---|
| 221 | debugPrint( "Adding object " << objectDecl->get_name() << std::endl );
|
---|
[e8032b0] | 222 | addId( objectDecl );
|
---|
[0dd3a2f] | 223 | } // if
|
---|
[a08ba92] | 224 | }
|
---|
[17cd4eb] | 225 |
|
---|
[a08ba92] | 226 | void Indexer::visit( FunctionDecl *functionDecl ) {
|
---|
[0dd3a2f] | 227 | if ( functionDecl->get_name() == "" ) return;
|
---|
| 228 | debugPrint( "Adding function " << functionDecl->get_name() << std::endl );
|
---|
[e8032b0] | 229 | addId( functionDecl );
|
---|
[0dd3a2f] | 230 | enterScope();
|
---|
| 231 | maybeAccept( functionDecl->get_functionType(), *this );
|
---|
| 232 | acceptAll( functionDecl->get_oldDecls(), *this );
|
---|
| 233 | maybeAccept( functionDecl->get_statements(), *this );
|
---|
| 234 | leaveScope();
|
---|
[a08ba92] | 235 | }
|
---|
[51b73452] | 236 |
|
---|
[44b5ca0] | 237 |
|
---|
| 238 | // A NOTE ON THE ORDER OF TRAVERSAL
|
---|
| 239 | //
|
---|
| 240 | // Types and typedefs have their base types visited before they are added to the type table. This is ok, since there is
|
---|
| 241 | // no such thing as a recursive type or typedef.
|
---|
| 242 | //
|
---|
| 243 | // typedef struct { T *x; } T; // never allowed
|
---|
| 244 | //
|
---|
| 245 | // for structs/unions, it is possible to have recursion, so the decl should be added as if it's incomplete to begin, the
|
---|
| 246 | // members are traversed, and then the complete type should be added (assuming the type is completed by this particular
|
---|
| 247 | // declaration).
|
---|
| 248 | //
|
---|
| 249 | // struct T { struct T *x; }; // allowed
|
---|
| 250 | //
|
---|
| 251 | // It is important to add the complete type to the symbol table *after* the members/base has been traversed, since that
|
---|
| 252 | // traversal may modify the definition of the type and these modifications should be visible when the symbol table is
|
---|
| 253 | // queried later in this pass.
|
---|
| 254 | //
|
---|
| 255 | // TODO: figure out whether recursive contexts are sensible/possible/reasonable.
|
---|
| 256 |
|
---|
[51b73452] | 257 |
|
---|
[a08ba92] | 258 | void Indexer::visit( TypeDecl *typeDecl ) {
|
---|
[0dd3a2f] | 259 | // see A NOTE ON THE ORDER OF TRAVERSAL, above
|
---|
[44b5ca0] | 260 | // note that assertions come after the type is added to the symtab, since they are not part of the type proper
|
---|
| 261 | // and may depend on the type itself
|
---|
[0dd3a2f] | 262 | enterScope();
|
---|
| 263 | acceptAll( typeDecl->get_parameters(), *this );
|
---|
| 264 | maybeAccept( typeDecl->get_base(), *this );
|
---|
| 265 | leaveScope();
|
---|
| 266 | debugPrint( "Adding type " << typeDecl->get_name() << std::endl );
|
---|
[e8032b0] | 267 | addType( typeDecl );
|
---|
[0dd3a2f] | 268 | acceptAll( typeDecl->get_assertions(), *this );
|
---|
[a08ba92] | 269 | }
|
---|
[17cd4eb] | 270 |
|
---|
[a08ba92] | 271 | void Indexer::visit( TypedefDecl *typeDecl ) {
|
---|
[0dd3a2f] | 272 | enterScope();
|
---|
| 273 | acceptAll( typeDecl->get_parameters(), *this );
|
---|
| 274 | maybeAccept( typeDecl->get_base(), *this );
|
---|
| 275 | leaveScope();
|
---|
| 276 | debugPrint( "Adding typedef " << typeDecl->get_name() << std::endl );
|
---|
[e8032b0] | 277 | addType( typeDecl );
|
---|
[a08ba92] | 278 | }
|
---|
[17cd4eb] | 279 |
|
---|
[a08ba92] | 280 | void Indexer::visit( StructDecl *aggregateDecl ) {
|
---|
[0dd3a2f] | 281 | // make up a forward declaration and add it before processing the members
|
---|
[743fbda] | 282 | // needs to be on the heap because addStruct saves the pointer
|
---|
| 283 | StructDecl &fwdDecl = *new StructDecl( aggregateDecl->get_name() );
|
---|
[0dd3a2f] | 284 | cloneAll( aggregateDecl->get_parameters(), fwdDecl.get_parameters() );
|
---|
| 285 | debugPrint( "Adding fwd decl for struct " << fwdDecl.get_name() << std::endl );
|
---|
[e8032b0] | 286 | addStruct( &fwdDecl );
|
---|
[743fbda] | 287 |
|
---|
[0dd3a2f] | 288 | enterScope();
|
---|
| 289 | acceptAll( aggregateDecl->get_parameters(), *this );
|
---|
| 290 | acceptAll( aggregateDecl->get_members(), *this );
|
---|
| 291 | leaveScope();
|
---|
[743fbda] | 292 |
|
---|
[0dd3a2f] | 293 | debugPrint( "Adding struct " << aggregateDecl->get_name() << std::endl );
|
---|
| 294 | // this addition replaces the forward declaration
|
---|
[e8032b0] | 295 | addStruct( aggregateDecl );
|
---|
[a08ba92] | 296 | }
|
---|
[17cd4eb] | 297 |
|
---|
[a08ba92] | 298 | void Indexer::visit( UnionDecl *aggregateDecl ) {
|
---|
[0dd3a2f] | 299 | // make up a forward declaration and add it before processing the members
|
---|
| 300 | UnionDecl fwdDecl( aggregateDecl->get_name() );
|
---|
| 301 | cloneAll( aggregateDecl->get_parameters(), fwdDecl.get_parameters() );
|
---|
| 302 | debugPrint( "Adding fwd decl for union " << fwdDecl.get_name() << std::endl );
|
---|
[e8032b0] | 303 | addUnion( &fwdDecl );
|
---|
[743fbda] | 304 |
|
---|
[0dd3a2f] | 305 | enterScope();
|
---|
| 306 | acceptAll( aggregateDecl->get_parameters(), *this );
|
---|
| 307 | acceptAll( aggregateDecl->get_members(), *this );
|
---|
| 308 | leaveScope();
|
---|
[743fbda] | 309 |
|
---|
[0dd3a2f] | 310 | debugPrint( "Adding union " << aggregateDecl->get_name() << std::endl );
|
---|
[e8032b0] | 311 | addUnion( aggregateDecl );
|
---|
[a08ba92] | 312 | }
|
---|
[17cd4eb] | 313 |
|
---|
[a08ba92] | 314 | void Indexer::visit( EnumDecl *aggregateDecl ) {
|
---|
[0dd3a2f] | 315 | debugPrint( "Adding enum " << aggregateDecl->get_name() << std::endl );
|
---|
[e8032b0] | 316 | addEnum( aggregateDecl );
|
---|
[0dd3a2f] | 317 | // unlike structs, contexts, and unions, enums inject their members into the global scope
|
---|
| 318 | acceptAll( aggregateDecl->get_members(), *this );
|
---|
[a08ba92] | 319 | }
|
---|
[17cd4eb] | 320 |
|
---|
[4040425] | 321 | void Indexer::visit( TraitDecl *aggregateDecl ) {
|
---|
[0dd3a2f] | 322 | enterScope();
|
---|
| 323 | acceptAll( aggregateDecl->get_parameters(), *this );
|
---|
| 324 | acceptAll( aggregateDecl->get_members(), *this );
|
---|
| 325 | leaveScope();
|
---|
[743fbda] | 326 |
|
---|
[0dd3a2f] | 327 | debugPrint( "Adding context " << aggregateDecl->get_name() << std::endl );
|
---|
[e8032b0] | 328 | addTrait( aggregateDecl );
|
---|
[a08ba92] | 329 | }
|
---|
[17cd4eb] | 330 |
|
---|
[a08ba92] | 331 | void Indexer::visit( CompoundStmt *compoundStmt ) {
|
---|
[0dd3a2f] | 332 | enterScope();
|
---|
| 333 | acceptAll( compoundStmt->get_kids(), *this );
|
---|
| 334 | leaveScope();
|
---|
[a08ba92] | 335 | }
|
---|
[17cd4eb] | 336 |
|
---|
[ae4c85a] | 337 |
|
---|
| 338 | void Indexer::visit( ApplicationExpr *applicationExpr ) {
|
---|
| 339 | acceptAllNewScope( applicationExpr->get_results(), *this );
|
---|
| 340 | maybeAccept( applicationExpr->get_function(), *this );
|
---|
| 341 | acceptAll( applicationExpr->get_args(), *this );
|
---|
| 342 | }
|
---|
| 343 |
|
---|
| 344 | void Indexer::visit( UntypedExpr *untypedExpr ) {
|
---|
| 345 | acceptAllNewScope( untypedExpr->get_results(), *this );
|
---|
| 346 | acceptAll( untypedExpr->get_args(), *this );
|
---|
| 347 | }
|
---|
| 348 |
|
---|
| 349 | void Indexer::visit( NameExpr *nameExpr ) {
|
---|
| 350 | acceptAllNewScope( nameExpr->get_results(), *this );
|
---|
| 351 | }
|
---|
| 352 |
|
---|
| 353 | void Indexer::visit( AddressExpr *addressExpr ) {
|
---|
| 354 | acceptAllNewScope( addressExpr->get_results(), *this );
|
---|
| 355 | maybeAccept( addressExpr->get_arg(), *this );
|
---|
| 356 | }
|
---|
| 357 |
|
---|
| 358 | void Indexer::visit( LabelAddressExpr *labAddressExpr ) {
|
---|
| 359 | acceptAllNewScope( labAddressExpr->get_results(), *this );
|
---|
| 360 | maybeAccept( labAddressExpr->get_arg(), *this );
|
---|
| 361 | }
|
---|
| 362 |
|
---|
| 363 | void Indexer::visit( CastExpr *castExpr ) {
|
---|
| 364 | acceptAllNewScope( castExpr->get_results(), *this );
|
---|
| 365 | maybeAccept( castExpr->get_arg(), *this );
|
---|
| 366 | }
|
---|
| 367 |
|
---|
| 368 | void Indexer::visit( UntypedMemberExpr *memberExpr ) {
|
---|
| 369 | acceptAllNewScope( memberExpr->get_results(), *this );
|
---|
| 370 | maybeAccept( memberExpr->get_aggregate(), *this );
|
---|
| 371 | }
|
---|
| 372 |
|
---|
| 373 | void Indexer::visit( MemberExpr *memberExpr ) {
|
---|
| 374 | acceptAllNewScope( memberExpr->get_results(), *this );
|
---|
| 375 | maybeAccept( memberExpr->get_aggregate(), *this );
|
---|
| 376 | }
|
---|
| 377 |
|
---|
| 378 | void Indexer::visit( VariableExpr *variableExpr ) {
|
---|
| 379 | acceptAllNewScope( variableExpr->get_results(), *this );
|
---|
| 380 | }
|
---|
| 381 |
|
---|
| 382 | void Indexer::visit( ConstantExpr *constantExpr ) {
|
---|
| 383 | acceptAllNewScope( constantExpr->get_results(), *this );
|
---|
| 384 | maybeAccept( constantExpr->get_constant(), *this );
|
---|
| 385 | }
|
---|
| 386 |
|
---|
| 387 | void Indexer::visit( SizeofExpr *sizeofExpr ) {
|
---|
| 388 | acceptAllNewScope( sizeofExpr->get_results(), *this );
|
---|
| 389 | if ( sizeofExpr->get_isType() ) {
|
---|
| 390 | maybeAccept( sizeofExpr->get_type(), *this );
|
---|
| 391 | } else {
|
---|
| 392 | maybeAccept( sizeofExpr->get_expr(), *this );
|
---|
| 393 | }
|
---|
| 394 | }
|
---|
| 395 |
|
---|
[47534159] | 396 | void Indexer::visit( AlignofExpr *alignofExpr ) {
|
---|
| 397 | acceptAllNewScope( alignofExpr->get_results(), *this );
|
---|
| 398 | if ( alignofExpr->get_isType() ) {
|
---|
| 399 | maybeAccept( alignofExpr->get_type(), *this );
|
---|
| 400 | } else {
|
---|
| 401 | maybeAccept( alignofExpr->get_expr(), *this );
|
---|
| 402 | }
|
---|
| 403 | }
|
---|
| 404 |
|
---|
[2a4b088] | 405 | void Indexer::visit( UntypedOffsetofExpr *offsetofExpr ) {
|
---|
| 406 | acceptAllNewScope( offsetofExpr->get_results(), *this );
|
---|
| 407 | maybeAccept( offsetofExpr->get_type(), *this );
|
---|
| 408 | }
|
---|
| 409 |
|
---|
[25a054f] | 410 | void Indexer::visit( OffsetofExpr *offsetofExpr ) {
|
---|
| 411 | acceptAllNewScope( offsetofExpr->get_results(), *this );
|
---|
| 412 | maybeAccept( offsetofExpr->get_type(), *this );
|
---|
| 413 | maybeAccept( offsetofExpr->get_member(), *this );
|
---|
| 414 | }
|
---|
| 415 |
|
---|
[afc1045] | 416 | void Indexer::visit( OffsetPackExpr *offsetPackExpr ) {
|
---|
| 417 | acceptAllNewScope( offsetPackExpr->get_results(), *this );
|
---|
| 418 | maybeAccept( offsetPackExpr->get_type(), *this );
|
---|
| 419 | }
|
---|
| 420 |
|
---|
[ae4c85a] | 421 | void Indexer::visit( AttrExpr *attrExpr ) {
|
---|
| 422 | acceptAllNewScope( attrExpr->get_results(), *this );
|
---|
| 423 | if ( attrExpr->get_isType() ) {
|
---|
| 424 | maybeAccept( attrExpr->get_type(), *this );
|
---|
| 425 | } else {
|
---|
| 426 | maybeAccept( attrExpr->get_expr(), *this );
|
---|
| 427 | }
|
---|
| 428 | }
|
---|
| 429 |
|
---|
| 430 | void Indexer::visit( LogicalExpr *logicalExpr ) {
|
---|
| 431 | acceptAllNewScope( logicalExpr->get_results(), *this );
|
---|
| 432 | maybeAccept( logicalExpr->get_arg1(), *this );
|
---|
| 433 | maybeAccept( logicalExpr->get_arg2(), *this );
|
---|
| 434 | }
|
---|
| 435 |
|
---|
| 436 | void Indexer::visit( ConditionalExpr *conditionalExpr ) {
|
---|
| 437 | acceptAllNewScope( conditionalExpr->get_results(), *this );
|
---|
| 438 | maybeAccept( conditionalExpr->get_arg1(), *this );
|
---|
| 439 | maybeAccept( conditionalExpr->get_arg2(), *this );
|
---|
| 440 | maybeAccept( conditionalExpr->get_arg3(), *this );
|
---|
| 441 | }
|
---|
| 442 |
|
---|
| 443 | void Indexer::visit( CommaExpr *commaExpr ) {
|
---|
| 444 | acceptAllNewScope( commaExpr->get_results(), *this );
|
---|
| 445 | maybeAccept( commaExpr->get_arg1(), *this );
|
---|
| 446 | maybeAccept( commaExpr->get_arg2(), *this );
|
---|
| 447 | }
|
---|
| 448 |
|
---|
| 449 | void Indexer::visit( TupleExpr *tupleExpr ) {
|
---|
| 450 | acceptAllNewScope( tupleExpr->get_results(), *this );
|
---|
| 451 | acceptAll( tupleExpr->get_exprs(), *this );
|
---|
| 452 | }
|
---|
| 453 |
|
---|
| 454 | void Indexer::visit( SolvedTupleExpr *tupleExpr ) {
|
---|
| 455 | acceptAllNewScope( tupleExpr->get_results(), *this );
|
---|
| 456 | acceptAll( tupleExpr->get_exprs(), *this );
|
---|
| 457 | }
|
---|
| 458 |
|
---|
| 459 | void Indexer::visit( TypeExpr *typeExpr ) {
|
---|
| 460 | acceptAllNewScope( typeExpr->get_results(), *this );
|
---|
| 461 | maybeAccept( typeExpr->get_type(), *this );
|
---|
| 462 | }
|
---|
| 463 |
|
---|
| 464 | void Indexer::visit( AsmExpr *asmExpr ) {
|
---|
| 465 | maybeAccept( asmExpr->get_inout(), *this );
|
---|
| 466 | maybeAccept( asmExpr->get_constraint(), *this );
|
---|
| 467 | maybeAccept( asmExpr->get_operand(), *this );
|
---|
| 468 | }
|
---|
| 469 |
|
---|
| 470 | void Indexer::visit( UntypedValofExpr *valofExpr ) {
|
---|
| 471 | acceptAllNewScope( valofExpr->get_results(), *this );
|
---|
| 472 | maybeAccept( valofExpr->get_body(), *this );
|
---|
| 473 | }
|
---|
| 474 |
|
---|
| 475 |
|
---|
[4040425] | 476 | void Indexer::visit( TraitInstType *contextInst ) {
|
---|
[0dd3a2f] | 477 | acceptAll( contextInst->get_parameters(), *this );
|
---|
| 478 | acceptAll( contextInst->get_members(), *this );
|
---|
[a08ba92] | 479 | }
|
---|
[17cd4eb] | 480 |
|
---|
[a08ba92] | 481 | void Indexer::visit( StructInstType *structInst ) {
|
---|
[e8032b0] | 482 | if ( ! lookupStruct( structInst->get_name() ) ) {
|
---|
[0dd3a2f] | 483 | debugPrint( "Adding struct " << structInst->get_name() << " from implicit forward declaration" << std::endl );
|
---|
[e8032b0] | 484 | addStruct( structInst->get_name() );
|
---|
[0dd3a2f] | 485 | }
|
---|
| 486 | enterScope();
|
---|
| 487 | acceptAll( structInst->get_parameters(), *this );
|
---|
| 488 | leaveScope();
|
---|
[a08ba92] | 489 | }
|
---|
[17cd4eb] | 490 |
|
---|
[a08ba92] | 491 | void Indexer::visit( UnionInstType *unionInst ) {
|
---|
[e8032b0] | 492 | if ( ! lookupUnion( unionInst->get_name() ) ) {
|
---|
[0dd3a2f] | 493 | debugPrint( "Adding union " << unionInst->get_name() << " from implicit forward declaration" << std::endl );
|
---|
[e8032b0] | 494 | addUnion( unionInst->get_name() );
|
---|
[0dd3a2f] | 495 | }
|
---|
| 496 | enterScope();
|
---|
| 497 | acceptAll( unionInst->get_parameters(), *this );
|
---|
| 498 | leaveScope();
|
---|
[a08ba92] | 499 | }
|
---|
[17cd4eb] | 500 |
|
---|
[a08ba92] | 501 | void Indexer::visit( ForStmt *forStmt ) {
|
---|
| 502 | // for statements introduce a level of scope
|
---|
| 503 | enterScope();
|
---|
| 504 | Visitor::visit( forStmt );
|
---|
| 505 | leaveScope();
|
---|
| 506 | }
|
---|
[d4778a6] | 507 |
|
---|
[743fbda] | 508 |
|
---|
[d4778a6] | 509 |
|
---|
[bed4c63e] | 510 | void Indexer::lookupId( const std::string &id, std::list< DeclarationWithType* > &out ) const {
|
---|
[5447e09] | 511 | std::unordered_set< std::string > foundMangleNames;
|
---|
[743fbda] | 512 |
|
---|
[5447e09] | 513 | Indexer::Impl *searchTables = tables;
|
---|
| 514 | while ( searchTables ) {
|
---|
| 515 |
|
---|
| 516 | IdTable::const_iterator decls = searchTables->idTable.find( id );
|
---|
| 517 | if ( decls != searchTables->idTable.end() ) {
|
---|
| 518 | const MangleTable &mangleTable = decls->second;
|
---|
| 519 | for ( MangleTable::const_iterator decl = mangleTable.begin(); decl != mangleTable.end(); ++decl ) {
|
---|
| 520 | // mark the mangled name as found, skipping this insertion if a declaration for that name has already been found
|
---|
| 521 | if ( foundMangleNames.insert( decl->first ).second == false ) continue;
|
---|
[743fbda] | 522 |
|
---|
[5447e09] | 523 | out.push_back( decl->second );
|
---|
| 524 | }
|
---|
[bed4c63e] | 525 | }
|
---|
[743fbda] | 526 |
|
---|
[5447e09] | 527 | // get declarations from base indexers
|
---|
| 528 | searchTables = searchTables->base.tables;
|
---|
[bed4c63e] | 529 | }
|
---|
[1ba88a0] | 530 |
|
---|
| 531 | // some special functions, e.g. constructors and destructors
|
---|
| 532 | // remove autogenerated functions when they are defined so that
|
---|
| 533 | // they can never be matched
|
---|
| 534 | removeSpecialOverrides( id, out );
|
---|
[a08ba92] | 535 | }
|
---|
[bdd516a] | 536 |
|
---|
[a08ba92] | 537 | NamedTypeDecl *Indexer::lookupType( const std::string &id ) const {
|
---|
[e8032b0] | 538 | if ( ! tables ) return 0;
|
---|
| 539 |
|
---|
[52c2a72] | 540 | TypeTable::const_iterator ret = tables->typeTable.find( id );
|
---|
| 541 | return ret != tables->typeTable.end() ? ret->second : tables->base.lookupType( id );
|
---|
[a08ba92] | 542 | }
|
---|
[17cd4eb] | 543 |
|
---|
[a08ba92] | 544 | StructDecl *Indexer::lookupStruct( const std::string &id ) const {
|
---|
[e8032b0] | 545 | if ( ! tables ) return 0;
|
---|
| 546 |
|
---|
[52c2a72] | 547 | StructTable::const_iterator ret = tables->structTable.find( id );
|
---|
| 548 | return ret != tables->structTable.end() ? ret->second : tables->base.lookupStruct( id );
|
---|
[a08ba92] | 549 | }
|
---|
[17cd4eb] | 550 |
|
---|
[a08ba92] | 551 | EnumDecl *Indexer::lookupEnum( const std::string &id ) const {
|
---|
[e8032b0] | 552 | if ( ! tables ) return 0;
|
---|
| 553 |
|
---|
[52c2a72] | 554 | EnumTable::const_iterator ret = tables->enumTable.find( id );
|
---|
| 555 | return ret != tables->enumTable.end() ? ret->second : tables->base.lookupEnum( id );
|
---|
[a08ba92] | 556 | }
|
---|
[17cd4eb] | 557 |
|
---|
[a08ba92] | 558 | UnionDecl *Indexer::lookupUnion( const std::string &id ) const {
|
---|
[e8032b0] | 559 | if ( ! tables ) return 0;
|
---|
| 560 |
|
---|
[52c2a72] | 561 | UnionTable::const_iterator ret = tables->unionTable.find( id );
|
---|
| 562 | return ret != tables->unionTable.end() ? ret->second : tables->base.lookupUnion( id );
|
---|
[e8032b0] | 563 | }
|
---|
| 564 |
|
---|
| 565 | TraitDecl *Indexer::lookupTrait( const std::string &id ) const {
|
---|
| 566 | if ( ! tables ) return 0;
|
---|
| 567 |
|
---|
[52c2a72] | 568 | TraitTable::const_iterator ret = tables->traitTable.find( id );
|
---|
| 569 | return ret != tables->traitTable.end() ? ret->second : tables->base.lookupTrait( id );
|
---|
| 570 | }
|
---|
| 571 |
|
---|
[bed4c63e] | 572 | DeclarationWithType *Indexer::lookupIdAtScope( const std::string &id, const std::string &mangleName, unsigned long scope ) const {
|
---|
| 573 | if ( ! tables ) return 0;
|
---|
| 574 | if ( tables->scope < scope ) return 0;
|
---|
| 575 |
|
---|
| 576 | IdTable::const_iterator decls = tables->idTable.find( id );
|
---|
| 577 | if ( decls != tables->idTable.end() ) {
|
---|
| 578 | const MangleTable &mangleTable = decls->second;
|
---|
| 579 | MangleTable::const_iterator decl = mangleTable.find( mangleName );
|
---|
| 580 | if ( decl != mangleTable.end() ) return decl->second;
|
---|
| 581 | }
|
---|
| 582 |
|
---|
| 583 | return tables->base.lookupIdAtScope( id, mangleName, scope );
|
---|
| 584 | }
|
---|
| 585 |
|
---|
[09d1ad0] | 586 | bool Indexer::hasIncompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const {
|
---|
[bed4c63e] | 587 | if ( ! tables ) return false;
|
---|
[09d1ad0] | 588 | if ( tables->scope < scope ) return false;
|
---|
[bed4c63e] | 589 |
|
---|
| 590 | IdTable::const_iterator decls = tables->idTable.find( id );
|
---|
| 591 | if ( decls != tables->idTable.end() ) {
|
---|
| 592 | const MangleTable &mangleTable = decls->second;
|
---|
| 593 | for ( MangleTable::const_iterator decl = mangleTable.begin(); decl != mangleTable.end(); ++decl ) {
|
---|
[4e06c1e] | 594 | // check for C decls with the same name, skipping those with a compatible type (by mangleName)
|
---|
[5447e09] | 595 | if ( decl->second->get_linkage() == LinkageSpec::C && decl->first != mangleName ) return true;
|
---|
[bed4c63e] | 596 | }
|
---|
| 597 | }
|
---|
| 598 |
|
---|
[09d1ad0] | 599 | return tables->base.hasIncompatibleCDecl( id, mangleName, scope );
|
---|
[bed4c63e] | 600 | }
|
---|
[743fbda] | 601 |
|
---|
[8884112] | 602 | bool Indexer::hasCompatibleCDecl( const std::string &id, const std::string &mangleName, unsigned long scope ) const {
|
---|
| 603 | if ( ! tables ) return false;
|
---|
| 604 | if ( tables->scope < scope ) return false;
|
---|
| 605 |
|
---|
| 606 | IdTable::const_iterator decls = tables->idTable.find( id );
|
---|
| 607 | if ( decls != tables->idTable.end() ) {
|
---|
| 608 | const MangleTable &mangleTable = decls->second;
|
---|
| 609 | for ( MangleTable::const_iterator decl = mangleTable.begin(); decl != mangleTable.end(); ++decl ) {
|
---|
| 610 | // check for C decls with the same name, skipping
|
---|
| 611 | // those with an incompatible type (by mangleName)
|
---|
| 612 | if ( decl->second->get_linkage() == LinkageSpec::C && decl->first == mangleName ) return true;
|
---|
| 613 | }
|
---|
| 614 | }
|
---|
| 615 |
|
---|
| 616 | return tables->base.hasCompatibleCDecl( id, mangleName, scope );
|
---|
| 617 | }
|
---|
| 618 |
|
---|
[52c2a72] | 619 | NamedTypeDecl *Indexer::lookupTypeAtScope( const std::string &id, unsigned long scope ) const {
|
---|
| 620 | if ( ! tables ) return 0;
|
---|
| 621 | if ( tables->scope < scope ) return 0;
|
---|
| 622 |
|
---|
| 623 | TypeTable::const_iterator ret = tables->typeTable.find( id );
|
---|
| 624 | return ret != tables->typeTable.end() ? ret->second : tables->base.lookupTypeAtScope( id, scope );
|
---|
| 625 | }
|
---|
[743fbda] | 626 |
|
---|
[52c2a72] | 627 | StructDecl *Indexer::lookupStructAtScope( const std::string &id, unsigned long scope ) const {
|
---|
| 628 | if ( ! tables ) return 0;
|
---|
| 629 | if ( tables->scope < scope ) return 0;
|
---|
| 630 |
|
---|
| 631 | StructTable::const_iterator ret = tables->structTable.find( id );
|
---|
| 632 | return ret != tables->structTable.end() ? ret->second : tables->base.lookupStructAtScope( id, scope );
|
---|
| 633 | }
|
---|
[743fbda] | 634 |
|
---|
[52c2a72] | 635 | EnumDecl *Indexer::lookupEnumAtScope( const std::string &id, unsigned long scope ) const {
|
---|
| 636 | if ( ! tables ) return 0;
|
---|
| 637 | if ( tables->scope < scope ) return 0;
|
---|
| 638 |
|
---|
| 639 | EnumTable::const_iterator ret = tables->enumTable.find( id );
|
---|
| 640 | return ret != tables->enumTable.end() ? ret->second : tables->base.lookupEnumAtScope( id, scope );
|
---|
| 641 | }
|
---|
[743fbda] | 642 |
|
---|
[52c2a72] | 643 | UnionDecl *Indexer::lookupUnionAtScope( const std::string &id, unsigned long scope ) const {
|
---|
| 644 | if ( ! tables ) return 0;
|
---|
| 645 | if ( tables->scope < scope ) return 0;
|
---|
| 646 |
|
---|
| 647 | UnionTable::const_iterator ret = tables->unionTable.find( id );
|
---|
| 648 | return ret != tables->unionTable.end() ? ret->second : tables->base.lookupUnionAtScope( id, scope );
|
---|
| 649 | }
|
---|
[743fbda] | 650 |
|
---|
[52c2a72] | 651 | TraitDecl *Indexer::lookupTraitAtScope( const std::string &id, unsigned long scope ) const {
|
---|
| 652 | if ( ! tables ) return 0;
|
---|
| 653 | if ( tables->scope < scope ) return 0;
|
---|
| 654 |
|
---|
| 655 | TraitTable::const_iterator ret = tables->traitTable.find( id );
|
---|
| 656 | return ret != tables->traitTable.end() ? ret->second : tables->base.lookupTraitAtScope( id, scope );
|
---|
[a08ba92] | 657 | }
|
---|
[17cd4eb] | 658 |
|
---|
[bed4c63e] | 659 | bool addedIdConflicts( DeclarationWithType *existing, DeclarationWithType *added ) {
|
---|
| 660 | // if we're giving the same name mangling to things of different types then there is something wrong
|
---|
| 661 | assert( (dynamic_cast<ObjectDecl*>( added ) && dynamic_cast<ObjectDecl*>( existing ) )
|
---|
| 662 | || (dynamic_cast<FunctionDecl*>( added ) && dynamic_cast<FunctionDecl*>( existing ) ) );
|
---|
| 663 |
|
---|
| 664 | if ( LinkageSpec::isOverridable( existing->get_linkage() ) ) {
|
---|
| 665 | // new definition shadows the autogenerated one, even at the same scope
|
---|
| 666 | return false;
|
---|
| 667 | } else if ( added->get_linkage() != LinkageSpec::C || ResolvExpr::typesCompatible( added->get_type(), existing->get_type(), Indexer() ) ) {
|
---|
| 668 | // typesCompatible doesn't really do the right thing here. When checking compatibility of function types,
|
---|
| 669 | // we should ignore outermost pointer qualifiers, except _Atomic?
|
---|
| 670 | FunctionDecl *newentry = dynamic_cast< FunctionDecl* >( added );
|
---|
| 671 | FunctionDecl *oldentry = dynamic_cast< FunctionDecl* >( existing );
|
---|
| 672 | if ( newentry && oldentry ) {
|
---|
| 673 | if ( newentry->get_statements() && oldentry->get_statements() ) {
|
---|
| 674 | throw SemanticError( "duplicate function definition for ", added );
|
---|
| 675 | } // if
|
---|
| 676 | } else {
|
---|
| 677 | // two objects with the same mangled name defined in the same scope.
|
---|
| 678 | // both objects must be marked extern or both must be intrinsic for this to be okay
|
---|
| 679 | // xxx - perhaps it's actually if either is intrinsic then this is okay?
|
---|
| 680 | // might also need to be same storage class?
|
---|
| 681 | ObjectDecl *newobj = dynamic_cast< ObjectDecl* >( added );
|
---|
| 682 | ObjectDecl *oldobj = dynamic_cast< ObjectDecl* >( existing );
|
---|
| 683 | if ( newobj->get_storageClass() != DeclarationNode::Extern && oldobj->get_storageClass() != DeclarationNode::Extern ) {
|
---|
| 684 | throw SemanticError( "duplicate object definition for ", added );
|
---|
| 685 | } // if
|
---|
| 686 | } // if
|
---|
| 687 | } else {
|
---|
| 688 | throw SemanticError( "duplicate definition for ", added );
|
---|
| 689 | } // if
|
---|
| 690 |
|
---|
| 691 | return true;
|
---|
| 692 | }
|
---|
[743fbda] | 693 |
|
---|
[e8032b0] | 694 | void Indexer::addId( DeclarationWithType *decl ) {
|
---|
| 695 | makeWritable();
|
---|
[bed4c63e] | 696 |
|
---|
| 697 | const std::string &name = decl->get_name();
|
---|
| 698 | std::string mangleName;
|
---|
[6a57da5] | 699 | if ( LinkageSpec::isOverridable( decl->get_linkage() ) ) {
|
---|
[bed4c63e] | 700 | // mangle the name without including the appropriate suffix, so overridable routines are placed into the
|
---|
| 701 | // same "bucket" as their user defined versions.
|
---|
| 702 | mangleName = Mangler::mangle( decl, false );
|
---|
| 703 | } else {
|
---|
| 704 | mangleName = Mangler::mangle( decl );
|
---|
| 705 | } // if
|
---|
| 706 |
|
---|
[8884112] | 707 | // this ensures that no two declarations with the same unmangled name at the same scope both have C linkage
|
---|
| 708 | if ( decl->get_linkage() == LinkageSpec::C ) {
|
---|
| 709 | // NOTE this is broken in Richard's original code in such a way that it never triggers (it
|
---|
| 710 | // doesn't check decls that have the same manglename, and all C-linkage decls are defined to
|
---|
| 711 | // have their name as their manglename, hence the error can never trigger).
|
---|
| 712 | // The code here is closer to correct, but name mangling would have to be completely
|
---|
| 713 | // isomorphic to C type-compatibility, which it may not be.
|
---|
| 714 | if ( hasIncompatibleCDecl( name, mangleName, scope ) ) {
|
---|
| 715 | throw SemanticError( "conflicting overload of C function ", decl );
|
---|
| 716 | }
|
---|
| 717 | } else {
|
---|
| 718 | // Check that a Cforall declaration doesn't overload any C declaration
|
---|
| 719 | if ( hasCompatibleCDecl( name, mangleName, scope ) ) {
|
---|
| 720 | throw SemanticError( "Cforall declaration hides C function ", decl );
|
---|
| 721 | }
|
---|
[bed4c63e] | 722 | }
|
---|
[8884112] | 723 |
|
---|
| 724 | // Skip repeat declarations of the same identifier
|
---|
| 725 | DeclarationWithType *existing = lookupIdAtScope( name, mangleName, scope );
|
---|
| 726 | if ( existing && addedIdConflicts( existing, decl ) ) return;
|
---|
| 727 |
|
---|
| 728 | // add to indexer
|
---|
| 729 | tables->idTable[ name ][ mangleName ] = decl;
|
---|
| 730 | ++tables->size;
|
---|
[e8032b0] | 731 | }
|
---|
[52c2a72] | 732 |
|
---|
| 733 | bool addedTypeConflicts( NamedTypeDecl *existing, NamedTypeDecl *added ) {
|
---|
| 734 | if ( existing->get_base() == 0 ) {
|
---|
| 735 | return false;
|
---|
| 736 | } else if ( added->get_base() == 0 ) {
|
---|
| 737 | return true;
|
---|
| 738 | } else {
|
---|
| 739 | throw SemanticError( "redeclaration of ", added );
|
---|
| 740 | }
|
---|
| 741 | }
|
---|
[743fbda] | 742 |
|
---|
[e8032b0] | 743 | void Indexer::addType( NamedTypeDecl *decl ) {
|
---|
| 744 | makeWritable();
|
---|
[52c2a72] | 745 |
|
---|
| 746 | const std::string &id = decl->get_name();
|
---|
| 747 | TypeTable::iterator existing = tables->typeTable.find( id );
|
---|
| 748 | if ( existing == tables->typeTable.end() ) {
|
---|
| 749 | NamedTypeDecl *parent = tables->base.lookupTypeAtScope( id, scope );
|
---|
| 750 | if ( ! parent || ! addedTypeConflicts( parent, decl ) ) {
|
---|
| 751 | tables->typeTable.insert( existing, std::make_pair( id, decl ) );
|
---|
| 752 | ++tables->size;
|
---|
| 753 | }
|
---|
| 754 | } else {
|
---|
| 755 | if ( ! addedTypeConflicts( existing->second, decl ) ) {
|
---|
| 756 | existing->second = decl;
|
---|
| 757 | }
|
---|
| 758 | }
|
---|
| 759 | }
|
---|
| 760 |
|
---|
| 761 | bool addedDeclConflicts( AggregateDecl *existing, AggregateDecl *added ) {
|
---|
| 762 | if ( existing->get_members().empty() ) {
|
---|
| 763 | return false;
|
---|
| 764 | } else if ( ! added->get_members().empty() ) {
|
---|
| 765 | throw SemanticError( "redeclaration of ", added );
|
---|
| 766 | } // if
|
---|
| 767 | return true;
|
---|
[e8032b0] | 768 | }
|
---|
| 769 |
|
---|
| 770 | void Indexer::addStruct( const std::string &id ) {
|
---|
[52c2a72] | 771 | addStruct( new StructDecl( id ) );
|
---|
[e8032b0] | 772 | }
|
---|
[743fbda] | 773 |
|
---|
[e8032b0] | 774 | void Indexer::addStruct( StructDecl *decl ) {
|
---|
| 775 | makeWritable();
|
---|
[52c2a72] | 776 |
|
---|
| 777 | const std::string &id = decl->get_name();
|
---|
| 778 | StructTable::iterator existing = tables->structTable.find( id );
|
---|
| 779 | if ( existing == tables->structTable.end() ) {
|
---|
| 780 | StructDecl *parent = tables->base.lookupStructAtScope( id, scope );
|
---|
| 781 | if ( ! parent || ! addedDeclConflicts( parent, decl ) ) {
|
---|
| 782 | tables->structTable.insert( existing, std::make_pair( id, decl ) );
|
---|
| 783 | ++tables->size;
|
---|
| 784 | }
|
---|
| 785 | } else {
|
---|
| 786 | if ( ! addedDeclConflicts( existing->second, decl ) ) {
|
---|
| 787 | existing->second = decl;
|
---|
| 788 | }
|
---|
| 789 | }
|
---|
[e8032b0] | 790 | }
|
---|
[743fbda] | 791 |
|
---|
[e8032b0] | 792 | void Indexer::addEnum( EnumDecl *decl ) {
|
---|
| 793 | makeWritable();
|
---|
[52c2a72] | 794 |
|
---|
| 795 | const std::string &id = decl->get_name();
|
---|
| 796 | EnumTable::iterator existing = tables->enumTable.find( id );
|
---|
| 797 | if ( existing == tables->enumTable.end() ) {
|
---|
| 798 | EnumDecl *parent = tables->base.lookupEnumAtScope( id, scope );
|
---|
| 799 | if ( ! parent || ! addedDeclConflicts( parent, decl ) ) {
|
---|
| 800 | tables->enumTable.insert( existing, std::make_pair( id, decl ) );
|
---|
| 801 | ++tables->size;
|
---|
| 802 | }
|
---|
| 803 | } else {
|
---|
| 804 | if ( ! addedDeclConflicts( existing->second, decl ) ) {
|
---|
| 805 | existing->second = decl;
|
---|
| 806 | }
|
---|
| 807 | }
|
---|
[e8032b0] | 808 | }
|
---|
| 809 |
|
---|
| 810 | void Indexer::addUnion( const std::string &id ) {
|
---|
[52c2a72] | 811 | addUnion( new UnionDecl( id ) );
|
---|
[e8032b0] | 812 | }
|
---|
[743fbda] | 813 |
|
---|
[e8032b0] | 814 | void Indexer::addUnion( UnionDecl *decl ) {
|
---|
| 815 | makeWritable();
|
---|
[52c2a72] | 816 |
|
---|
| 817 | const std::string &id = decl->get_name();
|
---|
| 818 | UnionTable::iterator existing = tables->unionTable.find( id );
|
---|
| 819 | if ( existing == tables->unionTable.end() ) {
|
---|
| 820 | UnionDecl *parent = tables->base.lookupUnionAtScope( id, scope );
|
---|
| 821 | if ( ! parent || ! addedDeclConflicts( parent, decl ) ) {
|
---|
| 822 | tables->unionTable.insert( existing, std::make_pair( id, decl ) );
|
---|
| 823 | ++tables->size;
|
---|
| 824 | }
|
---|
| 825 | } else {
|
---|
| 826 | if ( ! addedDeclConflicts( existing->second, decl ) ) {
|
---|
| 827 | existing->second = decl;
|
---|
| 828 | }
|
---|
| 829 | }
|
---|
[e8032b0] | 830 | }
|
---|
[743fbda] | 831 |
|
---|
[e8032b0] | 832 | void Indexer::addTrait( TraitDecl *decl ) {
|
---|
| 833 | makeWritable();
|
---|
[52c2a72] | 834 |
|
---|
| 835 | const std::string &id = decl->get_name();
|
---|
| 836 | TraitTable::iterator existing = tables->traitTable.find( id );
|
---|
| 837 | if ( existing == tables->traitTable.end() ) {
|
---|
| 838 | TraitDecl *parent = tables->base.lookupTraitAtScope( id, scope );
|
---|
| 839 | if ( ! parent || ! addedDeclConflicts( parent, decl ) ) {
|
---|
| 840 | tables->traitTable.insert( existing, std::make_pair( id, decl ) );
|
---|
| 841 | ++tables->size;
|
---|
| 842 | }
|
---|
| 843 | } else {
|
---|
| 844 | if ( ! addedDeclConflicts( existing->second, decl ) ) {
|
---|
| 845 | existing->second = decl;
|
---|
| 846 | }
|
---|
| 847 | }
|
---|
[a08ba92] | 848 | }
|
---|
[17cd4eb] | 849 |
|
---|
[a08ba92] | 850 | void Indexer::enterScope() {
|
---|
[52c2a72] | 851 | ++scope;
|
---|
[743fbda] | 852 |
|
---|
[0dd3a2f] | 853 | if ( doDebug ) {
|
---|
[52c2a72] | 854 | std::cout << "--- Entering scope " << scope << std::endl;
|
---|
[0dd3a2f] | 855 | }
|
---|
[a08ba92] | 856 | }
|
---|
[17cd4eb] | 857 |
|
---|
[a08ba92] | 858 | void Indexer::leaveScope() {
|
---|
[0dd3a2f] | 859 | using std::cout;
|
---|
[52c2a72] | 860 |
|
---|
| 861 | assert( scope > 0 && "cannot leave initial scope" );
|
---|
| 862 | --scope;
|
---|
| 863 |
|
---|
| 864 | while ( tables && tables->scope > scope ) {
|
---|
| 865 | if ( doDebug ) {
|
---|
| 866 | cout << "--- Leaving scope " << tables->scope << " containing" << std::endl;
|
---|
[bed4c63e] | 867 | dump( tables->idTable, cout );
|
---|
[52c2a72] | 868 | dump( tables->typeTable, cout );
|
---|
| 869 | dump( tables->structTable, cout );
|
---|
| 870 | dump( tables->enumTable, cout );
|
---|
| 871 | dump( tables->unionTable, cout );
|
---|
| 872 | dump( tables->traitTable, cout );
|
---|
| 873 | }
|
---|
| 874 |
|
---|
| 875 | // swap tables for base table until we find one at an appropriate scope
|
---|
| 876 | Indexer::Impl *base = newRef( tables->base.tables );
|
---|
| 877 | deleteRef( tables );
|
---|
| 878 | tables = base;
|
---|
[0dd3a2f] | 879 | }
|
---|
[a08ba92] | 880 | }
|
---|
[17cd4eb] | 881 |
|
---|
[a08ba92] | 882 | void Indexer::print( std::ostream &os, int indent ) const {
|
---|
| 883 | using std::cerr;
|
---|
[e8032b0] | 884 |
|
---|
[0cb1d61] | 885 | if ( tables ) {
|
---|
| 886 | os << "--- scope " << tables->scope << " ---" << std::endl;
|
---|
| 887 |
|
---|
| 888 | os << "===idTable===" << std::endl;
|
---|
| 889 | dump( tables->idTable, os );
|
---|
| 890 | os << "===typeTable===" << std::endl;
|
---|
| 891 | dump( tables->typeTable, os );
|
---|
| 892 | os << "===structTable===" << std::endl;
|
---|
| 893 | dump( tables->structTable, os );
|
---|
| 894 | os << "===enumTable===" << std::endl;
|
---|
| 895 | dump( tables->enumTable, os );
|
---|
| 896 | os << "===unionTable===" << std::endl;
|
---|
| 897 | dump( tables->unionTable, os );
|
---|
| 898 | os << "===contextTable===" << std::endl;
|
---|
| 899 | dump( tables->traitTable, os );
|
---|
| 900 |
|
---|
| 901 | tables->base.print( os, indent );
|
---|
| 902 | } else {
|
---|
| 903 | os << "--- end ---" << std::endl;
|
---|
| 904 | }
|
---|
[743fbda] | 905 |
|
---|
[a08ba92] | 906 | }
|
---|
[51b73452] | 907 | } // namespace SymTab
|
---|
[0dd3a2f] | 908 |
|
---|
| 909 | // Local Variables: //
|
---|
| 910 | // tab-width: 4 //
|
---|
| 911 | // mode: c++ //
|
---|
| 912 | // compile-command: "make install" //
|
---|
| 913 | // End: //
|
---|