- Timestamp:
- Aug 15, 2017, 11:36:14 AM (7 years ago)
- Branches:
- ADT, aaron-thesis, arm-eh, ast-experimental, cleanup-dtors, deferred_resn, demangler, enum, forall-pointer-decay, jacob/cs343-translation, jenkins-sandbox, master, new-ast, new-ast-unique-expr, new-env, no_list, persistent-indexer, pthread-emulation, qualifiedEnum, resolv-new, with_gc
- Children:
- d180746
- Parents:
- 84993ff2
- Location:
- src
- Files:
-
- 26 edited
Legend:
- Unmodified
- Added
- Removed
-
src/CodeGen/CodeGenerator.h
r84993ff2 r08fc48f 20 20 #include <string> // for string 21 21 22 #include "Common/Indenter.h" // for Indenter 22 23 #include "SynTree/Declaration.h" // for DeclarationWithType (ptr only), Fun... 23 24 #include "SynTree/Visitor.h" // for Visitor 24 25 #include "SynTree/SynTree.h" // for Visitor Nodes 25 26 #include "Common/Indenter.h" // for Indenter27 26 28 27 namespace CodeGen { -
src/CodeTools/TrackLoc.cc
r84993ff2 r08fc48f 18 18 #include <cstdlib> // for exit, EXIT_FAILURE 19 19 #include <iostream> // for operator<<, ostream, basic_ostream 20 #include <iterator> // for back_inserter, inserter 20 21 #include <stack> // for stack 21 22 #include <string> // for operator<<, string … … 23 24 24 25 #include "Common/PassVisitor.h" // for PassVisitor 26 #include "Common/SemanticError.h" // for SemanticError 25 27 #include "Common/utility.h" // for CodeLocation 26 28 #include "SynTree/BaseSyntaxNode.h" // for BaseSyntaxNode 29 #include "SynTree/Mutator.h" // for mutateAll 30 #include "SynTree/Visitor.h" // for acceptAll 27 31 28 32 class Declaration; -
src/Common/PassVisitor.h
r84993ff2 r08fc48f 1 1 #pragma once 2 3 // IWYU pragma: private, include "Common/PassVisitor.h" 2 4 3 5 #include <stack> -
src/Concurrency/Keywords.cc
r84993ff2 r08fc48f 23 23 #include "InitTweak/InitTweak.h" // for isConstructor 24 24 #include "Parser/LinkageSpec.h" // for Cforall 25 #include "SymTab/AddVisit.h" // for acceptAndAdd26 25 #include "SynTree/Constant.h" // for Constant 27 26 #include "SynTree/Declaration.h" // for StructDecl, FunctionDecl, ObjectDecl -
src/GenPoly/Box.cc
r84993ff2 r08fc48f 14 14 // 15 15 16 #include <algorithm> 17 #include <iterator> 18 #include <list> 19 #include <map> 20 #include <set> 21 #include <stack> 22 #include <string> 23 #include <utility> 24 #include <vector> 25 #include <cassert> 16 #include <algorithm> // for mismatch 17 #include <cassert> // for assert, safe_dynamic_cast 18 #include <iostream> // for operator<<, stringstream 19 #include <list> // for list, list<>::iterator, _Lis... 20 #include <map> // for _Rb_tree_const_iterator, map 21 #include <memory> // for auto_ptr 22 #include <set> // for set 23 #include <string> // for string, allocator, basic_string 24 #include <utility> // for pair 26 25 27 26 #include "Box.h" 28 #include "DeclMutator.h" 29 #include "Lvalue.h" 30 #include "FindFunction.h" 31 #include "PolyMutator.h" 32 #include "ScopedSet.h" 33 #include "ScrubTyVars.h" 34 35 #include "Parser/ParseNode.h" 36 37 #include "SynTree/Attribute.h" 38 #include "SynTree/Constant.h" 39 #include "SynTree/Declaration.h" 40 #include "SynTree/Expression.h" 41 #include "SynTree/Initializer.h" 42 #include "SynTree/Mutator.h" 43 #include "SynTree/Statement.h" 44 #include "SynTree/Type.h" 45 #include "SynTree/TypeSubstitution.h" 46 47 #include "ResolvExpr/TypeEnvironment.h" 48 #include "ResolvExpr/TypeMap.h" 49 #include "ResolvExpr/typeops.h" 50 51 #include "SymTab/Indexer.h" 52 #include "SymTab/Mangler.h" 53 54 #include "Common/ScopedMap.h" 55 #include "Common/SemanticError.h" 56 #include "Common/UniqueName.h" 57 #include "Common/utility.h" 58 59 #include "InitTweak/InitTweak.h" 60 61 #include <ext/functional> // temporary 27 #include "Common/ScopedMap.h" // for ScopedMap, ScopedMap<>::iter... 28 #include "Common/SemanticError.h" // for SemanticError 29 #include "Common/UniqueName.h" // for UniqueName 30 #include "Common/utility.h" // for toString 31 #include "DeclMutator.h" // for DeclMutator 32 #include "FindFunction.h" // for findFunction, findAndReplace... 33 #include "GenPoly/ErasableScopedMap.h" // for ErasableScopedMap<>::const_i... 34 #include "GenPoly/GenPoly.h" // for TyVarMap, isPolyType, mangle... 35 #include "InitTweak/InitTweak.h" // for getFunctionName, isAssignment 36 #include "Lvalue.h" // for generalizedLvalue 37 #include "Parser/LinkageSpec.h" // for C, Spec, Cforall, Intrinsic 38 #include "PolyMutator.h" // for PolyMutator 39 #include "ResolvExpr/TypeEnvironment.h" // for EqvClass 40 #include "ResolvExpr/typeops.h" // for typesCompatible 41 #include "ScopedSet.h" // for ScopedSet, ScopedSet<>::iter... 42 #include "ScrubTyVars.h" // for ScrubTyVars 43 #include "SymTab/Indexer.h" // for Indexer 44 #include "SymTab/Mangler.h" // for Mangler 45 #include "SynTree/Attribute.h" // for Attribute 46 #include "SynTree/Constant.h" // for Constant 47 #include "SynTree/Declaration.h" // for DeclarationWithType, ObjectDecl 48 #include "SynTree/Expression.h" // for ApplicationExpr, UntypedExpr 49 #include "SynTree/Initializer.h" // for SingleInit, Initializer, Lis... 50 #include "SynTree/Label.h" // for Label, noLabels 51 #include "SynTree/Mutator.h" // for maybeMutate, Mutator, mutateAll 52 #include "SynTree/Statement.h" // for ExprStmt, DeclStmt, ReturnStmt 53 #include "SynTree/SynTree.h" // for UniqueId 54 #include "SynTree/Type.h" // for Type, FunctionType, PointerType 55 #include "SynTree/TypeSubstitution.h" // for TypeSubstitution, operator<< 62 56 63 57 namespace GenPoly { -
src/GenPoly/Box.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include <list> 19 #include "SynTree/SynTree.h" 18 #include <list> // for list 19 20 class Declaration; 20 21 21 22 namespace GenPoly { -
src/GenPoly/CopyParams.cc
r84993ff2 r08fc48f 14 14 // 15 15 16 #include <set> 17 #include <map> 18 #include <cassert> 16 #include <cassert> // for assert 17 #include <list> // for list, _List_iterator, _List_const_... 18 #include <map> // for map, _Rb_tree_const_iterator, map<... 19 #include <set> // for set, set<>::const_iterator 20 #include <string> // for string, operator== 21 #include <utility> // for pair 19 22 20 #include "SynTree/Declaration.h" 21 #include "SynTree/Type.h" 22 #include "SynTree/Expression.h" 23 #include "SynTree/Statement.h" 24 #include "SynTree/Visitor.h" 25 #include "Common/UniqueName.h" 23 #include "Common/SemanticError.h" // for SemanticError 24 #include "Common/UniqueName.h" // for UniqueName 25 #include "SynTree/Declaration.h" // for DeclarationWithType, TypeDecl, Fun... 26 #include "SynTree/Expression.h" // for VariableExpr, ApplicationExpr, Add... 27 #include "SynTree/Label.h" // for Label, noLabels 28 #include "SynTree/Statement.h" // for CompoundStmt, DeclStmt, ExprStmt 29 #include "SynTree/SynTree.h" // for UniqueId 30 #include "SynTree/Type.h" // for FunctionType, TypeInstType, Type 31 #include "SynTree/Visitor.h" // for acceptAll, Visitor 26 32 27 33 namespace GenPoly { -
src/GenPoly/DeclMutator.cc
r84993ff2 r08fc48f 16 16 #include "DeclMutator.h" 17 17 18 #include "SynTree/Expression.h" 19 #include "SynTree/Statement.h" 18 #include <memory> // for allocator_traits<>::value_type 19 20 #include "Common/SemanticError.h" // for SemanticError 21 #include "SynTree/Declaration.h" // for Declaration 22 #include "SynTree/Expression.h" // for Expression 23 #include "SynTree/Label.h" // for Label, noLabels 24 #include "SynTree/Statement.h" // for CatchStmt, Statement, CompoundStmt 20 25 21 26 namespace GenPoly { -
src/GenPoly/DeclMutator.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include <list> 19 #include <vector> 18 #include <list> // for list 19 #include <vector> // for vector 20 20 21 #include "SynTree/SynTree.h" 22 #include "SynTree/Declaration.h" 23 #include "SynTree/Mutator.h" 21 #include "SynTree/Mutator.h" // for Mutator 22 #include "SynTree/SynTree.h" // for Visitor Nodes 24 23 25 24 namespace GenPoly { -
src/GenPoly/FindFunction.cc
r84993ff2 r08fc48f 15 15 16 16 #include "FindFunction.h" 17 #include "SynTree/Type.h"18 #include "SynTree/Declaration.h"19 #include "SynTree/Visitor.h"20 17 21 #include "ScrubTyVars.h" 18 #include <utility> // for pair 19 20 #include "Common/SemanticError.h" // for SemanticError 21 #include "GenPoly/ErasableScopedMap.h" // for ErasableScopedMap<>::iterator 22 #include "GenPoly/GenPoly.h" // for TyVarMap 23 #include "ScrubTyVars.h" // for ScrubTyVars 24 #include "SynTree/Declaration.h" // for DeclarationWithType, TypeDecl 25 #include "SynTree/Mutator.h" // for Mutator, mutateAll 26 #include "SynTree/Type.h" // for FunctionType, Type, Type::For... 22 27 23 28 namespace GenPoly { -
src/GenPoly/FindFunction.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include "SynTree/SynTree.h" 19 #include "GenPoly.h" 18 #include <list> // for list 19 20 #include "GenPoly.h" // for TyVarMap 21 22 class FunctionType; 23 class Type; 20 24 21 25 namespace GenPoly { -
src/GenPoly/GenPoly.cc
r84993ff2 r08fc48f 15 15 16 16 #include "GenPoly.h" 17 #include "assert.h" 18 19 #include "SynTree/Expression.h" 20 #include "SynTree/Type.h" 21 #include "ResolvExpr/typeops.h" 22 23 #include <iostream> 24 #include <iterator> 25 #include <list> 26 #include <typeindex> 27 #include <typeinfo> 28 #include <vector> 17 18 #include <cassert> // for assertf, assert 19 #include <iostream> // for operator<<, ostream, basic_os... 20 #include <iterator> // for back_insert_iterator, back_in... 21 #include <list> // for list, _List_iterator, list<>:... 22 #include <typeindex> // for type_index 23 #include <utility> // for pair 24 #include <vector> // for vector 25 26 #include "GenPoly/ErasableScopedMap.h" // for ErasableScopedMap<>::const_it... 27 #include "ResolvExpr/typeops.h" // for flatten 28 #include "SynTree/Constant.h" // for Constant 29 #include "SynTree/Expression.h" // for Expression, TypeExpr, Constan... 30 #include "SynTree/Type.h" // for Type, StructInstType, UnionIn... 31 #include "SynTree/TypeSubstitution.h" // for TypeSubstitution 32 29 33 using namespace std; 30 34 -
src/GenPoly/GenPoly.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include <string> 19 #include <iostream> 20 #include <utility> 18 #include <iostream> // for ostream 19 #include <string> // for string, allocator, operator+, basic... 21 20 22 #include "ErasableScopedMap.h" 23 24 #include "SymTab/Mangler.h" 25 26 #include "SynTree/Declaration.h" 27 #include "SynTree/Type.h" 28 #include "SynTree/TypeSubstitution.h" 21 #include "ErasableScopedMap.h" // for ErasableScopedMap 22 #include "SymTab/Mangler.h" // for Mangler 23 #include "SynTree/Declaration.h" // for TypeDecl::Data, AggregateDecl, Type... 24 #include "SynTree/SynTree.h" // for Visitor Nodes 29 25 30 26 namespace GenPoly { … … 66 62 Type *hasPolyBase( Type *type, const TyVarMap &tyVars, int *levels = 0, const TypeSubstitution *env = 0 ); 67 63 68 /// true iff this type or some base of this type after dereferencing pointers is either polymorphic or a generic type with at least one 64 /// true iff this type or some base of this type after dereferencing pointers is either polymorphic or a generic type with at least one 69 65 /// polymorphic parameter; will look up substitution in env if provided. 70 66 bool includesPolyType( Type *type, const TypeSubstitution *env = 0 ); 71 67 72 /// true iff this type or some base of this type after dereferencing pointers is either polymorphic in tyVars, or a generic type with 68 /// true iff this type or some base of this type after dereferencing pointers is either polymorphic in tyVars, or a generic type with 73 69 /// at least one polymorphic parameter in tyVars; will look up substitution in env if provided. 74 70 bool includesPolyType( Type *type, const TyVarMap &tyVars, const TypeSubstitution *env = 0 ); -
src/GenPoly/InstantiateGeneric.cc
r84993ff2 r08fc48f 14 14 // 15 15 16 #include <cassert> 17 #include <list> 18 #include <unordered_map> 19 #include <utility> 20 #include <vector> 21 16 #include <cassert> // for assertf, assert 17 #include <iterator> // for back_inserter, inserter 18 #include <list> // for list, _List_const_iterator 19 #include <utility> // for move, pair 20 #include <vector> // for vector 21 22 #include "Common/PassVisitor.h" // for PassVisitor, WithDeclsToAdd 23 #include "Common/ScopedMap.h" // for ScopedMap 24 #include "Common/SemanticError.h" // for SemanticError 25 #include "Common/UniqueName.h" // for UniqueName 26 #include "Common/utility.h" // for deleteAll, cloneAll 27 #include "GenPoly.h" // for isPolyType, typesPolyCompatible 22 28 #include "InstantiateGeneric.h" 23 24 #include "GenPoly.h" 25 #include "ScopedSet.h" 26 #include "ScrubTyVars.h" 27 28 #include "Common/PassVisitor.h" 29 #include "Common/ScopedMap.h" 30 #include "Common/UniqueName.h" 31 #include "Common/utility.h" 32 33 #include "ResolvExpr/typeops.h" 34 35 #include "SynTree/Declaration.h" 36 #include "SynTree/Expression.h" 37 #include "SynTree/Type.h" 38 39 40 #include "InitTweak/InitTweak.h" 29 #include "PassVisitor.h" // for mutateAll 30 #include "ScopedSet.h" // for ScopedSet, ScopedSet<>::iterator 31 #include "ScrubTyVars.h" // for ScrubTyVars 32 #include "SynTree/Declaration.h" // for StructDecl, UnionDecl, TypeDecl 33 #include "SynTree/Expression.h" // for TypeExpr, Expression 34 #include "SynTree/Mutator.h" // for mutateAll 35 #include "SynTree/Type.h" // for StructInstType, UnionInstType 36 #include "SynTree/TypeSubstitution.h" // for TypeSubstitution 37 #include "SynTree/Visitor.h" // for acceptAll 41 38 42 39 -
src/GenPoly/InstantiateGeneric.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include "SynTree/SynTree.h" 18 #include <list> // for list 19 20 class Declaration; 19 21 20 22 namespace GenPoly { -
src/GenPoly/Lvalue.cc
r84993ff2 r08fc48f 14 14 // 15 15 16 #include <cassert> 17 16 #include <cassert> // for safe_dynamic_cast 17 #include <string> // for string 18 19 #include "Common/SemanticError.h" // for SemanticError 20 #include "GenPoly.h" // for isPolyType 18 21 #include "Lvalue.h" 19 20 #include "GenPoly.h" 21 22 #include "SynTree/Declaration.h" 23 #include "SynTree/Type.h" 24 #include "SynTree/Expression.h" 25 #include "SynTree/Statement.h" 26 #include "SynTree/Visitor.h" 27 #include "SynTree/Mutator.h" 28 #include "SymTab/Indexer.h" 29 30 #include "ResolvExpr/Resolver.h" 31 #include "ResolvExpr/TypeEnvironment.h" 32 #include "ResolvExpr/typeops.h" 33 #include "ResolvExpr/Unify.h" 34 35 #include "Common/UniqueName.h" 36 #include "Common/utility.h" 22 #include "Parser/LinkageSpec.h" // for Spec, isBuiltin, Intrinsic 23 #include "ResolvExpr/TypeEnvironment.h" // for AssertionSet, OpenVarSet 24 #include "ResolvExpr/Unify.h" // for unify 25 #include "SymTab/Indexer.h" // for Indexer 26 #include "SynTree/Declaration.h" // for Declaration, FunctionDecl 27 #include "SynTree/Expression.h" // for Expression, ConditionalExpr 28 #include "SynTree/Mutator.h" // for mutateAll, Mutator 29 #include "SynTree/Statement.h" // for ReturnStmt, Statement (ptr o... 30 #include "SynTree/Type.h" // for PointerType, Type, FunctionType 31 #include "SynTree/Visitor.h" // for Visitor, acceptAll 37 32 38 33 namespace GenPoly { -
src/GenPoly/Lvalue.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include <list> 18 #include <list> // for list 19 19 20 #include "SynTree/SynTree.h" 20 class Declaration; 21 class Expression; 21 22 22 23 namespace GenPoly { -
src/GenPoly/PolyMutator.cc
r84993ff2 r08fc48f 15 15 16 16 #include "PolyMutator.h" 17 #include "SynTree/Declaration.h" 18 #include "SynTree/Type.h" 19 #include "SynTree/Expression.h" 20 #include "SynTree/Statement.h" 21 #include "SynTree/Mutator.h" 22 #include "SynTree/Initializer.h" 17 18 #include "Common/SemanticError.h" // for SemanticError 19 #include "Common/utility.h" // for ValueGuard 20 #include "SynTree/Declaration.h" // for Declaration, TypeDecl, TypeDecl::Data 21 #include "SynTree/Expression.h" // for Expression, UntypedExpr, StmtExpr ... 22 #include "SynTree/Initializer.h" // for SingleInit, Initializer (ptr only) 23 #include "SynTree/Label.h" // for Label, noLabels 24 #include "SynTree/Mutator.h" // for maybeMutate, mutateAll 25 #include "SynTree/Statement.h" // for CatchStmt, CompoundStmt, ForStmt 26 27 class TypeSubstitution; 23 28 24 29 namespace GenPoly { -
src/GenPoly/PolyMutator.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include <map> 19 #include <string> 20 #include <list> 18 #include <list> // for list 21 19 22 #include "GenPoly.h" 23 24 #include "SynTree/SynTree.h" 25 #include "SynTree/Declaration.h" 26 #include "SynTree/Mutator.h" 20 #include "GenPoly.h" // for TyVarMap 21 #include "SynTree/Mutator.h" // for Mutator 22 #include "SynTree/SynTree.h" // for Visitor Nodes 27 23 28 24 namespace GenPoly { -
src/GenPoly/ScrubTyVars.cc
r84993ff2 r08fc48f 14 14 // 15 15 16 #include <sstream> 17 #include <string> 16 #include <utility> // for pair 18 17 19 #include "GenPoly.h" 18 #include "GenPoly.h" // for mangleType, TyVarMap, alignof... 19 #include "GenPoly/ErasableScopedMap.h" // for ErasableScopedMap<>::const_it... 20 20 #include "ScrubTyVars.h" 21 22 #include "SynTree/ Mutator.h"23 #include "SynTree/ Type.h"24 #include "SynTree/ Expression.h"21 #include "SynTree/Declaration.h" // for TypeDecl, TypeDecl::Data, Typ... 22 #include "SynTree/Expression.h" // for Expression (ptr only), NameExpr 23 #include "SynTree/Mutator.h" // for Mutator 24 #include "SynTree/Type.h" // for PointerType, TypeInstType, Type 25 25 26 26 namespace GenPoly { -
src/GenPoly/ScrubTyVars.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include < string>18 #include <assert.h> // for assert 19 19 20 #include "GenPoly.h" 20 #include "GenPoly.h" // for TyVarMap, isPolyType, isDynType 21 #include "SynTree/Mutator.h" // for Mutator 22 #include "SynTree/Type.h" // for Type (ptr only), PointerType (ptr only) 21 23 22 #include "SynTree/SynTree.h" 23 #include "SynTree/Mutator.h" 24 class AlignofExpr; 25 class Expression; 26 class SizeofExpr; 24 27 25 28 namespace GenPoly { -
src/GenPoly/Specialize.cc
r84993ff2 r08fc48f 14 14 // 15 15 16 #include <cassert> 17 16 #include <cassert> // for assert, assertf 17 #include <iterator> // for back_insert_iterator, back_i... 18 #include <map> // for _Rb_tree_iterator, _Rb_tree_... 19 #include <memory> // for unique_ptr 20 #include <string> // for string 21 #include <tuple> // for get 22 #include <utility> // for pair 23 24 #include "Common/SemanticError.h" // for SemanticError 25 #include "Common/UniqueName.h" // for UniqueName 26 #include "Common/utility.h" // for group_iterate 27 #include "GenPoly.h" // for getFunctionType 28 #include "InitTweak/InitTweak.h" // for isIntrinsicCallExpr 29 #include "Parser/LinkageSpec.h" // for C 30 #include "PolyMutator.h" // for PolyMutator 31 #include "ResolvExpr/FindOpenVars.h" // for findOpenVars 32 #include "ResolvExpr/TypeEnvironment.h" // for OpenVarSet, AssertionSet 18 33 #include "Specialize.h" 19 #include "GenPoly.h" 20 #include "PolyMutator.h" 21 22 #include "Parser/ParseNode.h" 23 24 #include "SynTree/Expression.h" 25 #include "SynTree/Statement.h" 26 #include "SynTree/Type.h" 27 #include "SynTree/Attribute.h" 28 #include "SynTree/TypeSubstitution.h" 29 #include "SynTree/Mutator.h" 30 #include "ResolvExpr/FindOpenVars.h" 31 #include "Common/UniqueName.h" 32 #include "Common/utility.h" 33 #include "InitTweak/InitTweak.h" 34 #include "Tuples/Tuples.h" 34 #include "SynTree/Attribute.h" // for Attribute 35 #include "SynTree/Declaration.h" // for FunctionDecl, DeclarationWit... 36 #include "SynTree/Expression.h" // for ApplicationExpr, Expression 37 #include "SynTree/Label.h" // for Label, noLabels 38 #include "SynTree/Mutator.h" // for mutateAll 39 #include "SynTree/Statement.h" // for CompoundStmt, DeclStmt, Expr... 40 #include "SynTree/Type.h" // for FunctionType, TupleType, Type 41 #include "SynTree/TypeSubstitution.h" // for TypeSubstitution 42 #include "SynTree/Visitor.h" // for Visitor 35 43 36 44 namespace GenPoly { -
src/GenPoly/Specialize.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include <list> 18 #include <list> // for list 19 19 20 #include "SynTree/SynTree.h" 20 class Declaration; 21 21 22 22 namespace GenPoly { -
src/Virtual/ExpandCasts.cc
r84993ff2 r08fc48f 15 15 16 16 #include "ExpandCasts.h" 17 #include "Common/PassVisitor.h" 17 18 #include <cassert> // for assert, assertf 19 #include <iterator> // for back_inserter, inserter 20 #include <map> // for map, _Rb_tree_iterator, map<>::ite... 21 #include <string> // for string, allocator, operator==, ope... 22 #include <utility> // for pair 23 24 #include "Common/PassVisitor.h" // for PassVisitor 25 #include "Common/SemanticError.h" // for SemanticError 26 #include "SynTree/Declaration.h" // for ObjectDecl, StructDecl, FunctionDecl 27 #include "SynTree/Expression.h" // for VirtualCastExpr, CastExpr, Address... 28 #include "SynTree/Mutator.h" // for mutateAll 29 #include "SynTree/Type.h" // for Type, PointerType, StructInstType 30 #include "SynTree/Visitor.h" // for acceptAll 18 31 19 32 namespace Virtual { -
src/Virtual/ExpandCasts.h
r84993ff2 r08fc48f 16 16 #pragma once 17 17 18 #include <list> 19 #include "SynTree/SynTree.h" 18 #include <list> // for list 19 20 class Declaration; 20 21 21 22 namespace Virtual { -
src/main.cc
r84993ff2 r08fc48f 15 15 // 16 16 17 #include <cassert> // for assertf18 17 #include <cxxabi.h> // for __cxa_demangle 19 18 #include <execinfo.h> // for backtrace, backtrace_symbols 20 19 #include <getopt.h> // for no_argument, optind, geto... 21 20 #include <signal.h> // for signal, SIGABRT, SIGSEGV 21 #include <cassert> // for assertf 22 22 #include <cstdio> // for fopen, FILE, fclose, stdin 23 23 #include <cstdlib> // for exit, free, abort, EXIT_F... 24 24 #include <cstring> // for index 25 #include <fstream> // for ofstream26 25 #include <iostream> // for operator<<, basic_ostream 27 26 #include <iterator> // for back_inserter 28 27 #include <list> // for list 29 #include <string> // for operator<<, allocator28 #include <string> // for char_traits, operator<< 30 29 31 30 #include "../config.h" // for CFA_LIBDIR
Note: See TracChangeset
for help on using the changeset viewer.