ROSE  0.11.96.11
untypedBuilder.h
1 #ifndef UNTYPED_BUILDER_H
2 #define UNTYPED_BUILDER_H
3 
4 namespace UntypedBuilder {
5 
6 void set_language(SgFile::languageOption_enum language);
7 
9 template <class ScopeClass>
10 ScopeClass* buildScope();
11 
13 template <class ScopeClass>
14 ScopeClass* buildScope(const std::string & label);
15 
17 SgUntypedType* buildType (SgUntypedType::type_enum type_enum = SgUntypedType::e_unknown, std::string name = "");
18 
20 SgUntypedArrayType* buildArrayType (SgUntypedType::type_enum type_enum, SgUntypedExprListExpression* shape, int rank);
21 
23 SgUntypedInitializedName* buildInitializedName(const std::string & name, SgUntypedType* type, SgUntypedExpression* initializer = NULL);
24 
26 SgUntypedInitializedNameList* buildInitializedNameList(SgUntypedInitializedName* initialized_name = NULL);
27 
29 SgUntypedVariableDeclaration* buildVariableDeclaration(const std::string & name, SgUntypedType* type,
30  SgUntypedExprListExpression* attr_list,
31  SgUntypedExpression* initializer = NULL);
32 
34 SgUntypedVariableDeclaration* buildVariableDeclaration(const std::string & name, SgUntypedType* type,
35  SgUntypedStructureDeclaration* base_type_decl,
36  SgUntypedExprListExpression* attr_list,
37  SgUntypedExpression* initializer = NULL);
38 
41 SgUntypedStructureDefinition* buildStructureDefinition();
42 
46 SgUntypedStructureDefinition* buildStructureDefinition(const std::string type_name, bool has_body=false, SgUntypedScope* scope=NULL);
47 
50 SgUntypedStructureDeclaration* buildStructureDeclaration(const std::string struct_name);
51 
55 SgUntypedStructureDeclaration* buildStructureDeclaration(const std::string struct_name,
56  const std::string struct_type_name, bool has_body=false);
57 
59 SgUntypedDirectiveDeclaration* buildDirectiveDeclaration(std::string directive_string);
60 
62 ROSE_DLL_API SgUntypedNullExpression* buildUntypedNullExpression();
63 
64 } // namespace UntypedBuilder
65 
66 #endif
SageBuilder::buildVariableDeclaration
ROSE_DLL_API SgVariableDeclaration * buildVariableDeclaration(const SgName &name, SgType *type, SgInitializer *varInit=NULL, SgScopeStatement *scope=NULL)
Build a variable declaration, handle symbol table transparently.
SageBuilder::buildInitializedName
ROSE_DLL_API SgInitializedName * buildInitializedName(const SgName &name, SgType *type, SgInitializer *init=NULL)
Initialized names are tricky, their scope vary depending on context, so scope and symbol information ...
SageBuilder::buildArrayType
ROSE_DLL_API SgArrayType * buildArrayType(SgType *base_type=NULL, SgExpression *index=NULL)
Build ArrayType.
SgFile::languageOption_enum
languageOption_enum
Enum type used to specify output language (option used for testing unparsers).
Definition: Cxx_Grammar.h:21206