2023-08-28 20:46:50 -07:00
|
|
|
#ifdef GEN_INTELLISENSE_DIRECTIVES
|
2023-08-21 17:30:13 -07:00
|
|
|
#pragma once
|
2023-08-21 20:02:20 -07:00
|
|
|
#include "ast_types.hpp"
|
2023-08-28 20:46:50 -07:00
|
|
|
#endif
|
2023-08-21 17:30:13 -07:00
|
|
|
|
2023-07-26 11:21:20 -07:00
|
|
|
#pragma region Gen Interface
|
2024-12-08 13:37:04 -08:00
|
|
|
/*
|
|
|
|
/ \ | \ | \ / \
|
|
|
|
| ▓▓▓▓▓▓\ ______ _______ \▓▓▓▓▓▓_______ _| ▓▓_ ______ ______ | ▓▓▓▓▓▓\ ______ _______ ______
|
|
|
|
| ▓▓ __\▓▓/ \| \ | ▓▓ | \| ▓▓ \ / \ / \| ▓▓_ \▓▓| \ / \/ \
|
|
|
|
| ▓▓| \ ▓▓▓▓▓▓\ ▓▓▓▓▓▓▓\ | ▓▓ | ▓▓▓▓▓▓▓\\▓▓▓▓▓▓ | ▓▓▓▓▓▓\ ▓▓▓▓▓▓\ ▓▓ \ \▓▓▓▓▓▓\ ▓▓▓▓▓▓▓ ▓▓▓▓▓▓\
|
|
|
|
| ▓▓ \▓▓▓▓ ▓▓ ▓▓ ▓▓ | ▓▓ | ▓▓ | ▓▓ | ▓▓ | ▓▓ __| ▓▓ ▓▓ ▓▓ \▓▓ ▓▓▓▓ / ▓▓ ▓▓ | ▓▓ ▓▓
|
|
|
|
| ▓▓__| ▓▓ ▓▓▓▓▓▓▓▓ ▓▓ | ▓▓ _| ▓▓_| ▓▓ | ▓▓ | ▓▓| \ ▓▓▓▓▓▓▓▓ ▓▓ | ▓▓ | ▓▓▓▓▓▓▓ ▓▓_____| ▓▓▓▓▓▓▓▓
|
|
|
|
\▓▓ ▓▓\▓▓ \ ▓▓ | ▓▓ | ▓▓ \ ▓▓ | ▓▓ \▓▓ ▓▓\▓▓ \ ▓▓ | ▓▓ \▓▓ ▓▓\▓▓ \\▓▓ \
|
|
|
|
\▓▓▓▓▓▓ \▓▓▓▓▓▓▓\▓▓ \▓▓ \▓▓▓▓▓▓\▓▓ \▓▓ \▓▓▓▓ \▓▓▓▓▓▓▓\▓▓ \▓▓ \▓▓▓▓▓▓▓ \▓▓▓▓▓▓▓ \▓▓▓▓▓▓▓
|
|
|
|
*/
|
2023-07-26 11:21:20 -07:00
|
|
|
|
2024-12-13 16:16:52 -08:00
|
|
|
#if 0
|
|
|
|
enum LogLevel : u32
|
|
|
|
{
|
|
|
|
Info,
|
|
|
|
Warning,
|
|
|
|
Panic,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct LogEntry
|
|
|
|
{
|
|
|
|
Str msg;
|
|
|
|
u32 line_num;
|
|
|
|
void* data;
|
|
|
|
};
|
|
|
|
|
|
|
|
typedef void LoggerCallback(LogEntry entry);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
// Note(Ed): This is subject to heavily change
|
|
|
|
// with upcoming changes to the library's fallback (default) allocations strategy;
|
|
|
|
// and major changes to lexer/parser context usage.
|
|
|
|
struct Context
|
|
|
|
{
|
|
|
|
// User Configuration
|
|
|
|
|
|
|
|
// Persistent Data Allocation
|
|
|
|
AllocatorInfo Allocator_DyanmicContainers; // By default will use a genral slab allocator (TODO(Ed): Currently does not)
|
|
|
|
AllocatorInfo Allocator_Pool; // By default will use the growing vmem reserve (TODO(Ed): Currently does not)
|
|
|
|
AllocatorInfo Allocator_StrCache; // By default will use a dedicated slab allocator (TODO(Ed): Currently does not)
|
|
|
|
|
|
|
|
// Temporary Allocation
|
|
|
|
AllocatorInfo Allocator_Temp;
|
|
|
|
|
|
|
|
// LoggerCallaback* log_callback; // TODO(Ed): Impl user logger callback as an option.
|
|
|
|
|
2024-12-17 07:03:50 -08:00
|
|
|
// Initalization config
|
2024-12-13 16:16:52 -08:00
|
|
|
u32 Max_CommentLineLength; // Used by def_comment
|
|
|
|
u32 Max_StrCacheLength; // Any cached string longer than this is always allocated again.
|
|
|
|
|
|
|
|
u32 InitSize_BuilderBuffer;
|
|
|
|
u32 InitSize_CodePoolsArray;
|
|
|
|
u32 InitSize_StringArenasArray;
|
|
|
|
|
|
|
|
u32 CodePool_NumBlocks;
|
|
|
|
|
|
|
|
// TODO(Ed): Review these... (No longer needed if using the proper allocation strategy)
|
2024-12-14 18:21:13 -08:00
|
|
|
u32 InitSize_LexerTokens;
|
2024-12-13 16:16:52 -08:00
|
|
|
u32 SizePer_StringArena;
|
|
|
|
|
2024-12-13 17:40:18 -08:00
|
|
|
// TODO(Ed): Symbol Table
|
|
|
|
// Keep track of all resolved symbols (naemspaced identifiers)
|
|
|
|
|
2024-12-13 16:16:52 -08:00
|
|
|
// Parser
|
|
|
|
|
|
|
|
// Used by the lexer to persistently treat all these identifiers as preprocessor defines.
|
|
|
|
// Populate with strings via gen::cache_str.
|
|
|
|
// Functional defines must have format: id( ;at minimum to indicate that the define is only valid with arguments.
|
2024-12-15 07:08:28 -08:00
|
|
|
MacroTable Macros;
|
2024-12-13 16:16:52 -08:00
|
|
|
|
|
|
|
// Backend
|
2024-12-13 17:40:18 -08:00
|
|
|
|
2024-12-13 16:16:52 -08:00
|
|
|
// The fallback allocator is utilized if any fo the three above allocators is not specified by the user.
|
|
|
|
u32 InitSize_Fallback_Allocator_Bucket_Size;
|
|
|
|
Array(Arena) Fallback_AllocatorBuckets;
|
|
|
|
|
2024-12-15 16:54:27 -08:00
|
|
|
StringTable token_fmt_map;
|
|
|
|
|
2024-12-13 16:16:52 -08:00
|
|
|
// Array(Token) LexerTokens;
|
|
|
|
|
|
|
|
Array(Pool) CodePools;
|
|
|
|
Array(Arena) StringArenas;
|
|
|
|
|
2024-12-13 17:40:18 -08:00
|
|
|
StringTable StrCache;
|
|
|
|
|
|
|
|
// TODO(Ed): This needs to be just handled by a parser context
|
|
|
|
Array(Token) Lexer_Tokens;
|
2024-12-13 16:16:52 -08:00
|
|
|
|
2024-12-13 17:40:18 -08:00
|
|
|
// TODO(Ed): Active parse context vs a parse result need to be separated conceptually
|
|
|
|
ParseContext parser;
|
2024-12-15 19:53:32 -08:00
|
|
|
|
|
|
|
// TODO(Ed): Formatting - This will eventually be in a separate struct when in the process of serialization of the builder.
|
|
|
|
s32 temp_serialize_indent;
|
2024-12-13 16:16:52 -08:00
|
|
|
};
|
|
|
|
|
2024-12-13 17:40:18 -08:00
|
|
|
// Initialize the library. There first ctx initialized must exist for lifetime of other contextes that come after as its the one that
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API void init(Context* ctx);
|
2023-07-24 14:45:27 -07:00
|
|
|
|
|
|
|
// Currently manually free's the arenas, code for checking for leaks.
|
|
|
|
// However on Windows at least, it doesn't need to occur as the OS will clean up after the process.
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API void deinit(Context* ctx);
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-15 14:52:31 -08:00
|
|
|
// Retrieves the active context (not usually needed, but here in case...)
|
|
|
|
GEN_API Context* get_context();
|
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
// Clears the allocations, but doesn't free the memoery, then calls init() again.
|
2023-07-24 14:45:27 -07:00
|
|
|
// Ease of use.
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API void reset(Context* ctx);
|
2024-12-13 16:16:52 -08:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API void set_context(Context* ctx);
|
2024-12-13 16:16:52 -08:00
|
|
|
|
2024-12-14 18:21:13 -08:00
|
|
|
// Mostly intended for the parser
|
2024-12-15 07:08:28 -08:00
|
|
|
GEN_API Macro* lookup_macro( Str Name );
|
2024-12-14 11:02:16 -08:00
|
|
|
|
2024-12-13 16:16:52 -08:00
|
|
|
// Alternative way to add a preprocess define entry for the lexer & parser to utilize
|
|
|
|
// if the user doesn't want to use def_define
|
2024-12-14 11:02:16 -08:00
|
|
|
// Macros are tracked by name so if the name already exists the entry will be overwritten.
|
2024-12-15 07:08:28 -08:00
|
|
|
GEN_API void register_macro( Macro macro );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-14 20:10:23 -08:00
|
|
|
// Ease of use batch registration
|
2024-12-15 07:08:28 -08:00
|
|
|
GEN_API void register_macros( s32 num, ... );
|
2024-12-15 19:53:32 -08:00
|
|
|
GEN_API void register_macros_arr( s32 num, Macro* macros );
|
|
|
|
|
|
|
|
#if GEN_COMPILER_CPP
|
|
|
|
forceinline void register_macros( s32 num, Macro* macros ) { return register_macros_arr(num, macros); }
|
|
|
|
#endif
|
2024-12-14 20:10:23 -08:00
|
|
|
|
2023-07-24 14:45:27 -07:00
|
|
|
// Used internally to retrive or make string allocations.
|
|
|
|
// Strings are stored in a series of string arenas of fixed size (SizePer_StringArena)
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API StrCached cache_str( Str str );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
|
|
|
/*
|
|
|
|
This provides a fresh Code AST.
|
|
|
|
The gen interface use this as their method from getting a new AST object from the CodePool.
|
|
|
|
Use this if you want to make your own API for formatting the supported Code Types.
|
|
|
|
*/
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API Code make_code();
|
2023-07-24 14:45:27 -07:00
|
|
|
|
|
|
|
// Set these before calling gen's init() procedure.
|
|
|
|
|
|
|
|
#pragma region Upfront
|
2023-07-26 11:21:20 -07:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeAttributes def_attributes( Str content );
|
|
|
|
GEN_API CodeComment def_comment ( Str content );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-02 21:45:30 -08:00
|
|
|
struct Opts_def_struct {
|
2024-12-09 11:55:02 -08:00
|
|
|
CodeBody body;
|
2024-12-03 12:19:39 -08:00
|
|
|
CodeTypename parent;
|
2024-12-02 21:45:30 -08:00
|
|
|
AccessSpec parent_access;
|
|
|
|
CodeAttributes attributes;
|
2024-12-03 12:19:39 -08:00
|
|
|
CodeTypename* interfaces;
|
2024-12-02 21:45:30 -08:00
|
|
|
s32 num_interfaces;
|
2024-12-09 11:55:02 -08:00
|
|
|
ModuleFlag mflags;
|
2024-12-02 21:45:30 -08:00
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeClass def_class( Str name, Opts_def_struct opts GEN_PARAM_DEFAULT );
|
2024-12-02 21:45:30 -08:00
|
|
|
|
|
|
|
struct Opts_def_constructor {
|
2024-12-11 10:33:35 -08:00
|
|
|
CodeParams params;
|
2024-12-02 21:45:30 -08:00
|
|
|
Code initializer_list;
|
|
|
|
Code body;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeConstructor def_constructor( Opts_def_constructor opts GEN_PARAM_DEFAULT );
|
2023-08-07 00:10:45 -07:00
|
|
|
|
2024-12-10 16:31:50 -08:00
|
|
|
struct Opts_def_define {
|
2024-12-14 11:02:16 -08:00
|
|
|
CodeDefineParams params;
|
2024-12-14 15:49:41 -08:00
|
|
|
Str content;
|
2024-12-14 18:21:13 -08:00
|
|
|
MacroFlags flags;
|
2024-12-14 11:02:16 -08:00
|
|
|
b32 dont_register_to_preprocess_macros;
|
2024-12-10 16:31:50 -08:00
|
|
|
};
|
2024-12-14 11:02:16 -08:00
|
|
|
GEN_API CodeDefine def_define( Str name, MacroType type, Opts_def_define opts GEN_PARAM_DEFAULT );
|
2023-07-29 22:21:04 -07:00
|
|
|
|
2024-12-02 21:45:30 -08:00
|
|
|
struct Opts_def_destructor {
|
|
|
|
Code body;
|
|
|
|
CodeSpecifiers specifiers;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeDestructor def_destructor( Opts_def_destructor opts GEN_PARAM_DEFAULT );
|
2024-12-02 21:45:30 -08:00
|
|
|
|
|
|
|
struct Opts_def_enum {
|
2024-12-09 11:55:02 -08:00
|
|
|
CodeBody body;
|
2024-12-03 12:19:39 -08:00
|
|
|
CodeTypename type;
|
2024-12-02 21:45:30 -08:00
|
|
|
EnumT specifier;
|
|
|
|
CodeAttributes attributes;
|
|
|
|
ModuleFlag mflags;
|
2024-12-11 10:33:35 -08:00
|
|
|
Code type_macro;
|
2024-12-02 21:45:30 -08:00
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeEnum def_enum( Str name, Opts_def_enum opts GEN_PARAM_DEFAULT );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeExec def_execution ( Str content );
|
|
|
|
GEN_API CodeExtern def_extern_link( Str name, CodeBody body );
|
|
|
|
GEN_API CodeFriend def_friend ( Code symbol );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-02 21:45:30 -08:00
|
|
|
struct Opts_def_function {
|
2024-12-11 10:33:35 -08:00
|
|
|
CodeParams params;
|
2024-12-03 12:19:39 -08:00
|
|
|
CodeTypename ret_type;
|
2024-12-09 11:55:02 -08:00
|
|
|
CodeBody body;
|
2024-12-02 21:45:30 -08:00
|
|
|
CodeSpecifiers specs;
|
|
|
|
CodeAttributes attrs;
|
|
|
|
ModuleFlag mflags;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeFn def_function( Str name, Opts_def_function opts GEN_PARAM_DEFAULT );
|
2024-12-02 21:45:30 -08:00
|
|
|
|
|
|
|
struct Opts_def_include { b32 foreign; };
|
|
|
|
struct Opts_def_module { ModuleFlag mflags; };
|
|
|
|
struct Opts_def_namespace { ModuleFlag mflags; };
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeInclude def_include ( Str content, Opts_def_include opts GEN_PARAM_DEFAULT );
|
|
|
|
GEN_API CodeModule def_module ( Str name, Opts_def_module opts GEN_PARAM_DEFAULT );
|
|
|
|
GEN_API CodeNS def_namespace( Str name, CodeBody body, Opts_def_namespace opts GEN_PARAM_DEFAULT );
|
2024-12-02 21:45:30 -08:00
|
|
|
|
|
|
|
struct Opts_def_operator {
|
2024-12-11 10:33:35 -08:00
|
|
|
CodeParams params;
|
2024-12-03 12:19:39 -08:00
|
|
|
CodeTypename ret_type;
|
2024-12-09 11:55:02 -08:00
|
|
|
CodeBody body;
|
2024-12-02 21:45:30 -08:00
|
|
|
CodeSpecifiers specifiers;
|
|
|
|
CodeAttributes attributes;
|
|
|
|
ModuleFlag mflags;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeOperator def_operator( Operator op, Str nspace, Opts_def_operator opts GEN_PARAM_DEFAULT );
|
2024-12-02 21:45:30 -08:00
|
|
|
|
|
|
|
struct Opts_def_operator_cast {
|
2024-12-09 11:55:02 -08:00
|
|
|
CodeBody body;
|
2024-12-02 21:45:30 -08:00
|
|
|
CodeSpecifiers specs;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeOpCast def_operator_cast( CodeTypename type, Opts_def_operator_cast opts GEN_PARAM_DEFAULT );
|
2024-12-02 21:45:30 -08:00
|
|
|
|
|
|
|
struct Opts_def_param { Code value; };
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeParams def_param ( CodeTypename type, Str name, Opts_def_param opts GEN_PARAM_DEFAULT );
|
|
|
|
GEN_API CodePragma def_pragma( Str directive );
|
2023-07-29 22:21:04 -07:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodePreprocessCond def_preprocess_cond( EPreprocessCond type, Str content );
|
2023-07-29 22:21:04 -07:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeSpecifiers def_specifier( Specifier specifier );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeStruct def_struct( Str name, Opts_def_struct opts GEN_PARAM_DEFAULT );
|
2024-12-02 21:45:30 -08:00
|
|
|
|
|
|
|
struct Opts_def_template { ModuleFlag mflags; };
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeTemplate def_template( CodeParams params, Code definition, Opts_def_template opts GEN_PARAM_DEFAULT );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-02 21:45:30 -08:00
|
|
|
struct Opts_def_type {
|
2024-12-08 17:00:16 -08:00
|
|
|
ETypenameTag type_tag;
|
2024-12-02 21:45:30 -08:00
|
|
|
Code arrayexpr;
|
|
|
|
CodeSpecifiers specifiers;
|
|
|
|
CodeAttributes attributes;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeTypename def_type( Str name, Opts_def_type opts GEN_PARAM_DEFAULT );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-02 21:45:30 -08:00
|
|
|
struct Opts_def_typedef {
|
|
|
|
CodeAttributes attributes;
|
|
|
|
ModuleFlag mflags;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeTypedef def_typedef( Str name, Code type, Opts_def_typedef opts GEN_PARAM_DEFAULT );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-02 21:45:30 -08:00
|
|
|
struct Opts_def_union {
|
|
|
|
CodeAttributes attributes;
|
|
|
|
ModuleFlag mflags;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeUnion def_union( Str name, CodeBody body, Opts_def_union opts GEN_PARAM_DEFAULT );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-02 21:45:30 -08:00
|
|
|
struct Opts_def_using {
|
|
|
|
CodeAttributes attributes;
|
|
|
|
ModuleFlag mflags;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeUsing def_using( Str name, CodeTypename type, Opts_def_using opts GEN_PARAM_DEFAULT );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeUsing def_using_namespace( Str name );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-02 21:45:30 -08:00
|
|
|
struct Opts_def_variable
|
|
|
|
{
|
|
|
|
Code value;
|
|
|
|
CodeSpecifiers specifiers;
|
|
|
|
CodeAttributes attributes;
|
|
|
|
ModuleFlag mflags;
|
|
|
|
};
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeVar def_variable( CodeTypename type, Str name, Opts_def_variable opts GEN_PARAM_DEFAULT );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
|
|
|
// Constructs an empty body. Use AST::validate_body() to check if the body is was has valid entries.
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeBody def_body( CodeType type );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
|
|
|
// There are two options for defining a struct body, either varadically provided with the args macro to auto-deduce the arg num,
|
|
|
|
/// or provide as an array of Code objects.
|
|
|
|
|
2024-12-15 19:53:32 -08:00
|
|
|
GEN_API CodeBody def_class_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_class_body_arr ( s32 num, Code* codes );
|
|
|
|
GEN_API CodeDefineParams def_define_params ( s32 num, ... );
|
|
|
|
GEN_API CodeDefineParams def_define_params_arr ( s32 num, CodeDefineParams* codes );
|
|
|
|
GEN_API CodeBody def_enum_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_enum_body_arr ( s32 num, Code* codes );
|
|
|
|
GEN_API CodeBody def_export_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_export_body_arr ( s32 num, Code* codes);
|
|
|
|
GEN_API CodeBody def_extern_link_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_extern_link_body_arr ( s32 num, Code* codes );
|
|
|
|
GEN_API CodeBody def_function_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_function_body_arr ( s32 num, Code* codes );
|
|
|
|
GEN_API CodeBody def_global_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_global_body_arr ( s32 num, Code* codes );
|
|
|
|
GEN_API CodeBody def_namespace_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_namespace_body_arr ( s32 num, Code* codes );
|
|
|
|
GEN_API CodeParams def_params ( s32 num, ... );
|
|
|
|
GEN_API CodeParams def_params_arr ( s32 num, CodeParams* params );
|
|
|
|
GEN_API CodeSpecifiers def_specifiers ( s32 num, ... );
|
|
|
|
GEN_API CodeSpecifiers def_specifiers_arr ( s32 num, Specifier* specs );
|
|
|
|
GEN_API CodeBody def_struct_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_struct_body_arr ( s32 num, Code* codes );
|
|
|
|
GEN_API CodeBody def_union_body ( s32 num, ... );
|
|
|
|
GEN_API CodeBody def_union_body_arr ( s32 num, Code* codes );
|
|
|
|
|
|
|
|
#if GEN_COMPILER_CPP
|
|
|
|
forceinline CodeBody def_class_body ( s32 num, Code* codes ) { return def_class_body_arr(num, codes); }
|
|
|
|
forceinline CodeDefineParams def_define_params ( s32 num, CodeDefineParams* codes ) { return def_define_params_arr(num, codes); }
|
|
|
|
forceinline CodeBody def_enum_body ( s32 num, Code* codes ) { return def_enum_body_arr(num, codes); }
|
|
|
|
forceinline CodeBody def_export_body ( s32 num, Code* codes) { return def_export_body_arr(num, codes); }
|
|
|
|
forceinline CodeBody def_extern_link_body( s32 num, Code* codes ) { return def_extern_link_body_arr(num, codes); }
|
|
|
|
forceinline CodeBody def_function_body ( s32 num, Code* codes ) { return def_function_body_arr(num, codes); }
|
|
|
|
forceinline CodeBody def_global_body ( s32 num, Code* codes ) { return def_global_body_arr(num, codes); }
|
|
|
|
forceinline CodeBody def_namespace_body ( s32 num, Code* codes ) { return def_namespace_body_arr(num, codes); }
|
|
|
|
forceinline CodeParams def_params ( s32 num, CodeParams* params ) { return def_params_arr(num, params); }
|
|
|
|
forceinline CodeSpecifiers def_specifiers ( s32 num, Specifier* specs ) { return def_specifiers_arr(num, specs); }
|
|
|
|
forceinline CodeBody def_struct_body ( s32 num, Code* codes ) { return def_struct_body_arr(num, codes); }
|
|
|
|
forceinline CodeBody def_union_body ( s32 num, Code* codes ) { return def_union_body_arr(num, codes); }
|
|
|
|
#endif
|
2023-07-26 11:21:20 -07:00
|
|
|
|
2023-07-24 14:45:27 -07:00
|
|
|
#pragma endregion Upfront
|
|
|
|
|
|
|
|
#pragma region Parsing
|
2023-07-26 11:21:20 -07:00
|
|
|
|
2023-11-22 11:23:21 -08:00
|
|
|
#if 0
|
2024-12-08 13:37:04 -08:00
|
|
|
struct StackNode
|
|
|
|
{
|
|
|
|
StackNode* Prev;
|
|
|
|
|
|
|
|
Token Start;
|
|
|
|
Token Name; // The name of the AST node (if parsed)
|
2024-12-12 09:55:15 -08:00
|
|
|
Str FailedProc; // The name of the procedure that failed
|
2024-12-08 13:37:04 -08:00
|
|
|
};
|
|
|
|
// Stack nodes are allocated the error's allocator
|
|
|
|
|
|
|
|
struct Error
|
|
|
|
{
|
2024-12-12 09:55:15 -08:00
|
|
|
StrBuilder message;
|
2024-12-08 13:37:04 -08:00
|
|
|
StackNode* context_stack;
|
|
|
|
};
|
2023-11-22 11:23:21 -08:00
|
|
|
|
|
|
|
struct ParseInfo
|
2024-10-27 17:22:36 -07:00
|
|
|
{
|
2023-11-22 12:03:24 -08:00
|
|
|
Arena FileMem;
|
|
|
|
Arena TokMem;
|
|
|
|
Arena CodeMem;
|
|
|
|
|
2024-12-08 13:37:04 -08:00
|
|
|
FileContents FileContent;
|
|
|
|
Array<Token> Tokens;
|
|
|
|
Array<Error> Errors;
|
2023-11-22 11:23:21 -08:00
|
|
|
// Errors are allocated to a dedicated general arena.
|
2024-10-27 17:22:36 -07:00
|
|
|
};
|
2023-11-22 11:23:21 -08:00
|
|
|
|
2024-12-12 09:55:15 -08:00
|
|
|
CodeBody parse_file( Str path );
|
2023-11-22 11:23:21 -08:00
|
|
|
#endif
|
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeClass parse_class ( Str class_def );
|
|
|
|
GEN_API CodeConstructor parse_constructor ( Str constructor_def );
|
2024-12-14 22:27:57 -08:00
|
|
|
GEN_API CodeDefine parse_define ( Str define_def );
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API CodeDestructor parse_destructor ( Str destructor_def );
|
|
|
|
GEN_API CodeEnum parse_enum ( Str enum_def );
|
|
|
|
GEN_API CodeBody parse_export_body ( Str export_def );
|
|
|
|
GEN_API CodeExtern parse_extern_link ( Str exten_link_def );
|
|
|
|
GEN_API CodeFriend parse_friend ( Str friend_def );
|
|
|
|
GEN_API CodeFn parse_function ( Str fn_def );
|
|
|
|
GEN_API CodeBody parse_global_body ( Str body_def );
|
|
|
|
GEN_API CodeNS parse_namespace ( Str namespace_def );
|
|
|
|
GEN_API CodeOperator parse_operator ( Str operator_def );
|
|
|
|
GEN_API CodeOpCast parse_operator_cast( Str operator_def );
|
|
|
|
GEN_API CodeStruct parse_struct ( Str struct_def );
|
|
|
|
GEN_API CodeTemplate parse_template ( Str template_def );
|
|
|
|
GEN_API CodeTypename parse_type ( Str type_def );
|
|
|
|
GEN_API CodeTypedef parse_typedef ( Str typedef_def );
|
|
|
|
GEN_API CodeUnion parse_union ( Str union_def );
|
|
|
|
GEN_API CodeUsing parse_using ( Str using_def );
|
|
|
|
GEN_API CodeVar parse_variable ( Str var_def );
|
2023-07-26 11:21:20 -07:00
|
|
|
|
2023-07-24 14:45:27 -07:00
|
|
|
#pragma endregion Parsing
|
|
|
|
|
|
|
|
#pragma region Untyped text
|
2023-07-26 11:21:20 -07:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API ssize token_fmt_va( char* buf, usize buf_size, s32 num_tokens, va_list va );
|
2023-08-03 08:01:43 -07:00
|
|
|
//! Do not use directly. Use the token_fmt macro instead.
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API Str token_fmt_impl( ssize, ... );
|
2023-07-24 14:45:27 -07:00
|
|
|
|
2024-12-13 19:09:43 -08:00
|
|
|
GEN_API Code untyped_str( Str content);
|
|
|
|
GEN_API Code untyped_fmt ( char const* fmt, ... );
|
|
|
|
GEN_API Code untyped_token_fmt( s32 num_tokens, char const* fmt, ... );
|
2023-07-26 11:21:20 -07:00
|
|
|
|
2023-07-24 14:45:27 -07:00
|
|
|
#pragma endregion Untyped text
|
2023-07-26 11:21:20 -07:00
|
|
|
|
2024-12-07 14:17:02 -08:00
|
|
|
#pragma region Macros
|
|
|
|
|
2024-12-10 10:56:56 -08:00
|
|
|
#ifndef gen_main
|
|
|
|
#define gen_main main
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef name
|
|
|
|
// Convienence for defining any name used with the gen api.
|
|
|
|
// Lets you provide the length and string literal to the functions without the need for the DSL.
|
2024-12-15 16:54:27 -08:00
|
|
|
# if GEN_COMPILER_C
|
|
|
|
# define name( Id_ ) (Str){ stringize(Id_), sizeof(stringize( Id_ )) - 1 }
|
|
|
|
# else
|
|
|
|
# define name( Id_ ) Str { stringize(Id_), sizeof(stringize( Id_ )) - 1 }
|
|
|
|
# endif
|
2024-12-10 10:56:56 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef code
|
|
|
|
// Same as name just used to indicate intention of literal for code instead of names.
|
2024-12-15 16:54:27 -08:00
|
|
|
# if GEN_COMPILER_C
|
|
|
|
# define code( ... ) (Str){ stringize( __VA_ARGS__ ), sizeof(stringize(__VA_ARGS__)) - 1 }
|
|
|
|
# else
|
|
|
|
# define code( ... ) Str { stringize( __VA_ARGS__ ), sizeof(stringize(__VA_ARGS__)) - 1 }
|
|
|
|
# endif
|
2024-12-10 10:56:56 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef args
|
|
|
|
// Provides the number of arguments while passing args inplace.
|
|
|
|
#define args( ... ) num_args( __VA_ARGS__ ), __VA_ARGS__
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef code_str
|
|
|
|
// Just wrappers over common untyped code definition constructions.
|
|
|
|
#define code_str( ... ) GEN_NS untyped_str( code( __VA_ARGS__ ) )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef code_fmt
|
|
|
|
#define code_fmt( ... ) GEN_NS untyped_str( token_fmt( __VA_ARGS__ ) )
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef parse_fmt
|
|
|
|
#define parse_fmt( type, ... ) GEN_NS parse_##type( token_fmt( __VA_ARGS__ ) )
|
|
|
|
#endif
|
|
|
|
|
2024-12-07 14:17:02 -08:00
|
|
|
#ifndef token_fmt
|
2024-12-10 10:56:56 -08:00
|
|
|
/*
|
2024-12-12 09:55:15 -08:00
|
|
|
Takes a format string (char const*) and a list of tokens (Str) and returns a Str of the formatted string.
|
2024-12-10 10:56:56 -08:00
|
|
|
Tokens are provided in '<'identifier'>' format where '<' '>' are just angle brackets (you can change it in token_fmt_va)
|
|
|
|
---------------------------------------------------------
|
|
|
|
Example - A string with:
|
|
|
|
typedef <type> <name> <name>;
|
|
|
|
Will have a token_fmt arguments populated with:
|
2024-12-12 09:55:15 -08:00
|
|
|
"type", str_for_type,
|
|
|
|
"name", str_for_name,
|
2024-12-10 10:56:56 -08:00
|
|
|
and:
|
|
|
|
stringize( typedef <type> <name> <name>; )
|
|
|
|
-----------------------------------------------------------
|
|
|
|
So the full call for this example would be:
|
|
|
|
token_fmt(
|
2024-12-12 09:55:15 -08:00
|
|
|
"type", str_for_type
|
|
|
|
, "name", str_for_name
|
2024-12-10 10:56:56 -08:00
|
|
|
, stringize(
|
|
|
|
typedef <type> <name> <name>
|
|
|
|
));
|
|
|
|
!----------------------------------------------------------
|
|
|
|
! Note: token_fmt_va is whitespace sensitive for the tokens.
|
|
|
|
! This can be alleviated by skipping whitespace between brackets but it was choosen to not have that implementation by default.
|
|
|
|
*/
|
|
|
|
#define token_fmt( ... ) GEN_NS token_fmt_impl( (num_args( __VA_ARGS__ ) + 1) / 2, __VA_ARGS__ )
|
2024-12-07 14:17:02 -08:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#pragma endregion Macros
|
|
|
|
|
2023-07-26 11:21:20 -07:00
|
|
|
#pragma endregion Gen Interface
|