mirror of
https://github.com/Ed94/gencpp.git
synced 2024-11-10 02:54:53 -08:00
WIP: Fleshing out parsing constructor
This code commit will compile just backing up stuff before I switch the functions to use the lexer instead of manually sifting through the string.
This commit is contained in:
parent
eec93cee78
commit
86cd0e1fb7
4
.vscode/settings.json
vendored
4
.vscode/settings.json
vendored
@ -14,7 +14,9 @@
|
|||||||
"exception": "cpp",
|
"exception": "cpp",
|
||||||
"optional": "cpp",
|
"optional": "cpp",
|
||||||
"tuple": "cpp",
|
"tuple": "cpp",
|
||||||
"xmemory": "cpp"
|
"xmemory": "cpp",
|
||||||
|
"algorithm": "cpp",
|
||||||
|
"limits": "cpp"
|
||||||
},
|
},
|
||||||
"C_Cpp.intelliSenseEngineFallback": "disabled"
|
"C_Cpp.intelliSenseEngineFallback": "disabled"
|
||||||
}
|
}
|
@ -60,6 +60,7 @@ using zpl::EFileError_NONE;
|
|||||||
using zpl::alloc;
|
using zpl::alloc;
|
||||||
using zpl::arena_allocator;
|
using zpl::arena_allocator;
|
||||||
using zpl::arena_init_from_memory;
|
using zpl::arena_init_from_memory;
|
||||||
|
using zpl::arena_init_from_allocator;
|
||||||
using zpl::arena_free;
|
using zpl::arena_free;
|
||||||
using zpl::bprintf;
|
using zpl::bprintf;
|
||||||
using zpl::char_is_alpha;
|
using zpl::char_is_alpha;
|
||||||
@ -79,6 +80,7 @@ using zpl::snprintf_va;
|
|||||||
using zpl::string_appendc;
|
using zpl::string_appendc;
|
||||||
using zpl::string_append_fmt;
|
using zpl::string_append_fmt;
|
||||||
using zpl::string_append_length;
|
using zpl::string_append_length;
|
||||||
|
using zpl::string_make_length;
|
||||||
using zpl::string_length;
|
using zpl::string_length;
|
||||||
using zpl::string_make;
|
using zpl::string_make;
|
||||||
using zpl::strnlen;
|
using zpl::strnlen;
|
||||||
|
916
project/gen.cpp
916
project/gen.cpp
File diff suppressed because it is too large
Load Diff
@ -15,8 +15,8 @@
|
|||||||
|
|
||||||
* Macro or template generation : This library is to avoid those, adding support for them adds unnecessary complexity.
|
* Macro or template generation : This library is to avoid those, adding support for them adds unnecessary complexity.
|
||||||
* Vendor provided dynamic dispatch (virtuals) : Roll your own, this library might roll its own vtable/interface generation helpers in the future.
|
* Vendor provided dynamic dispatch (virtuals) : Roll your own, this library might roll its own vtable/interface generation helpers in the future.
|
||||||
* RTTI : This is kinda covered with the last point, but just wanted to emphasize.
|
* RTTI
|
||||||
* Exceptions : Most fo the
|
* Exceptions
|
||||||
* Execution statement validation : Execution expressions are defined using the untyped string API.
|
* Execution statement validation : Execution expressions are defined using the untyped string API.
|
||||||
|
|
||||||
Keywords in from "Modern C++":
|
Keywords in from "Modern C++":
|
||||||
@ -383,6 +383,9 @@
|
|||||||
#define GEN_DEFINE_LIBRARY_CODE_CONSTANTS
|
#define GEN_DEFINE_LIBRARY_CODE_CONSTANTS
|
||||||
// #define GEN_DONT_USE_FATAL
|
// #define GEN_DONT_USE_FATAL
|
||||||
#define GEN_ENFORCE_READONLY_AST
|
#define GEN_ENFORCE_READONLY_AST
|
||||||
|
|
||||||
|
#define GEN_FEATURE_INCREMENTAL
|
||||||
|
#define GEN_FEATURE_PARSING
|
||||||
#define GEN_FEATURE_EDITOR
|
#define GEN_FEATURE_EDITOR
|
||||||
#define GEN_FEATURE_SCANNER
|
#define GEN_FEATURE_SCANNER
|
||||||
|
|
||||||
@ -439,6 +442,7 @@ namespace gen
|
|||||||
Entry( Variable ) \
|
Entry( Variable ) \
|
||||||
Entry( Typedef ) \
|
Entry( Typedef ) \
|
||||||
Entry( Typename ) \
|
Entry( Typename ) \
|
||||||
|
Entry( Union ) \
|
||||||
Entry( Using ) \
|
Entry( Using ) \
|
||||||
Entry( Using_Namespace )
|
Entry( Using_Namespace )
|
||||||
|
|
||||||
@ -498,7 +502,7 @@ namespace gen
|
|||||||
Entry( Assgin_Divide, /= ) \
|
Entry( Assgin_Divide, /= ) \
|
||||||
Entry( Assgin_Modulo, %= ) \
|
Entry( Assgin_Modulo, %= ) \
|
||||||
Entry( Assgin_BAnd, &= ) \
|
Entry( Assgin_BAnd, &= ) \
|
||||||
Entry( Assgin_BOr, &= ) \
|
Entry( Assgin_BOr, |= ) \
|
||||||
Entry( Assign_BXOr, ^= ) \
|
Entry( Assign_BXOr, ^= ) \
|
||||||
Entry( Assign_LShift, <<= ) \
|
Entry( Assign_LShift, <<= ) \
|
||||||
Entry( Assign_RShift, >>= ) \
|
Entry( Assign_RShift, >>= ) \
|
||||||
@ -535,7 +539,7 @@ namespace gen
|
|||||||
|
|
||||||
enum Type : u32
|
enum Type : u32
|
||||||
{
|
{
|
||||||
# define Entry( Type, Token ) Type,
|
# define Entry( Type_, Token_ ) Type_,
|
||||||
Define_Operators
|
Define_Operators
|
||||||
# undef Entry
|
# undef Entry
|
||||||
Comma,
|
Comma,
|
||||||
@ -552,7 +556,7 @@ namespace gen
|
|||||||
|
|
||||||
local_persist
|
local_persist
|
||||||
char const* lookup[ Num_Ops ] = {
|
char const* lookup[ Num_Ops ] = {
|
||||||
# define Entry( Type, Token ) txt(Token),
|
# define Entry( Type_, Token_ ) txt(Token_),
|
||||||
Define_Operators
|
Define_Operators
|
||||||
# undef Entry
|
# undef Entry
|
||||||
","
|
","
|
||||||
@ -570,15 +574,11 @@ namespace gen
|
|||||||
# if defined(ZPL_SYSTEM_WINDOWS)
|
# if defined(ZPL_SYSTEM_WINDOWS)
|
||||||
# define API_Export_Code __declspec(dllexport)
|
# define API_Export_Code __declspec(dllexport)
|
||||||
# define API_Import_Code __declspec(dllimport)
|
# define API_Import_Code __declspec(dllimport)
|
||||||
|
# define API_Keyword __declspec
|
||||||
# elif defined(ZPL_SYSTEM_MACOS)
|
# elif defined(ZPL_SYSTEM_MACOS)
|
||||||
# define API_Export_Code __attribute__ ((visibility ("default")))
|
# define API_Export_Code __attribute__ ((visibility ("default")))
|
||||||
# define API_Import_Code __attribute__ ((visibility ("default")))
|
# define API_Import_Code __attribute__ ((visibility ("default")))
|
||||||
# endif
|
# define API_Keyword __attribute__
|
||||||
|
|
||||||
# if defined(ZPL_MODULE_THREADING)
|
|
||||||
# define Thread_Local_Code thread_local
|
|
||||||
# else
|
|
||||||
# define Thread_Local_Code "NOT DEFINED"
|
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
# define Define_Specifiers \
|
# define Define_Specifiers \
|
||||||
@ -587,8 +587,8 @@ namespace gen
|
|||||||
Entry( Attribute, "You cannot stringize an attribute this way" ) \
|
Entry( Attribute, "You cannot stringize an attribute this way" ) \
|
||||||
Entry( Alignas, alignas ) \
|
Entry( Alignas, alignas ) \
|
||||||
Entry( Array_Decl, "You cannot stringize an array declare this way" ) \
|
Entry( Array_Decl, "You cannot stringize an array declare this way" ) \
|
||||||
Entry( Const, const ) \
|
|
||||||
Entry( C_Linkage, extern "C" ) \
|
Entry( C_Linkage, extern "C" ) \
|
||||||
|
Entry( Const, const ) \
|
||||||
Entry( Consteval, consteval ) \
|
Entry( Consteval, consteval ) \
|
||||||
Entry( Constexpr, constexpr ) \
|
Entry( Constexpr, constexpr ) \
|
||||||
Entry( Constinit, constinit ) \
|
Entry( Constinit, constinit ) \
|
||||||
@ -605,7 +605,7 @@ namespace gen
|
|||||||
Entry( Register, register ) \
|
Entry( Register, register ) \
|
||||||
Entry( RValue, && ) \
|
Entry( RValue, && ) \
|
||||||
Entry( Static_Member, static ) \
|
Entry( Static_Member, static ) \
|
||||||
Entry( Thread_Local, Thread_Local_Code ) \
|
Entry( Thread_Local, thread_local ) \
|
||||||
Entry( Volatile, volatile )
|
Entry( Volatile, volatile )
|
||||||
|
|
||||||
enum Type : u32
|
enum Type : u32
|
||||||
@ -1100,6 +1100,7 @@ namespace gen
|
|||||||
# pragma endregion Upfront
|
# pragma endregion Upfront
|
||||||
|
|
||||||
# pragma region Incremental
|
# pragma region Incremental
|
||||||
|
# ifdef GEN_FEATURE_INCREMENTAL
|
||||||
Code make_class ( s32 length, char const* name, Code parent = NoCode, Code specifiers = NoCode );
|
Code make_class ( s32 length, char const* name, Code parent = NoCode, Code specifiers = NoCode );
|
||||||
Code make_enum ( s32 length, char const* name, Code type = NoCode, EnumT specifier = EnumRegular );
|
Code make_enum ( s32 length, char const* name, Code type = NoCode, EnumT specifier = EnumRegular );
|
||||||
Code make_function ( s32 length, char const* name, Code params = NoCode, Code ret_type = NoCode, Code specifiers = NoCode );
|
Code make_function ( s32 length, char const* name, Code params = NoCode, Code ret_type = NoCode, Code specifiers = NoCode );
|
||||||
@ -1109,9 +1110,11 @@ namespace gen
|
|||||||
Code make_params ();
|
Code make_params ();
|
||||||
Code make_specifiers ();
|
Code make_specifiers ();
|
||||||
Code make_struct ( s32 length, char const* name, Code parent = NoCode, Code specifiers = NoCode );
|
Code make_struct ( s32 length, char const* name, Code parent = NoCode, Code specifiers = NoCode );
|
||||||
|
# endif
|
||||||
# pragma endregion Incremental
|
# pragma endregion Incremental
|
||||||
|
|
||||||
# pragma region Parsing
|
# pragma region Parsing
|
||||||
|
# ifdef GEN_FEATURE_PARSING
|
||||||
Code parse_class ( s32 length, char const* class_def );
|
Code parse_class ( s32 length, char const* class_def );
|
||||||
Code parse_enum ( s32 length, char const* enum_def );
|
Code parse_enum ( s32 length, char const* enum_def );
|
||||||
Code parse_execution ( s32 length, char const* exec_def );
|
Code parse_execution ( s32 length, char const* exec_def );
|
||||||
@ -1136,6 +1139,7 @@ namespace gen
|
|||||||
s32 parse_variables ( s32 length, char const* vars_def, Code* out_var_codes );
|
s32 parse_variables ( s32 length, char const* vars_def, Code* out_var_codes );
|
||||||
s32 parse_typedefs ( s32 length, char const* typedef_def, Code* out_typedef_codes );
|
s32 parse_typedefs ( s32 length, char const* typedef_def, Code* out_typedef_codes );
|
||||||
s32 parse_usings ( s32 length, char const* usings_def, Code* out_using_codes );
|
s32 parse_usings ( s32 length, char const* usings_def, Code* out_using_codes );
|
||||||
|
# endif
|
||||||
# pragma endregion Parsing
|
# pragma endregion Parsing
|
||||||
|
|
||||||
# pragma region Untyped text
|
# pragma region Untyped text
|
||||||
@ -1364,10 +1368,13 @@ namespace gen
|
|||||||
# define operator_body( ... ) gen::def_operator_body ( macro_num_args( __VA_ARGS__ ), __VA_ARGS__ )
|
# define operator_body( ... ) gen::def_operator_body ( macro_num_args( __VA_ARGS__ ), __VA_ARGS__ )
|
||||||
# define struct_body( ... ) gen::def_struct_body ( macro_num_args( __VA_ARGS__ ), __VA_ARGS__ )
|
# define struct_body( ... ) gen::def_struct_body ( macro_num_args( __VA_ARGS__ ), __VA_ARGS__ )
|
||||||
|
|
||||||
|
# ifdef GEN_FEATURE_INCREMENTAL
|
||||||
// Incremental
|
// Incremental
|
||||||
|
|
||||||
# define make( ConstructType_, Name_, ... ) Code Name_ = make_##ConstructType_( txt_n_len(Name_), __VA_ARGS__ );
|
# define make( ConstructType_, Name_, ... ) Code Name_ = make_##ConstructType_( txt_n_len(Name_), __VA_ARGS__ );
|
||||||
|
# endif
|
||||||
|
|
||||||
|
# ifdef GEN_FEATURE_PARSING
|
||||||
// Parsing
|
// Parsing
|
||||||
|
|
||||||
# define class_code( ... ) gen::parse_class ( txt_n_len( __VA_ARGS__ ))
|
# define class_code( ... ) gen::parse_class ( txt_n_len( __VA_ARGS__ ))
|
||||||
@ -1381,6 +1388,7 @@ namespace gen
|
|||||||
# define type_code( ... ) gen::parse_type ( txt_n_len( __VA_ARGS__ ))
|
# define type_code( ... ) gen::parse_type ( txt_n_len( __VA_ARGS__ ))
|
||||||
# define typedef_code( ... ) gen::parse_typedef ( txt_n_len( __VA_ARGS__ ))
|
# define typedef_code( ... ) gen::parse_typedef ( txt_n_len( __VA_ARGS__ ))
|
||||||
# define using_code( ... ) gen::parse_code ( txt_n_len( __VA_ARGS__ ))
|
# define using_code( ... ) gen::parse_code ( txt_n_len( __VA_ARGS__ ))
|
||||||
|
# endif
|
||||||
|
|
||||||
// Untyped
|
// Untyped
|
||||||
|
|
||||||
|
9
thirdparty/zpl.h
vendored
9
thirdparty/zpl.h
vendored
@ -8367,7 +8367,9 @@ ZPL_END_NAMESPACE
|
|||||||
# endif
|
# endif
|
||||||
|
|
||||||
# if ! defined( thread_local )
|
# if ! defined( thread_local )
|
||||||
# if defined( _MSC_VER ) && _MSC_VER >= 1300
|
# if defined( __cplusplus ) && __cplusplus >= 201103L
|
||||||
|
# define thread_local thread_local
|
||||||
|
# elif defined( _MSC_VER ) && _MSC_VER >= 1300
|
||||||
# define thread_local __declspec( thread )
|
# define thread_local __declspec( thread )
|
||||||
# elif defined( __GNUC__ )
|
# elif defined( __GNUC__ )
|
||||||
# define thread_local __thread
|
# define thread_local __thread
|
||||||
@ -8803,7 +8805,10 @@ ZPL_END_NAMESPACE
|
|||||||
# endif
|
# endif
|
||||||
# else
|
# else
|
||||||
# if ! defined( thread_local )
|
# if ! defined( thread_local )
|
||||||
# define thread_local
|
# if defined( __cplusplus ) && __cplusplus >= 201103L
|
||||||
|
# define thread_local thread_local
|
||||||
|
# else
|
||||||
|
# define thread_local
|
||||||
# endif
|
# endif
|
||||||
# endif
|
# endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user