Changes in src/Concurrency/Keywords.cc [615a096:b32ada31]
- File:
-
- 1 edited
-
src/Concurrency/Keywords.cc (modified) (12 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/Concurrency/Keywords.cc
r615a096 rb32ada31 12 12 // Last Modified By : 13 13 // Last Modified On : 14 // Update Count : 314 // Update Count : 1 15 15 // 16 16 17 17 #include "Concurrency/Keywords.h" 18 18 19 #include "SymTab/AddVisit.h" 19 20 #include "SynTree/Declaration.h" 20 21 #include "SynTree/Expression.h" … … 29 30 namespace { 30 31 const std::list<Label> noLabels; 32 const std::list< Attribute * > noAttributes; 31 33 Type::StorageClasses noStorage; 32 34 Type::Qualifiers noQualifiers; … … 63 65 // void main( MyCoroutine * this ); 64 66 // 65 class CoroutineKeyword final : public Mutator { 67 class CoroutineKeyword final : public Visitor { 68 template< typename Visitor > 69 friend void SymTab::acceptAndAdd( std::list< Declaration * > &translationUnit, Visitor &visitor ); 66 70 public: 67 71 68 static void implement( std::list< Declaration * > & translationUnit ) {} 72 using Visitor::visit; 73 virtual void visit( StructDecl * decl ) override final; 74 75 void handle( StructDecl * ); 76 Declaration * addField( StructDecl * ); 77 void addRoutines( StructDecl *, Declaration * ); 78 79 static void implement( std::list< Declaration * > & translationUnit ) { 80 CoroutineKeyword impl; 81 SymTab::acceptAndAdd( translationUnit, impl ); 82 } 83 84 private: 85 std::list< Declaration * > declsToAdd, declsToAddAfter; 86 StructDecl* coroutine_decl = nullptr; 69 87 }; 70 88 … … 97 115 98 116 using Visitor::visit; 99 virtual void visit( FunctionDecl * functionDecl ) override final;100 virtual void visit( StructDecl * functionDecl ) override final;117 virtual void visit( FunctionDecl * decl ) override final; 118 virtual void visit( StructDecl * decl ) override final; 101 119 102 120 std::list<DeclarationWithType*> findMutexArgs( FunctionDecl* ); … … 111 129 private: 112 130 StructDecl* monitor_decl = nullptr; 131 StructDecl* guard_decl = nullptr; 113 132 }; 114 133 … … 124 143 125 144 //============================================================================================= 145 // Coroutine keyword implementation 146 //============================================================================================= 147 void CoroutineKeyword::visit(StructDecl * decl) { 148 if( decl->get_name() == "coroutine_desc" ) { 149 assert( !coroutine_decl ); 150 coroutine_decl = decl; 151 } 152 else if ( false ) { 153 handle( decl ); 154 } 155 156 } 157 158 void CoroutineKeyword::handle( StructDecl * decl ) { 159 if( ! decl->has_body() ) return; 160 161 if( !coroutine_decl ) throw SemanticError( "coroutine keyword requires coroutines to be in scope, add #include <coroutine>", decl ); 162 163 Declaration * field = addField( decl ); 164 addRoutines( decl, field ); 165 } 166 167 Declaration * CoroutineKeyword::addField( StructDecl * decl ) { 168 Declaration * cor = new ObjectDecl( 169 "__cor", 170 noStorage, 171 LinkageSpec::Cforall, 172 nullptr, 173 new StructInstType( 174 noQualifiers, 175 coroutine_decl 176 ), 177 nullptr 178 ); 179 180 decl->get_members().push_front( cor ); 181 182 return cor; 183 } 184 185 void CoroutineKeyword::addRoutines( StructDecl * decl, Declaration * field ) { 186 FunctionType * type = new FunctionType( noQualifiers, false ); 187 type->get_parameters().push_back( 188 new ObjectDecl( 189 "this", 190 noStorage, 191 LinkageSpec::Cforall, 192 nullptr, 193 new PointerType( 194 noQualifiers, 195 new StructInstType( 196 noQualifiers, 197 decl 198 ) 199 ), 200 nullptr 201 ) 202 ); 203 204 CompoundStmt * statement = new CompoundStmt( noLabels ); 205 statement->push_back( 206 new ReturnStmt( 207 noLabels, 208 new UntypedMemberExpr( 209 new NameExpr( "__cor" ), 210 new NameExpr( "this" ) 211 ) 212 ) 213 ); 214 215 declsToAddAfter.push_back( 216 new FunctionDecl( 217 "get_coroutine", 218 Type::Static, 219 LinkageSpec::Cforall, 220 type, 221 statement, 222 noAttributes, 223 Type::Inline 224 ) 225 ); 226 } 227 228 229 //============================================================================================= 126 230 // Mutex keyword implementation 127 231 //============================================================================================= … … 137 241 if( ! body ) return; 138 242 139 assert(monitor_decl); 243 if( !monitor_decl ) throw SemanticError( "mutex keyword requires monitors to be in scope, add #include <monitor>", decl ); 244 if( !guard_decl ) throw SemanticError( "mutex keyword requires monitors to be in scope, add #include <monitor>", decl ); 245 140 246 addStatments( body, mutexArgs ); 141 247 } … … 146 252 monitor_decl = decl; 147 253 } 254 else if( decl->get_name() == "monitor_guard_t" ) { 255 assert( !guard_decl ); 256 guard_decl = decl; 257 } 148 258 } 149 259 … … 154 264 //Find mutex arguments 155 265 Type* ty = arg->get_type(); 156 if( ! ty->get_ mutex()) continue;266 if( ! ty->get_qualifiers().isMutex ) continue; 157 267 158 268 //Append it to the list … … 175 285 176 286 //Make sure that typed isn't mutex 177 if( ! base->get_mutex()) throw SemanticError( "mutex keyword may only appear once per argument ", arg );287 if( base->get_qualifiers().isMutex ) throw SemanticError( "mutex keyword may only appear once per argument ", arg ); 178 288 } 179 289 180 290 void MutexKeyword::addStatments( CompoundStmt * body, const std::list<DeclarationWithType * > & args ) { 181 182 291 ObjectDecl * monitors = new ObjectDecl( 183 292 "__monitors", … … 218 327 new StructInstType( 219 328 noQualifiers, 220 "monitor_guard_t"329 guard_decl 221 330 ), 222 331 new ListInit( … … 224 333 new SingleInit( new VariableExpr( monitors ) ), 225 334 new SingleInit( new ConstantExpr( Constant::from_ulong( args.size() ) ) ) 226 } 335 }, 336 noDesignators, 337 true 227 338 ) 228 339 )) 229 340 ); 230 341 231 //monitor_desc * __monitors[] = { a, b};342 //monitor_desc * __monitors[] = { get_monitor(a), get_monitor(b) }; 232 343 body->push_front( new DeclStmt( noLabels, monitors) ); 233 344 }
Note:
See TracChangeset
for help on using the changeset viewer.