Changeset dfee306
- Timestamp:
- Jul 13, 2015, 2:43:46 PM (8 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, 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, with_gc
- Children:
- 9163b9c
- Parents:
- 85c4ef0 (diff), cff1143 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - Location:
- src
- Files:
-
- 17 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/FixNames.h
r85c4ef0 rdfee306 20 20 21 21 namespace CodeGen { 22 /// mangles object and function names 22 23 void fixNames( std::list< Declaration* > translationUnit ); 23 24 } // namespace CodeGen -
src/CodeGen/Generate.h
r85c4ef0 rdfee306 23 23 24 24 namespace CodeGen { 25 /// Generates code 25 26 void generate( std::list< Declaration* > translationUnit, std::ostream &os, bool doIntrinsics ); 26 27 } // namespace CodeGen -
src/ControlStruct/CaseRangeMutator.h
r85c4ef0 rdfee306 22 22 23 23 namespace ControlStruct { 24 /// expand case ranges and turn fallthru into a null statement 24 25 class CaseRangeMutator : public Mutator { 25 26 public: -
src/ControlStruct/ChooseMutator.h
r85c4ef0 rdfee306 22 22 23 23 namespace ControlStruct { 24 /// transform choose statements into switch statements 24 25 class ChooseMutator : public Mutator { 25 26 public: -
src/ControlStruct/LabelFixer.h
r85c4ef0 rdfee306 25 25 26 26 namespace ControlStruct { 27 /// normalizes label definitions and generates multi-level exit labels 27 28 class LabelFixer : public Visitor { 28 29 typedef Visitor Parent; -
src/ControlStruct/Mutate.h
r85c4ef0 rdfee306 23 23 24 24 namespace ControlStruct { 25 /// Desugars Cforall control structures 25 26 void mutate( std::list< Declaration* > translationUnit ); 26 27 } // namespace ControlStruct -
src/GenPoly/Box.cc
r85c4ef0 rdfee306 204 204 } 205 205 206 DeclarationWithType * 207 Pass1::mutate( FunctionDecl *functionDecl ) { 206 DeclarationWithType *Pass1::mutate( FunctionDecl *functionDecl ) { 208 207 if ( functionDecl->get_statements() ) { 209 208 TyVarMap oldtyVars = scopeTyVars; -
src/GenPoly/Box.h
r85c4ef0 rdfee306 21 21 22 22 namespace GenPoly { 23 /// boxes polymorphic function calls 23 24 void box( std::list< Declaration* >& translationUnit ); 24 25 } // namespace GenPoly -
src/GenPoly/CopyParams.h
r85c4ef0 rdfee306 20 20 21 21 namespace GenPoly { 22 /// Clones by-value parameters which have been passed by-reference for polymorphism 22 23 void copyParams( std::list< Declaration* > &translationUnit ); 23 24 } // namespace GenPoly -
src/GenPoly/Lvalue.h
r85c4ef0 rdfee306 22 22 23 23 namespace GenPoly { 24 /// replaces return type of `lvalue T` with `T*`, along with appropriate address-of and dereference operators 24 25 void convertLvalue( std::list< Declaration* >& translationUnit ); 25 26 } // namespace GenPoly -
src/GenPoly/Specialize.h
r85c4ef0 rdfee306 22 22 23 23 namespace GenPoly { 24 /// generates thunks where needed 24 25 void convertSpecializations( std::list< Declaration* >& translationUnit ); 25 26 } // namespace GenPoly -
src/InitTweak/RemoveInit.h
r85c4ef0 rdfee306 25 25 26 26 namespace InitTweak { 27 /// Adds assignment statements for polymorphic type initializers 27 28 void tweak( std::list< Declaration * > translationUnit ); 28 29 -
src/ResolvExpr/Resolver.h
r85c4ef0 rdfee306 21 21 22 22 namespace ResolvExpr { 23 /// Checks types and binds syntactic constructs to typed representations 23 24 void resolve( std::list< Declaration * > translationUnit ); 24 25 Expression *resolveInVoidContext( Expression *expr, const SymTab::Indexer &indexer ); -
src/SymTab/FixFunction.h
r85c4ef0 rdfee306 20 20 21 21 namespace SymTab { 22 /// Replaces function and array types by equivalent pointer types. 22 23 class FixFunction : public Mutator { 23 24 typedef Mutator Parent; -
src/SymTab/Validate.cc
r85c4ef0 rdfee306 60 60 class HoistStruct : public Visitor { 61 61 public: 62 /// Flattens nested struct types 62 63 static void hoistStruct( std::list< Declaration * > &translationUnit ); 63 64 … … 84 85 }; 85 86 87 /// Replaces enum types by int, and function or array types in function parameter and return lists by appropriate pointers 86 88 class Pass1 : public Visitor { 87 89 typedef Visitor Parent; … … 89 91 virtual void visit( FunctionType *func ); 90 92 }; 91 93 94 /// Associates forward declarations of aggregates with their definitions 92 95 class Pass2 : public Indexer { 93 96 typedef Indexer Parent; … … 110 113 }; 111 114 115 /// Replaces array and function types in forall lists by appropriate pointer type 112 116 class Pass3 : public Indexer { 113 117 typedef Indexer Parent; … … 123 127 class AddStructAssignment : public Visitor { 124 128 public: 129 /// Generates assignment operators for aggregate types as required 125 130 static void addStructAssignment( std::list< Declaration * > &translationUnit ); 126 131 … … 444 449 } 445 450 451 /// Fix up assertions 446 452 void forallFixer( Type *func ) { 447 // Fix up assertions448 453 for ( std::list< TypeDecl * >::iterator type = func->get_forall().begin(); type != func->get_forall().end(); ++type ) { 449 454 std::list< DeclarationWithType * > toBeDone, nextRound; -
src/SymTab/Validate.h
r85c4ef0 rdfee306 23 23 class Indexer; 24 24 25 /// Normalizes struct and function declarations 25 26 void validate( std::list< Declaration * > &translationUnit, bool doDebug = false ); 26 27 void validateType( Type *type, const Indexer *indexer ); -
src/SynTree/TypeSubstitution.h
r85c4ef0 rdfee306 157 157 } 158 158 159 // helper function 159 /// Instantiate each member of the context given the actual parameters specified, and store the 160 /// instantiations for use by the indexer 160 161 template< typename FormalIterator, typename ActualIterator, typename MemberIterator, typename OutputIterator > 161 162 void applySubstitution( FormalIterator formalBegin, FormalIterator formalEnd, ActualIterator actual, MemberIterator memberBegin, MemberIterator memberEnd, OutputIterator out ) { 162 // Instantiate each member of the context given the actual parameters specified, and store the163 // instantiations for use by the indexer164 165 163 TypeSubstitution sub = TypeSubstitution( formalBegin, formalEnd, actual ); 166 164 for ( std::list< Declaration* >::iterator i = memberBegin; i != memberEnd; ++i ) {
Note: See TracChangeset
for help on using the changeset viewer.