Changes in / [8fc15cf:83b52f1]
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libcfa/prelude/prelude-gen.cc
r8fc15cf r83b52f1 1 // 1 // 2 2 // Cforall Version 1.0.0 Copyright (C) 2018 University of Waterloo 3 3 // 4 4 // The contents of this file are covered under the licence agreement in the 5 5 // file "LICENCE" distributed with Cforall. 6 // 7 // prelude-gen.cc -- 8 // 6 // 7 // prelude-gen.cc -- 8 // 9 9 // Author : Rob Schluntz and Thierry Delisle 10 10 // Created On : Sat Feb 16 08:44:58 2019 … … 12 12 // Last Modified On : Tue Apr 2 17:18:24 2019 13 13 // Update Count : 37 14 // 14 // 15 15 16 16 #include <algorithm> … … 264 264 for (auto cvq : qualifiersPair) { 265 265 for (auto is_vol : { " ", "volatile" }) { 266 cout << "forall(dtype DT) void ?{}(" << cvq.first << type << " * " << is_vol << " &, " << cvq.second << "DT *);" << endl;266 cout << "forall(dtype DT) void ?{}(" << cvq.first << type << " * " << is_vol << " &, " << cvq.second << "DT *);" << endl; 267 267 } 268 268 } 269 for (auto cvq : qualifiersSingle) { 270 for (auto is_vol : { " ", "volatile" }) { 271 cout << "forall(dtype DT) void ?{}(" << cvq << type << " * " << is_vol << " &);" << endl; 272 } 273 for (auto is_vol : { " ", "volatile" }) { 274 cout << "forall(dtype DT) void ^?{}(" << cvq << type << " * " << is_vol << " &);" << endl; 275 } 269 } 270 for (auto cvq : qualifiersSingle) { 271 for (auto is_vol : { " ", "volatile" }) { 272 cout << "void ?{}(" << cvq << "void" << " * " << is_vol << " &);" << endl; 273 } 274 for (auto is_vol : { " ", "volatile" }) { 275 cout << "void ^?{}(" << cvq << "void" << " * " << is_vol << " &);" << endl; 276 } 277 } 278 279 for (auto cvq : qualifiersSingle) { 280 for (auto is_vol : { " ", "volatile" }) { 281 cout << "forall(dtype DT) void ?{}(" << cvq << " DT" << " * " << is_vol << " &);" << endl; 282 } 283 for (auto is_vol : { " ", "volatile" }) { 284 cout << "forall(dtype DT) void ^?{}(" << cvq << " DT" << " * " << is_vol << " &);" << endl; 276 285 } 277 286 } … … 288 297 cout << endl; 289 298 290 cout << "forall(ftype FT) void ?{}( FT * &, zero_t ); 299 cout << "forall(ftype FT) void ?{}( FT * &, zero_t );" << endl; 291 300 cout << "forall(ftype FT) FT * ?=?( FT * &, zero_t );" << endl; 292 301 cout << "forall(ftype FT) FT * ?=?( FT * volatile &, zero_t );" << endl;
Note: See TracChangeset
for help on using the changeset viewer.