1 #ifndef UNTYPED_BUILDER_H
2 #define UNTYPED_BUILDER_H
4 namespace UntypedBuilder {
9 template <
class ScopeClass>
10 ScopeClass* buildScope();
13 template <
class ScopeClass>
14 ScopeClass* buildScope(
const std::string & label);
17 SgUntypedType* buildType (SgUntypedType::type_enum type_enum = SgUntypedType::e_unknown, std::string name =
"");
20 SgUntypedArrayType*
buildArrayType (SgUntypedType::type_enum type_enum, SgUntypedExprListExpression* shape,
int rank);
23 SgUntypedInitializedName*
buildInitializedName(
const std::string & name, SgUntypedType* type, SgUntypedExpression* initializer = NULL);
26 SgUntypedInitializedNameList* buildInitializedNameList(SgUntypedInitializedName* initialized_name = NULL);
30 SgUntypedExprListExpression* attr_list,
31 SgUntypedExpression* initializer = NULL);
35 SgUntypedStructureDeclaration* base_type_decl,
36 SgUntypedExprListExpression* attr_list,
37 SgUntypedExpression* initializer = NULL);
41 SgUntypedStructureDefinition* buildStructureDefinition();
46 SgUntypedStructureDefinition* buildStructureDefinition(
const std::string type_name,
bool has_body=
false, SgUntypedScope* scope=NULL);
50 SgUntypedStructureDeclaration* buildStructureDeclaration(
const std::string struct_name);
55 SgUntypedStructureDeclaration* buildStructureDeclaration(
const std::string struct_name,
56 const std::string struct_type_name,
bool has_body=
false);
59 SgUntypedDirectiveDeclaration* buildDirectiveDeclaration(std::string directive_string);
62 ROSE_DLL_API SgUntypedNullExpression* buildUntypedNullExpression();