ROSE  0.11.96.11
sage3.h
1 // DQ (6/25/2011): remove to isolate name qualification error
2 #if 1
3 
4 /*
5  * this includes the forward declarations of all the sage node classes
6  * from the generated files (i.e. gives just the class names.)
7  *
8  */
9 
10 #ifndef SAGE3_CLASSES_H
11 #define SAGE3_CLASSES_H
12 
13 // DQ (1/20/2010): This allows compatability with the older STL list of SgFile pointers.
14 // The newer approach uses a pointer to a SgFileList IR node and this design permits
15 // the use of directory structure support as required for scalable code generation.
16 #define ROSE_USING_OLD_PROJECT_FILE_LIST_SUPPORT 0
17 
18 //#include "sage3basic.h"
19 
20 // DQ (12/9/2004): The name of this file has been changed to be the new location
21 // of many future Sage III AST manipulation functions in the future. A namespace
22 // (SageInterface) is defined in sageInterface.h.
23 #include "sageInterface.h"
24 
25 #include "AstProcessing.h"
26 
27 // Markus Kowarschik: Support for preprocessors declarations and comments
28 #include "attachPreprocessingInfo.h"
29 
30 // Lingxiao's work to add comments from all header files to the AST.
31 #include "attach_all_info.h"
32 
33 // DQ (8/20/2005): Changed name to make sure that we don't use the old
34 // header file (which has been removed).
35 // #include "AstFixes.h"
36 #include "astPostProcessing.h"
37 
38 
39 #ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
40 //Liao, 10/9/2008, support for abstract handles for language constructs
41 #include "abstract_handle.h"
42 #include "roseAdapter.h"
43 #endif
44 
45 //Liao, 2/8/2008. SAGE III node building interface
46 #include "sageBuilder.h"
47 
48 
49 #ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
50 // Liao, 11/14/2008, support for annotation-based array optimization
51 // The headers bring some garbage which cannot be compiled
52 //#include "ArrayAnnot.h"
53 //#include "ArrayInterface.h"
54 //include "ArrayRewrite.h"
55 // Liao, 8/11/2009, support for OpenMP lowering
56 #include "omp_lowering.h"
57 #else
58 // DQ (11/12/2011): This is included in the omp_lowering.h and it is needed in sageInterface.C.
59 // #include "astQuery.h"
60 #include "nodeQuery.h"
61 #endif
62 
63 
64 // JJW 10-23-2007
65 // Add possibility to include Valgrind header for memcheck
66 #if ROSE_USE_VALGRIND
67 #include <valgrind/valgrind.h>
68 #include <valgrind/memcheck.h>
69 #endif
70 
71 #ifndef ROSE_USE_INTERNAL_FRONTEND_DEVELOPMENT
72 // TV (05/23/2011): Add headers for the AstFromString library
73 #include "AstFromString.h"
74 #include "ParserBuilder.hpp"
75 #endif
76 
77 #endif
78 
79 // DQ (6/25/2011): remove to isolate name qualification error
80 #endif
81 
82 
83 
84 
85 
86 
87 
88 
89 
90 
91 
92 
93