Changeset 51587aa for translator/InitTweak
- Timestamp:
- May 18, 2015, 11:45:33 PM (11 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, ctor, deferred_resn, demangler, enum, forall-pointer-decay, gc_noraii, jacob/cs343-translation, jenkins-sandbox, master, memory, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, string, stuck-waitfor-destruct, with_gc
- Children:
- 01aeade
- Parents:
- 0dd3a2f
- Location:
- translator/InitTweak
- Files:
-
- 15 edited
-
Association.cc (modified) (2 diffs)
-
Association.h (modified) (2 diffs)
-
BasicInit.cc (modified) (2 diffs)
-
BasicInit.h (modified) (2 diffs)
-
DeclarationHoister.cc (modified) (2 diffs)
-
DeclarationHoister.h (modified) (2 diffs)
-
InitExpander.cc (modified) (2 diffs)
-
InitExpander.h (modified) (2 diffs)
-
InitModel.cc (modified) (2 diffs)
-
InitModel.h (modified) (2 diffs)
-
Mutate.cc (modified) (2 diffs)
-
Mutate.h (modified) (2 diffs)
-
RemoveInit.cc (modified) (2 diffs)
-
RemoveInit.h (modified) (2 diffs)
-
diet_map.h (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
translator/InitTweak/Association.cc
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include "Association.h" 2 16 … … 8 22 const int RangeAssociation::RangeAssociation::UNDEF = -1; 9 23 RangeAssociation::~RangeAssociation() {} 24 // Local Variables: // 25 // tab-width: 4 // 26 // mode: c++ // 27 // compile-command: "make install" // 28 // End: // -
translator/InitTweak/Association.h
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #ifndef _ASSOCIATE_H_ 2 16 #define _ASSOCIATE_H_ … … 276 290 End: 277 291 */ 292 // Local Variables: // 293 // tab-width: 4 // 294 // mode: c++ // 295 // compile-command: "make install" // 296 // End: // -
translator/InitTweak/BasicInit.cc
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include <list> 2 16 #include <cassert> … … 262 276 } // namespace InitTweak 263 277 278 // Local Variables: // 279 // tab-width: 4 // 280 // mode: c++ // 281 // compile-command: "make install" // 282 // End: // -
translator/InitTweak/BasicInit.h
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #ifndef _BASINIT_H_ 2 16 #define _BASINIT_H_ … … 215 229 End: 216 230 */ 231 // Local Variables: // 232 // tab-width: 4 // 233 // mode: c++ // 234 // compile-command: "make install" // 235 // End: // -
translator/InitTweak/DeclarationHoister.cc
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include <list> 2 16 #include <cassert> … … 48 62 49 63 64 // Local Variables: // 65 // tab-width: 4 // 66 // mode: c++ // 67 // compile-command: "make install" // 68 // End: // -
translator/InitTweak/DeclarationHoister.h
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include "SynTree/Visitor.h" 2 16 #include "SymTab/Indexer.h" … … 18 32 End: 19 33 */ 34 // Local Variables: // 35 // tab-width: 4 // 36 // mode: c++ // 37 // compile-command: "make install" // 38 // End: // -
translator/InitTweak/InitExpander.cc
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include <list> 2 16 #include <stack> … … 34 48 } // namespace InitTweak 35 49 50 // Local Variables: // 51 // tab-width: 4 // 52 // mode: c++ // 53 // compile-command: "make install" // 54 // End: // -
translator/InitTweak/InitExpander.h
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #ifndef _INIT_EXPANDER_H_ 2 16 #define _INIT_EXPANDER_H_ … … 65 79 End: 66 80 */ 81 // Local Variables: // 82 // tab-width: 4 // 83 // mode: c++ // 84 // compile-command: "make install" // 85 // End: // -
translator/InitTweak/InitModel.cc
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include "SynTree/Constant.h" 2 16 #include "InitModel.h" … … 208 222 209 223 } // namespace InitTweak 224 // Local Variables: // 225 // tab-width: 4 // 226 // mode: c++ // 227 // compile-command: "make install" // 228 // End: // -
translator/InitTweak/InitModel.h
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #ifndef _INITTWEAK_MODEL_H_ 2 16 #define _INITTWEAK_MODEL_H_ … … 113 127 End: 114 128 */ 129 // Local Variables: // 130 // tab-width: 4 // 131 // mode: c++ // 132 // compile-command: "make install" // 133 // End: // -
translator/InitTweak/Mutate.cc
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include "SynTree/Mutator.h" 2 16 … … 23 37 24 38 39 // Local Variables: // 40 // tab-width: 4 // 41 // mode: c++ // 42 // compile-command: "make install" // 43 // End: // -
translator/InitTweak/Mutate.h
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #ifndef INIT_MUTATE_H 2 16 #define INIT_MUTATE_H … … 19 33 End: 20 34 */ 35 // Local Variables: // 36 // tab-width: 4 // 37 // mode: c++ // 38 // compile-command: "make install" // 39 // End: // -
translator/InitTweak/RemoveInit.cc
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include "RemoveInit.h" 2 16 #include "SynTree/Declaration.h" … … 51 65 } // namespace InitTweak 52 66 67 // Local Variables: // 68 // tab-width: 4 // 69 // mode: c++ // 70 // compile-command: "make install" // 71 // End: // -
translator/InitTweak/RemoveInit.h
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 /* 2 16 * This file is part of the Cforall project … … 33 47 34 48 #endif /* #ifndef GENPOLY_POLYMUTATOR_H */ 49 // Local Variables: // 50 // tab-width: 4 // 51 // mode: c++ // 52 // compile-command: "make install" // 53 // End: // -
translator/InitTweak/diet_map.h
r0dd3a2f r51587aa 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 // XXX.cc -- 8 // 9 // Author : Richard C. Bilson 10 // Created On : Mon May 18 07:44:20 2015 11 // Last Modified By : 12 // Last Modified On : 13 // Update Count : 0 14 // 1 15 #include <cassert> 2 16 #include <string> … … 206 220 End: 207 221 */ 222 // Local Variables: // 223 // tab-width: 4 // 224 // mode: c++ // 225 // compile-command: "make install" // 226 // End: //
Note:
See TracChangeset
for help on using the changeset viewer.