2023-04-10 18:33:06 -07:00
|
|
|
// ReSharper disable CppClangTidyClangDiagnosticSwitchEnum
|
2023-04-01 19:21:46 -07:00
|
|
|
#include "Bloat.hpp"
|
|
|
|
#include "gen.hpp"
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
#ifdef gen_time
|
2023-04-01 19:21:46 -07:00
|
|
|
namespace gen
|
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
ZPL_TABLE_DEFINE( StringTable, str_tbl_, String );
|
2023-04-05 00:03:56 -07:00
|
|
|
ZPL_TABLE_DEFINE( TypeTable, type_tbl_ , Code );
|
|
|
|
|
2023-04-03 00:55:28 -07:00
|
|
|
namespace StaticData
|
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
static Array(Pool) CodePools = nullptr;
|
|
|
|
static Array(Arena) CodeEntriesArenas = nullptr;
|
|
|
|
static Array(Arena) StringArenas = nullptr;
|
2023-04-05 00:03:56 -07:00
|
|
|
|
2023-04-05 23:21:23 -07:00
|
|
|
static StringTable StringMap;
|
|
|
|
static TypeTable TypeMap;
|
2023-04-05 00:03:56 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
static AllocatorInfo Allocator_DataArrays = heap();
|
|
|
|
static AllocatorInfo Allocator_CodePool = heap();
|
|
|
|
static AllocatorInfo Allocator_CodeEntriesArena = heap();
|
|
|
|
static AllocatorInfo Allocator_StringArena = heap();
|
|
|
|
static AllocatorInfo Allocator_StringTable = heap();
|
|
|
|
static AllocatorInfo Allocator_TypeTable = heap();
|
2023-04-03 00:55:28 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
#pragma region Constants
|
2023-04-03 23:04:19 -07:00
|
|
|
# ifdef GEN_DEFINE_LIBRARY_CODE_CONSTANTS
|
2023-04-06 16:19:11 -07:00
|
|
|
Code type_ns(void);
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
Code type_ns(bool);
|
|
|
|
Code type_ns(char);
|
|
|
|
Code type_ns(char_wide);
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
Code type_ns(s8);
|
|
|
|
Code type_ns(s16);
|
|
|
|
Code type_ns(s32);
|
|
|
|
Code type_ns(s64);
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
Code type_ns(u8);
|
|
|
|
Code type_ns(u16);
|
|
|
|
Code type_ns(u32);
|
|
|
|
Code type_ns(u64);
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
Code type_ns(sw);
|
|
|
|
Code type_ns(uw);
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
Code type_ns(f32);
|
|
|
|
Code type_ns(f64);
|
2023-04-03 23:04:19 -07:00
|
|
|
# endif
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
Code access_public;
|
|
|
|
Code access_protected;
|
|
|
|
Code access_private;
|
|
|
|
|
2023-04-05 00:03:56 -07:00
|
|
|
Code spec_constexpr;
|
2023-04-09 21:38:47 -07:00
|
|
|
Code spec_const;
|
2023-04-05 00:03:56 -07:00
|
|
|
Code spec_inline;
|
2023-04-09 21:38:47 -07:00
|
|
|
Code sepc_ptr;
|
|
|
|
Code spec_ref;
|
|
|
|
#pragma endregion Constants
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
# pragma region AST
|
2023-04-10 18:33:06 -07:00
|
|
|
Code Code::Invalid;
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
bool AST::add( AST* other )
|
|
|
|
{
|
|
|
|
switch ( Type )
|
|
|
|
{
|
|
|
|
using namespace ECode;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Invalid:
|
|
|
|
break;
|
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
case Untyped:
|
|
|
|
break;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Access_Public:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Access_Protected:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Access_Private:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Class:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Class_Fwd:
|
2023-04-09 21:38:47 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Class_Body:
|
|
|
|
break;
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
case Enum:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Enum_Fwd:
|
2023-04-09 10:59:39 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Enum_Body:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Enum_Class:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Enum_Class_Fwd:
|
2023-04-09 10:59:39 -07:00
|
|
|
break;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Friend:
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Function:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Function_Body:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Function_Fwd:
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Global_Body:
|
|
|
|
break;
|
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
case Namespace:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Namespace_Body:
|
|
|
|
break;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Operator:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Operator_Fwd:
|
2023-04-09 21:38:47 -07:00
|
|
|
break;
|
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
case Parameters:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Specifiers:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Struct:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Struct_Body:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Variable:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Typedef:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Typename:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Using:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
array_append( Entries, other );
|
|
|
|
|
|
|
|
other->Parent = this;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool AST::check()
|
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
switch ( Type )
|
|
|
|
{
|
|
|
|
using namespace ECode;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Invalid:
|
|
|
|
break;
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
case Untyped:
|
|
|
|
break;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Access_Public:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Access_Protected:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Access_Private:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Enum:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Enum_Fwd:
|
2023-04-09 21:38:47 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Enum_Body:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Friend:
|
2023-04-09 10:59:39 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Function:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Function_Body:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Function_Fwd:
|
2023-04-09 10:59:39 -07:00
|
|
|
break;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Global_Body:
|
|
|
|
break;
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
case Namespace:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Namespace_Body:
|
|
|
|
break;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
case Operator:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Operator_Fwd:
|
2023-04-09 21:38:47 -07:00
|
|
|
break;
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
case Parameters:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Specifiers:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Struct:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Struct_Body:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Variable:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Typedef:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Typename:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Using:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
2023-04-06 16:19:11 -07:00
|
|
|
}
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
AST* AST::duplicate()
|
|
|
|
{
|
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
Code
|
2023-04-10 18:33:06 -07:00
|
|
|
result = make_code();
|
2023-04-07 21:29:09 -07:00
|
|
|
result->Parent = Parent;
|
|
|
|
result->Name = Name;
|
|
|
|
result->Comment = Comment;
|
|
|
|
result->Type = Type;
|
|
|
|
result->Op = Op;
|
|
|
|
result->Readonly = Readonly;
|
|
|
|
|
|
|
|
switch ( Type )
|
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
case Invalid:
|
|
|
|
break;
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
case Untyped:
|
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
2023-04-10 18:33:06 -07:00
|
|
|
case Class_Fwd:
|
|
|
|
case Enum_Fwd:
|
|
|
|
case Function_Fwd:
|
2023-04-07 21:29:09 -07:00
|
|
|
case Specifiers:
|
|
|
|
// Can just be the same, as its a cached string.
|
|
|
|
result->Content = Content;
|
2023-04-10 18:33:06 -07:00
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
// The main purpose of this is to make sure entires in the AST are unique,
|
|
|
|
// So that we can assign the new parent without corrupting the existing AST.
|
|
|
|
case Class:
|
|
|
|
case Class_Body:
|
|
|
|
case Enum:
|
|
|
|
case Enum_Body:
|
|
|
|
case Friend:
|
|
|
|
case Global_Body:
|
|
|
|
case Namespace:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Parameters:
|
|
|
|
case Function:
|
|
|
|
case Function_Body:
|
|
|
|
case Struct:
|
2023-04-10 18:33:06 -07:00
|
|
|
case Struct_Fwd:
|
2023-04-07 21:29:09 -07:00
|
|
|
case Struct_Body:
|
|
|
|
case Variable:
|
|
|
|
case Typedef:
|
|
|
|
case Typename:
|
|
|
|
case Using:
|
2023-04-10 18:33:06 -07:00
|
|
|
s32 index = 0;
|
|
|
|
s32 left = num_entries();
|
2023-04-07 21:29:09 -07:00
|
|
|
while ( left -- )
|
|
|
|
{
|
|
|
|
// This will naturally duplicate the entire chain duplicate all of the ast nodes.
|
|
|
|
// It may not be the most optimal way for memory reasons, however figuring out the heuristic
|
|
|
|
// For when it should reparent all nodes or not is not within the simple scope of this library.
|
|
|
|
result->add_entry( Entries[index]->duplicate() );
|
|
|
|
index++;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
String AST::to_string() const
|
2023-04-06 16:19:11 -07:00
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
String result = string_make( g_allocator, "" );
|
2023-04-06 16:19:11 -07:00
|
|
|
|
|
|
|
if ( Comment )
|
|
|
|
result = string_append_fmt( result, "// %s\n", Comment );
|
|
|
|
|
|
|
|
switch ( Type )
|
|
|
|
{
|
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
case Invalid:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("Attempted to serialize invalid code! - %s", Name);
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Untyped:
|
2023-04-09 10:59:39 -07:00
|
|
|
result = string_append_length( result, Content, string_length( ccast(String, Content)) );
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
|
|
|
result = string_append_length( result, Name, string_length( ccast(String, Name)) ) ;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Class:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Class_Fwd:
|
2023-04-09 10:59:39 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Class_Body:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Enum:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Enum_Fwd:
|
2023-04-09 10:59:39 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Enum_Body:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Enum_Class:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Enum_Class_Fwd:
|
2023-04-09 10:59:39 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Friend:
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Function:
|
2023-04-06 16:19:11 -07:00
|
|
|
{
|
|
|
|
u32 index = 0;
|
|
|
|
u32 left = array_count( Entries );
|
|
|
|
|
|
|
|
if ( left <= 0 )
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure( "Code::to_string - Name: %s Type: %s, expected definition", Name, Type );
|
2023-04-06 16:19:11 -07:00
|
|
|
|
|
|
|
if ( Entries[index]->Type == Specifiers )
|
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
result = string_append_fmt( result, "%s", Entries[index]->to_string() );
|
2023-04-06 16:19:11 -07:00
|
|
|
index++;
|
|
|
|
left--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( left <= 0 )
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure( "Code::to_string - Name: %s Type: %s, expected return type", Name, Type );
|
2023-04-06 16:19:11 -07:00
|
|
|
|
|
|
|
result = string_append_fmt( result, "\n%s %s(", Entries[index]->to_string(), Name );
|
|
|
|
index++;
|
|
|
|
left--;
|
|
|
|
|
|
|
|
if ( left && Entries[index]->Type == Parameters )
|
|
|
|
{
|
|
|
|
result = string_append_fmt( result, "%s", Entries[index]->to_string() );
|
|
|
|
index++;
|
|
|
|
left--;
|
|
|
|
}
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
result = string_append_fmt( result, ")\n{\n%s\n}", Entries[index]->to_string() );
|
2023-04-06 16:19:11 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Function_Fwd:
|
2023-04-06 16:19:11 -07:00
|
|
|
{
|
|
|
|
u32 index = 0;
|
|
|
|
u32 left = array_count( Entries );
|
|
|
|
|
|
|
|
if ( left <= 0 )
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure( "Code::to_string - Name: %s Type: %s, expected definition", Name, Type );
|
2023-04-06 16:19:11 -07:00
|
|
|
|
|
|
|
if ( Entries[index]->Type == Specifiers )
|
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
result = string_append_fmt( result, "%s\n", Entries[index]->to_string() );
|
2023-04-06 16:19:11 -07:00
|
|
|
index++;
|
|
|
|
left--;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( left <= 0 )
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure( "Code::to_string - Name: %s Type: %s, expected return type", Name, Type );
|
2023-04-06 16:19:11 -07:00
|
|
|
|
|
|
|
result = string_append_fmt( result, "\n%s %s(", Entries[index]->to_string(), Name );
|
|
|
|
index++;
|
|
|
|
left--;
|
|
|
|
|
|
|
|
if ( left && Entries[index]->Type == Parameters )
|
|
|
|
{
|
|
|
|
result = string_append_fmt( result, "%s", Entries[index]->to_string() );
|
|
|
|
index++;
|
|
|
|
left--;
|
|
|
|
}
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
result = string_appendc( result, ");\n" );
|
2023-04-06 16:19:11 -07:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Function_Body:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("NOT SUPPORTED YET");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Global_Body:
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Namespace:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("NOT SUPPORTED YET");
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Namespace_Body:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("NOT SUPPORTED YET");
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Operator:
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Operator_Fwd:
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Parameters:
|
|
|
|
{
|
|
|
|
result = string_append_fmt( result, "%s %s", Entries[0]->to_string(), Name );
|
|
|
|
|
|
|
|
s32 index = 1;
|
|
|
|
s32 left = array_count( Entries ) - 1;
|
|
|
|
|
|
|
|
while ( left--, left > 0 )
|
|
|
|
result = string_append_fmt( result, ", %s %s"
|
|
|
|
, Entries[index]->Entries[0]->to_string()
|
|
|
|
, Entries[index]->Name
|
|
|
|
);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Specifiers:
|
|
|
|
result = string_append_fmt( result, "%s", Content );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Struct:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("NOT SUPPORTED YET");
|
|
|
|
break;
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
case Struct_Fwd:
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Struct_Body:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("NOT SUPPORTED YET");
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Variable:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("NOT SUPPORTED YET");
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Typedef:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("NOT SUPPORTED YET");
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
|
|
|
|
case Typename:
|
|
|
|
result = string_append_fmt( result, "%s", Name );
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Using:
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("NOT SUPPORTED YET");
|
2023-04-06 16:19:11 -07:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
# pragma endregion AST
|
|
|
|
|
|
|
|
#pragma region Gen Interface
|
2023-04-03 00:55:28 -07:00
|
|
|
void init()
|
2023-04-01 22:07:44 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
using namespace StaticData;
|
|
|
|
|
|
|
|
// Setup the arrays
|
|
|
|
{
|
|
|
|
if (! array_init_reserve( CodePools, Allocator_DataArrays, InitSize_DataArrays ) )
|
|
|
|
fatal( "gen::init: Failed to initialize the CodePools array" );
|
|
|
|
|
|
|
|
if ( ! array_init_reserve( CodeEntriesArenas, Allocator_DataArrays, InitSize_DataArrays ) )
|
|
|
|
fatal( "gen::init: Failed to initialize the CodeEntriesPools array" );
|
|
|
|
|
|
|
|
if ( ! array_init_reserve( StringArenas, Allocator_DataArrays, InitSize_DataArrays ) )
|
|
|
|
fatal( "gen::init: Failed to initialize the StringArenas array" );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the code pool and code entries arena.
|
|
|
|
{
|
|
|
|
Pool code_pool;
|
|
|
|
pool_init( & code_pool, Allocator_CodePool, CodePool_NumBlocks, sizeof(AST) );
|
|
|
|
|
|
|
|
if ( code_pool.physical_start == nullptr )
|
|
|
|
fatal( "gen::init: Failed to initialize the code pool" );
|
|
|
|
|
|
|
|
array_append( CodePools, code_pool );
|
|
|
|
|
|
|
|
Arena code_entires_arena;
|
|
|
|
arena_init_from_allocator( & code_entires_arena, Allocator_CodeEntriesArena, SizePer_CodeEntriresArena );
|
|
|
|
|
|
|
|
if ( code_entires_arena.physical_start == nullptr )
|
|
|
|
fatal( "gen::init: Failed to initialize the code entries arena" );
|
|
|
|
|
|
|
|
array_append( CodeEntriesArenas, code_entires_arena );
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
Arena string_arena;
|
|
|
|
arena_init_from_allocator( & string_arena, Allocator_StringArena, SizePer_StringArena );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
if ( string_arena.physical_start == nullptr )
|
|
|
|
fatal( "gen::init: Failed to initialize the string arena" );
|
|
|
|
|
|
|
|
array_append( StringArenas, string_arena );
|
|
|
|
}
|
|
|
|
|
|
|
|
// Setup the hash tables
|
|
|
|
{
|
|
|
|
str_tbl_init ( & StringMap, Allocator_StringTable );
|
|
|
|
if ( StringMap.entries == nullptr )
|
|
|
|
fatal( "gen::init: Failed to initialize the StringMap");
|
|
|
|
|
|
|
|
type_tbl_init( & TypeMap, Allocator_TypeTable );
|
|
|
|
if ( TypeMap.entries == nullptr )
|
|
|
|
fatal( "gen::init: Failed to initialize the TypeMap" );
|
|
|
|
}
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
Code::Invalid = make_code();
|
|
|
|
Code::Invalid.lock();
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
# ifdef GEN_DEFINE_LIBRARY_CODE_CONSTANTS
|
2023-04-05 23:21:23 -07:00
|
|
|
Code&
|
2023-04-03 23:04:19 -07:00
|
|
|
t_bool_write = ccast( Code, t_void );
|
2023-04-10 18:33:06 -07:00
|
|
|
t_bool_write = def_type( name(void) );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
# define def_constant_code_type( Type_ ) \
|
2023-04-05 00:03:56 -07:00
|
|
|
Code& \
|
2023-04-10 18:33:06 -07:00
|
|
|
t_##Type_ = def_type( name(Type_) ); \
|
|
|
|
t_##Type_->Readonly = true;
|
|
|
|
|
|
|
|
def_constant_code_type( int );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
def_constant_code_type( bool );
|
|
|
|
def_constant_code_type( char );
|
|
|
|
def_constant_code_type( wchar_t );
|
|
|
|
|
|
|
|
def_constant_code_type( s8 );
|
|
|
|
def_constant_code_type( s16 );
|
|
|
|
def_constant_code_type( s32 );
|
|
|
|
def_constant_code_type( s64 );
|
|
|
|
|
|
|
|
def_constant_code_type( u8 );
|
|
|
|
def_constant_code_type( u16 );
|
|
|
|
def_constant_code_type( u32 );
|
|
|
|
def_constant_code_type( u64 );
|
|
|
|
|
|
|
|
def_constant_code_type( sw );
|
|
|
|
def_constant_code_type( uw );
|
|
|
|
|
|
|
|
def_constant_code_type( f32 );
|
|
|
|
def_constant_code_type( f64 );
|
2023-04-09 21:38:47 -07:00
|
|
|
# undef def_constant_code_type
|
|
|
|
# endif
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
Code&
|
|
|
|
spec_constexpr_write = ccast( Code, spec_constexpr );
|
|
|
|
spec_constexpr_write = def_specifiers( 1, ESpecifier::Constexpr );
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
# define def_constant_spec( Type_, ... ) \
|
2023-04-09 10:59:39 -07:00
|
|
|
Code& \
|
2023-04-05 23:21:23 -07:00
|
|
|
spec_##Type_ = def_specifiers( macro_num_args(__VA_ARGS__), __VA_ARGS__); \
|
|
|
|
spec_##Type_.lock();
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-05 23:21:23 -07:00
|
|
|
def_constant_spec( const, ESpecifier::Const );
|
2023-04-03 23:04:19 -07:00
|
|
|
def_constant_spec( inline, ESpecifier::Inline );
|
2023-04-09 21:38:47 -07:00
|
|
|
# undef def_constant_spec
|
2023-04-01 22:07:44 -07:00
|
|
|
}
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
void clear_code_memory()
|
2023-04-01 19:21:46 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
using namespace StaticData;
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
// Clear the code pools
|
|
|
|
{
|
|
|
|
s32 index = 0;
|
2023-04-10 18:33:06 -07:00
|
|
|
s32 left = array_count( CodePools );
|
|
|
|
while ( left-- )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
Pool* code_pool = & CodePools[index];
|
2023-04-07 21:29:09 -07:00
|
|
|
pool_free( code_pool );
|
2023-04-10 18:33:06 -07:00
|
|
|
index++;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
array_clear( CodePools );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
// Clear the code entries arenas
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
|
|
|
s32 index = 0;
|
2023-04-10 18:33:06 -07:00
|
|
|
s32 left = array_count( CodeEntriesArenas );
|
|
|
|
while ( left-- )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
Arena* code_entries_arena = & CodeEntriesArenas[index];
|
|
|
|
arena_free( code_entries_arena );
|
2023-04-10 18:33:06 -07:00
|
|
|
index++;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
array_clear( CodeEntriesArenas );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
2023-04-09 21:38:47 -07:00
|
|
|
|
|
|
|
type_tbl_clear( & StaticData::TypeMap );
|
2023-04-05 00:03:56 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
inline
|
2023-04-09 10:59:39 -07:00
|
|
|
AllocatorInfo get_string_allocator( s32 str_length )
|
2023-04-05 00:03:56 -07:00
|
|
|
{
|
|
|
|
using namespace StaticData;
|
|
|
|
|
|
|
|
if ( StringArenas->total_allocated + str_length > StringArenas->total_size )
|
2023-04-03 23:04:19 -07:00
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
Arena new_arena;
|
2023-04-07 09:31:50 -07:00
|
|
|
arena_init_from_allocator( & new_arena, Allocator_StringArena, SizePer_StringArena );
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
if ( array_append( StringArenas, new_arena ) )
|
|
|
|
fatal( "gen::get_string_allocator: Failed to allocate a new string arena" );
|
2023-04-01 22:07:44 -07:00
|
|
|
|
2023-04-05 00:03:56 -07:00
|
|
|
return arena_allocator( StringArenas );
|
|
|
|
}
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-05 00:03:56 -07:00
|
|
|
return arena_allocator( StringArenas );
|
2023-04-01 19:21:46 -07:00
|
|
|
}
|
|
|
|
|
2023-04-05 00:03:56 -07:00
|
|
|
// Will either make or retrive a code string.
|
2023-04-09 21:38:47 -07:00
|
|
|
StringCached get_cached_string( char const* cstr, s32 length )
|
2023-04-01 19:21:46 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 hash_length = length > kilobytes(1) ? kilobytes(1) : length;
|
|
|
|
u32 key = crc32( cstr, hash_length );
|
|
|
|
String* result = str_tbl_get( & StaticData::StringMap, key );
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-05 00:03:56 -07:00
|
|
|
if ( result )
|
|
|
|
return * result;
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-07 09:31:50 -07:00
|
|
|
* result = string_make( get_string_allocator( length ), cstr );
|
|
|
|
|
2023-04-05 00:03:56 -07:00
|
|
|
str_tbl_set( & StaticData::StringMap, key, * result );
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-05 00:03:56 -07:00
|
|
|
return * result;
|
|
|
|
}
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-07 09:31:50 -07:00
|
|
|
/*
|
|
|
|
Used internally to retireve a Code object form the CodePool.
|
|
|
|
*/
|
|
|
|
Code make_code()
|
|
|
|
{
|
|
|
|
using namespace StaticData;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
AllocatorInfo allocator = { nullptr, nullptr };
|
|
|
|
|
|
|
|
s32 left = array_count( CodePools );
|
|
|
|
do
|
|
|
|
{
|
|
|
|
if ( CodePools[left].free_list != nullptr )
|
|
|
|
allocator = zpl::pool_allocator( & CodePools[left] );
|
|
|
|
}
|
|
|
|
while ( left--, left );
|
|
|
|
|
|
|
|
if ( allocator.data == nullptr )
|
|
|
|
{
|
|
|
|
Pool code_pool;
|
|
|
|
pool_init( & code_pool, Allocator_CodePool, CodePool_NumBlocks, sizeof(AST) );
|
|
|
|
|
|
|
|
if ( code_pool.physical_start == nullptr )
|
|
|
|
fatal( "gen::make_code: Failed to allocate a new code pool - CodePool allcoator returned nullptr." );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
if ( ! array_append( CodePools, code_pool ) )
|
|
|
|
fatal( "gen::make_code: Failed to allocate a new code pool - CodePools failed to append new pool." );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
allocator = pool_allocator( CodePools );
|
|
|
|
}
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
Code result { rcast( AST*, alloc( allocator, sizeof(AST) )) };
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result->Content = nullptr;
|
|
|
|
result->Parent = nullptr;
|
|
|
|
result->Name = nullptr;
|
|
|
|
result->Comment = nullptr;
|
|
|
|
result->Type = ECode::Invalid;
|
|
|
|
result->Op = EOperator::Invalid;
|
|
|
|
result->Readonly = false;
|
|
|
|
result->DynamicEntries = false;
|
|
|
|
result->StaticIndex = 0;
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
return result;
|
2023-04-07 09:31:50 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
Array(AST*) make_code_entries()
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
using namespace StaticData;
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
AllocatorInfo allocator = { nullptr, nullptr };
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 left = array_count( CodeEntriesArenas );
|
|
|
|
do
|
|
|
|
{
|
2023-04-10 18:33:06 -07:00
|
|
|
if ( arena_size_remaining(CodeEntriesArenas, ZPL_DEFAULT_MEMORY_ALIGNMENT) >= InitSize_CodeEntiresArray )
|
2023-04-09 21:38:47 -07:00
|
|
|
allocator = arena_allocator( & CodeEntriesArenas[left] );
|
|
|
|
}
|
|
|
|
while( left--, left );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
if ( allocator.data == nullptr )
|
|
|
|
{
|
|
|
|
Arena arena;
|
|
|
|
arena_init_from_allocator( & arena, Allocator_CodeEntriesArena, SizePer_CodeEntriresArena );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
if ( arena.physical_start == nullptr )
|
|
|
|
fatal( "gen::make_code: Failed to allocate a new code entries arena - CodeEntriesArena allcoator returned nullptr." );
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
allocator = arena_allocator( CodeEntriesArenas );
|
|
|
|
}
|
|
|
|
|
|
|
|
Array(AST*) entry_array;
|
|
|
|
array_init( entry_array, allocator );
|
|
|
|
|
|
|
|
return entry_array;
|
2023-04-05 00:03:56 -07:00
|
|
|
}
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
enum class OpValidateResult : u32
|
2023-04-05 00:03:56 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
Fail,
|
|
|
|
Global,
|
|
|
|
Member
|
|
|
|
};
|
2023-04-05 00:03:56 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
inline
|
2023-04-11 22:24:43 -07:00
|
|
|
OpValidateResult operator__validate( OperatorT op, Code params_code, Code ret_type, Code specifier )
|
2023-04-05 00:03:56 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
using namespace EOperator;
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( op == Invalid )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: op cannot be invalid");
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
2023-04-09 10:59:39 -07:00
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
# pragma region Helper Macros
|
2023-04-11 19:18:02 -07:00
|
|
|
# define check_params() \
|
|
|
|
if ( ! params_code ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen::def_operator: params is null and operator%s requires it", to_str(op)); \
|
|
|
|
return OpValidateResult::Fail; \
|
|
|
|
} \
|
|
|
|
if ( params_code->Type != ECode::Parameters ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen::def_operator: params is not of Parameters type - %s", params_code->debug_str()); \
|
|
|
|
return OpValidateResult::Fail; \
|
|
|
|
}
|
2023-04-06 16:19:11 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
# define check_param_eq_ret() \
|
|
|
|
if ( ! is_member_symbol && params_code->param_type() != ret_type ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen_def_operator: operator%s requires first parameter to equal return type\n" \
|
|
|
|
"param types: %s\n" \
|
|
|
|
"return type: %s", \
|
|
|
|
to_str(op), \
|
|
|
|
params_code->debug_str(), \
|
|
|
|
ret_type->debug_str() \
|
|
|
|
); \
|
|
|
|
return OpValidateResult::Fail; \
|
|
|
|
}
|
2023-04-19 12:40:23 -07:00
|
|
|
# pragma endregion Helper Macros
|
2023-04-06 16:19:11 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( ! ret_type )
|
2023-04-06 16:19:11 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure("gen::def_operator: ret_type is null but is required by operator%s", to_str(op));
|
2023-04-06 16:19:11 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( ret_type->Type != ECode::Typename )
|
2023-04-06 16:19:11 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure("gen::def_operator: ret_type is not of typename type - %s", ret_type->debug_str());
|
|
|
|
return OpValidateResult::Fail;
|
2023-04-06 16:19:11 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
bool is_member_symbol = false;
|
2023-04-06 16:19:11 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
switch ( op )
|
2023-04-06 16:19:11 -07:00
|
|
|
{
|
2023-04-19 12:40:23 -07:00
|
|
|
# define specs( ... ) macro_num_args( __VA_ARGS__ ), __VA_ARGS__
|
2023-04-11 19:18:02 -07:00
|
|
|
case Assign:
|
|
|
|
check_params();
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( params_code->param_count() > 1 )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: "
|
|
|
|
"operator%s does not support non-member definition (more than one parameter provided) - %s",
|
|
|
|
to_str(op),
|
|
|
|
params_code->debug_str()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
is_member_symbol = true;
|
|
|
|
break;
|
2023-04-06 16:19:11 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
case Assign_Add:
|
|
|
|
case Assign_Subtract:
|
|
|
|
case Assgin_Multiply:
|
|
|
|
case Assgin_Divide:
|
|
|
|
case Assgin_Modulo:
|
|
|
|
case Assgin_BAnd:
|
|
|
|
case Assgin_BOr:
|
|
|
|
case Assign_BXOr:
|
|
|
|
case Assign_LShift:
|
|
|
|
case Assign_RShift:
|
|
|
|
check_params();
|
2023-04-06 16:19:11 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( params_code->param_count() == 1 )
|
|
|
|
is_member_symbol = true;
|
2023-04-06 16:19:11 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
else
|
|
|
|
check_param_eq_ret();
|
2023-04-06 16:19:11 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if (params_code->param_count() > 2 )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: operator%s may not be defined with more than two parametes - param count; %d\n%s"
|
|
|
|
, to_str(op)
|
|
|
|
, params_code->param_count()
|
|
|
|
, params_code->debug_str()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
break;
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
case Increment:
|
|
|
|
case Decrement:
|
|
|
|
// If its not set, it just means its a prefix member op.
|
|
|
|
if ( params_code )
|
|
|
|
{
|
|
|
|
if ( params_code->Type != ECode::Parameters )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: operator%s params code provided is not of Parameters type - %s"
|
|
|
|
, to_str(op)
|
|
|
|
, params_code->debug_str()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
switch ( params_code->param_count() )
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
if ( params_code->param_type() == type_ns(int) )
|
|
|
|
is_member_symbol = true;
|
2023-04-06 16:19:11 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
else
|
|
|
|
check_param_eq_ret();
|
|
|
|
break;
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
case 2:
|
|
|
|
check_param_eq_ret();
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( params_code->get_param(1) != type_ns(int) )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: "
|
|
|
|
"operator%s requires second parameter of non-member definition to be int for post-decrement",
|
|
|
|
to_str(op)
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
break;
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
default:
|
|
|
|
log_failure("gen::def_operator: operator%s recieved unexpected number of paramters recived %d instead of 0-2"
|
|
|
|
, to_str(op)
|
|
|
|
, params_code->param_count()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
case Unary_Plus:
|
|
|
|
case Unary_Minus:
|
|
|
|
case BNot:
|
|
|
|
if ( ! params_code )
|
|
|
|
is_member_symbol = true;
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( params_code->Type != ECode::Parameters )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: params is not of Parameters type - %s", params_code->debug_str());
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( params_code->param_type() == ret_type )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: "
|
|
|
|
"operator%s is non-member symbol yet first paramter does not equal return type\n"
|
|
|
|
"param type: %s\n"
|
|
|
|
"return type: %s\n"
|
|
|
|
, params_code->debug_str()
|
|
|
|
, ret_type->debug_str()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( params_code->param_count() > 1 )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: operator%s may not have more than one parameter - param count: %d"
|
|
|
|
, to_str(op)
|
|
|
|
, params_code->param_count()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Add:
|
|
|
|
case Subtract:
|
|
|
|
case Multiply:
|
|
|
|
case Divide:
|
|
|
|
case Modulo:
|
|
|
|
case BAnd:
|
|
|
|
case BOr:
|
|
|
|
case BXOr:
|
|
|
|
case LShift:
|
|
|
|
case RShift:
|
|
|
|
check_params();
|
|
|
|
|
|
|
|
switch ( params_code->param_count() )
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
is_member_symbol = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
if ( params_code->param_type() != ret_type )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: "
|
|
|
|
"operator%s is non-member symbol yet first paramter does not equal return type\n"
|
|
|
|
"param type: %s\n"
|
|
|
|
"return type: %s\n"
|
|
|
|
, params_code->debug_str()
|
|
|
|
, ret_type->debug_str()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
log_failure("gen::def_operator: operator%s recieved unexpected number of paramters recived %d instead of 0-2"
|
|
|
|
, to_str(op)
|
|
|
|
, params_code->param_count()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LNot:
|
|
|
|
if ( ! params_code )
|
|
|
|
is_member_symbol = true;
|
|
|
|
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( params_code->Type != ECode::Parameters )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: params is not of Parameters type - %s", params_code->debug_str());
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( params_code->param_count() != 1 )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: operator%s recieved unexpected number of paramters recived %d instead of 0-1"
|
|
|
|
, to_str(op)
|
|
|
|
, params_code->param_count()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ret_type != type_ns(bool) )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: operator%s return type must be of type bool - %s"
|
|
|
|
, to_str(op)
|
|
|
|
, ret_type->debug_str()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case LAnd:
|
|
|
|
case LOr:
|
|
|
|
case Equals:
|
|
|
|
case NotEquals:
|
|
|
|
case Lesser:
|
|
|
|
case Greater:
|
|
|
|
case LesserEqual:
|
|
|
|
case GreaterEqual:
|
|
|
|
check_params();
|
|
|
|
|
|
|
|
switch ( params_code->param_count() )
|
|
|
|
{
|
|
|
|
case 1:
|
|
|
|
is_member_symbol = true;
|
|
|
|
break;
|
|
|
|
|
|
|
|
case 2:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
log_failure("gen::def_operator: operator%s recieved unexpected number of paramters recived %d instead of 1-2"
|
|
|
|
, to_str(op)
|
|
|
|
, params_code->param_count()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Indirection:
|
|
|
|
case AddressOf:
|
|
|
|
case MemberOfPointer:
|
|
|
|
if ( params_code && params_code->param_count() > 1)
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: operator%s recieved unexpected number of paramters recived %d instead of 0-1"
|
|
|
|
, to_str(op)
|
|
|
|
, params_code->param_count()
|
|
|
|
);
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
is_member_symbol = true;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case PtrToMemOfPtr:
|
|
|
|
if ( params_code )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_operator: operator%s expects no paramters - %s", to_str(op), params_code->debug_str());
|
|
|
|
return OpValidateResult::Fail;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case Subscript:
|
|
|
|
case FunctionCall:
|
|
|
|
case Comma:
|
|
|
|
check_params();
|
|
|
|
break;
|
2023-04-19 12:40:23 -07:00
|
|
|
# undef specs
|
2023-04-07 09:31:50 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
# undef check_params
|
|
|
|
# undef check_ret_type
|
|
|
|
# undef check_param_eq_ret
|
|
|
|
|
|
|
|
return is_member_symbol ? OpValidateResult::Member : OpValidateResult::Global;
|
2023-04-06 16:19:11 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
void set_allocator_data_arrays( AllocatorInfo allocator )
|
2023-04-09 10:59:39 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
StaticData::Allocator_DataArrays = allocator;
|
|
|
|
}
|
2023-04-09 10:59:39 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
void set_allocator_code_pool( AllocatorInfo allocator )
|
|
|
|
{
|
|
|
|
StaticData::Allocator_CodePool = allocator;
|
|
|
|
}
|
2023-04-09 10:59:39 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
void set_allocator_code_entries_arena( AllocatorInfo allocator )
|
|
|
|
{
|
|
|
|
StaticData::Allocator_CodeEntriesArena = allocator;
|
|
|
|
}
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
void set_allocator_string_arena( AllocatorInfo allocator )
|
|
|
|
{
|
|
|
|
StaticData::Allocator_StringArena = allocator;
|
2023-04-09 21:38:47 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
void set_allocator_string_table( AllocatorInfo allocator )
|
2023-04-09 21:38:47 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
StaticData::Allocator_StringArena = allocator;
|
|
|
|
}
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
# pragma region Helper Functions
|
|
|
|
// This snippet is used in nearly all the functions.
|
2023-04-11 22:24:43 -07:00
|
|
|
# define name_check( Context_, Length_, Name_ ) \
|
|
|
|
{ \
|
|
|
|
if ( Length_ <= 0 ) \
|
|
|
|
{ \
|
|
|
|
log_failure( "gen::" txt(Context_) ": Invalid name length provided - %d", length ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if ( Name_ == nullptr ) \
|
|
|
|
{ \
|
|
|
|
log_failure( "gen::" txt(Context_) ": name is null" ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
2023-04-11 19:18:02 -07:00
|
|
|
}
|
2023-04-09 10:59:39 -07:00
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
# define null_check( Context_, Code_ ) \
|
|
|
|
if ( ! Code_ ) \
|
|
|
|
{ \
|
|
|
|
log_failure( "gen::" txt(Context_) ": " txt(Code_) " provided is null" ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
}
|
2023-04-09 10:59:39 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
# define null_or_invalid_check( Context_, Code_ ) \
|
|
|
|
{ \
|
|
|
|
if ( ! Code_ ) \
|
|
|
|
{ \
|
2023-04-11 22:24:43 -07:00
|
|
|
log_failure( "gen::" txt(Context_) ": " txt(Code_) " provided is null" ); \
|
2023-04-11 19:18:02 -07:00
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if ( Code_->is_invalid() ) \
|
|
|
|
{ \
|
2023-04-11 22:24:43 -07:00
|
|
|
log_failure("gen::" txt(Context_) ": " txt(Code_) " provided is invalid" ); \
|
2023-04-11 19:18:02 -07:00
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
|
|
|
}
|
2023-04-09 10:59:39 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
# define not_implemented( Context_ ) \
|
|
|
|
log_failure( "gen::%s: This function is not implemented" ); \
|
|
|
|
return Code::Invalid;
|
|
|
|
# pragma endregion Helper Functions
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
# pragma region Upfront Constructors
|
|
|
|
/*
|
|
|
|
The implementaiton of the upfront constructors involves bascially doing three things:
|
|
|
|
* Validate the arguments given to construct the intended type of AST is valid.
|
|
|
|
* Construct said AST type.
|
|
|
|
* Lock the AST (set to readonly) and return the valid object.
|
2023-04-09 10:59:39 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
If any of the validation fails, it triggers a call to log_failure with as much info the give the user so that they can hopefully
|
|
|
|
identify the issue without having to debug too much (at least they can debug though...)
|
2023-04-09 10:59:39 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
The largest of the functions is related to operator overload definitions.
|
|
|
|
I decided to validate a good protion of their form and thus the argument processing for is quite a bit.
|
|
|
|
*/
|
|
|
|
|
|
|
|
Code def_class( s32 length, char const* name, Code parent, Code specifiers, Code body )
|
2023-04-01 19:21:46 -07:00
|
|
|
{
|
2023-04-03 00:55:28 -07:00
|
|
|
using namespace ECode;
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
name_check( def_class, length, name );
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( parent && parent->Type != Class || parent->Type != Struct )
|
2023-04-03 23:04:19 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure( "gen::def_class: parent provided is not type 'Class' or 'Struct' - Type: %s", parent->debug_str() );
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
2023-04-03 23:04:19 -07:00
|
|
|
}
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( specifiers && specifiers->Type != Specifiers )
|
2023-04-03 00:55:28 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure( "gen::def_class: specifiers was not a 'Specifiers' type - Type: %s", specifiers->debug_str() );
|
2023-04-07 09:31:50 -07:00
|
|
|
return Code::Invalid;
|
2023-04-03 00:55:28 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Name = get_cached_string( name, length );
|
|
|
|
|
|
|
|
if ( body )
|
2023-04-07 09:31:50 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
switch ( body->Type )
|
|
|
|
{
|
|
|
|
case Class_Body:
|
|
|
|
case Untyped:
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
log_failure("gen::def_class: body must be either of Class_Body or Untyped type - %s", body->debug_str());
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
result->Type = Class;
|
|
|
|
result->add_entry( body );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result->Type = Class_Fwd;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( parent )
|
|
|
|
result->add_entry( parent );
|
|
|
|
|
|
|
|
if ( specifiers )
|
|
|
|
result->add_entry( specifiers );
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_enum( s32 length, char const* name, Code type, EnumT specifier, Code body )
|
|
|
|
{
|
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
name_check( def_enum, length, name );
|
|
|
|
|
|
|
|
if ( type && type->Type != Typename )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_enum: enum underlying type provided was not of type Typename: %s", type->debug_str() );
|
2023-04-07 09:31:50 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-05 23:21:23 -07:00
|
|
|
|
|
|
|
Code
|
2023-04-10 18:33:06 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Name = get_cached_string( name, length );
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( type )
|
|
|
|
{
|
|
|
|
result->add_entry( type );
|
|
|
|
}
|
|
|
|
|
2023-04-07 09:31:50 -07:00
|
|
|
if ( body )
|
|
|
|
{
|
|
|
|
switch ( body->Type )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
case Enum_Body:
|
2023-04-07 09:31:50 -07:00
|
|
|
case Untyped:
|
2023-04-11 19:18:02 -07:00
|
|
|
break;
|
2023-04-07 09:31:50 -07:00
|
|
|
|
|
|
|
default:
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure( "gen::def_enum: body must be of Enum_Body or Untyped type %s", body->debug_str());
|
2023-04-07 09:31:50 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result->Type = specifier == EnumClass ?
|
|
|
|
Enum_Class : Enum;
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result->add_entry( body );
|
2023-04-07 09:31:50 -07:00
|
|
|
}
|
2023-04-11 19:18:02 -07:00
|
|
|
else if ( specifier == EnumClass )
|
2023-04-07 09:31:50 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
result->Type = specifier == EnumClass ?
|
|
|
|
Enum_Class_Fwd : Enum_Fwd;
|
2023-04-07 09:31:50 -07:00
|
|
|
}
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
result.lock();
|
2023-04-01 19:21:46 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_execution( Code untyped_code )
|
2023-04-07 09:31:50 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
null_check( def_execution, untyped_code );
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( untyped_code->Type != ECode::Untyped )
|
2023-04-07 09:31:50 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure( "gen::def_execution: untyped_code is not of untyped type - %s", untyped_code->debug_str() );
|
2023-04-07 09:31:50 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = ECode::Execution;
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
2023-04-07 09:31:50 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_friend( Code declaration )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
using namespace ECode;
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
null_check( def_friend, declaration );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
switch ( declaration->Type )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
case Class_Fwd:
|
|
|
|
case Function_Fwd:
|
|
|
|
case Operator_Fwd:
|
|
|
|
case Struct_Fwd:
|
2023-04-10 18:33:06 -07:00
|
|
|
break;
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
default:
|
|
|
|
// Technically friends can have a function body. I will not support it so if you want that add it yourself. - Ed.
|
|
|
|
log_failure("gen::def_friend: declaration cannot be used with friend, must be a forward declare - %s", declaration->debug_str());
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Friend;
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result->add_entry( declaration );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_function( s32 length, char const* name
|
|
|
|
, Code specifiers
|
|
|
|
, Code params
|
|
|
|
, Code ret_type
|
|
|
|
, Code body
|
|
|
|
)
|
|
|
|
{
|
|
|
|
using namespace ECode;
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
name_check( def_function, length, name );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( specifiers && specifiers->Type != Specifiers )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_function: specifiers was not a `Specifiers` type %s", specifiers->debug_str() );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( params && params->Type != Parameters )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_function: params was not a `Parameters` type %s", params->debug_str() );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( ret_type == nullptr || ret_type->Type != Typename )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_function: ret_type was not a Typename %s", ret_type->debug_str() );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Name = get_cached_string( name, length );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( body )
|
|
|
|
{
|
|
|
|
switch ( body->Type )
|
|
|
|
{
|
|
|
|
case Function_Body:
|
|
|
|
case Untyped:
|
|
|
|
break;
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
default:
|
2023-04-10 18:33:06 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure("gen::def_function: body must be either of Function_Body or Untyped type. %s", body->debug_str());
|
2023-04-10 18:33:06 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-11 19:18:02 -07:00
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result->Type = Function;
|
|
|
|
result->add_entry( body );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result->Type = Function_Fwd;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( specifiers )
|
|
|
|
result->add_entry( specifiers );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( ret_type )
|
|
|
|
{
|
|
|
|
result->add_entry( ret_type );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result->add_entry( type_ns(void) );
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( params )
|
|
|
|
result->add_entry( params );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_namespace( s32 length, char const* name, Code body )
|
|
|
|
{
|
|
|
|
using namespace ECode;
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
name_check( def_namespace, length, name );
|
|
|
|
null_check( def_namespace, body );
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Namespace;
|
|
|
|
result->Name = get_cached_string( name, length );
|
|
|
|
result->Entries = make_code_entries();
|
|
|
|
|
|
|
|
if ( body->Type != Namespace_Body || body->Type != Untyped )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_namespace: body is not of namespace or untyped type %s", body->debug_str());
|
|
|
|
return Code::Invalid;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result->add_entry( body );
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_operator( OperatorT op, Code params_code, Code ret_type, Code specifiers, Code body )
|
|
|
|
{
|
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
if ( body && body->Type != Function_Body )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_operator: Body was provided but its not of function body type - %s", body->debug_str() );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-11 22:24:43 -07:00
|
|
|
OpValidateResult check_result = operator__validate( op, params_code, ret_type, specifiers );
|
2023-04-11 19:18:02 -07:00
|
|
|
|
|
|
|
if ( check_result == OpValidateResult::Fail )
|
|
|
|
{
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
char const* name = str_fmt_buf( "operator%s", to_str(op) );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
Code
|
2023-04-11 19:18:02 -07:00
|
|
|
result = make_code();
|
2023-04-19 12:40:23 -07:00
|
|
|
result->Name = get_cached_string( name, str_len(name, MaxNameLength) );
|
2023-04-09 21:38:47 -07:00
|
|
|
|
|
|
|
if ( body )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
result->Type = check_result == OpValidateResult::Global ?
|
|
|
|
Operator : Operator_Member;
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result->add_entry( body );
|
2023-04-09 21:38:47 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
result->Type = check_result == OpValidateResult::Global ?
|
|
|
|
Operator_Fwd : Operator_Member_Fwd;
|
2023-04-09 21:38:47 -07:00
|
|
|
}
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
if (params_code)
|
|
|
|
result->add_entry( params_code );
|
|
|
|
|
|
|
|
result->add_entry( ret_type );
|
|
|
|
|
|
|
|
if ( specifiers )
|
|
|
|
result->add_entry( specifiers );
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
result.lock();
|
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code def_param( Code type, s32 length, char const* name )
|
2023-04-07 09:31:50 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
name_check( def_param, length, name );
|
|
|
|
null_check( def_param, type );
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
if ( type->Type != Typename )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_param: type is not a typename - %s", type->debug_str() );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code
|
2023-04-11 19:18:02 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Type = Parameters;
|
|
|
|
result->Name = get_cached_string( name, length );
|
2023-04-09 21:38:47 -07:00
|
|
|
|
|
|
|
result->add_entry( type );
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
2023-04-07 09:31:50 -07:00
|
|
|
}
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code def_struct( u32 length, char const* name, Code body, Code parent, Code specifiers )
|
2023-04-02 09:35:14 -07:00
|
|
|
{
|
2023-04-03 00:55:28 -07:00
|
|
|
using namespace ECode;
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
name_check( def_struct, length, name );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
if ( specifiers && specifiers->Type != Specifiers )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_struct: specifiers was not a `Specifiers` type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( parent && parent->Type != Struct )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_struct: parent was not a `Struct` type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( body && body->Type != Struct_Body )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_struct: body was not a Struct_Body type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code
|
2023-04-11 19:18:02 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Name = get_cached_string( name, length );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
if ( body )
|
2023-04-09 21:38:47 -07:00
|
|
|
{
|
|
|
|
result->Type = Struct;
|
2023-04-07 21:29:09 -07:00
|
|
|
result->add_entry( body );
|
2023-04-09 21:38:47 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-04-10 18:33:06 -07:00
|
|
|
result->Type = Struct_Fwd;
|
2023-04-09 21:38:47 -07:00
|
|
|
}
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
if ( parent )
|
|
|
|
result->add_entry( parent );
|
|
|
|
|
|
|
|
if ( specifiers )
|
|
|
|
result->add_entry( specifiers );
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
2023-04-07 21:29:09 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_variable( Code type, u32 length, char const* name, Code value, Code specifiers )
|
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
name_check( def_variable, length, name );
|
2023-04-09 21:38:47 -07:00
|
|
|
null_check( def_variable, type );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
if ( specifiers && specifiers->Type != ECode::Specifiers )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_variable: specifiers was not a `Specifiers` type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( type->Type != ECode::Typename )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_variable: type was not a Typename" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( value && value->Type != ECode::Untyped )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_variable: value was not a `Untyped` type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code
|
2023-04-11 19:18:02 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Name = get_cached_string( name, length );
|
|
|
|
result->Type = ECode::Variable;
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
if ( specifiers )
|
|
|
|
result->add_entry( specifiers );
|
|
|
|
|
|
|
|
result->add_entry( type );
|
|
|
|
|
|
|
|
if ( value )
|
|
|
|
result->add_entry( value );
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
2023-04-07 21:29:09 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
Code def_typedef( u32 length, char const* name, Code type )
|
|
|
|
{
|
|
|
|
name_check( def_typedef, length, name );
|
|
|
|
null_check( def_typedef, type );
|
|
|
|
|
|
|
|
if ( type->Type != ECode::Typename )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_typedef: type was not a Typename" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Registering the type.
|
|
|
|
Code registered_type = def_type( length, name );
|
|
|
|
|
|
|
|
if ( ! registered_type )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_typedef: failed to register type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Name = get_cached_string( name, length );
|
|
|
|
result->Type = ECode::Typedef;
|
|
|
|
|
|
|
|
result->add_entry( type );
|
|
|
|
result.lock();
|
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code def_type( u32 length, char const* name, Code specifiers )
|
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
name_check( def_type, length, name );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
if ( specifiers && specifiers->Type != ECode::Specifiers )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_type: specifiers is not of specifiers type - %s", specifiers->debug_str() );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
2023-04-09 21:38:47 -07:00
|
|
|
result->Name = get_cached_string( name, length );
|
2023-04-07 21:29:09 -07:00
|
|
|
result->Type = ECode::Typename;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
if ( specifiers )
|
|
|
|
result->add_entry( specifiers );
|
|
|
|
|
|
|
|
result.lock();
|
2023-04-07 21:29:09 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_using( u32 length, char const* name, Code type, UsingT specifier )
|
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
name_check( def_using, length, name );
|
2023-04-09 21:38:47 -07:00
|
|
|
null_check( def_using, type );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
Code register_type = def_type( length, name );
|
|
|
|
|
|
|
|
if ( ! register_type )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_using: failed to register type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
2023-04-09 21:38:47 -07:00
|
|
|
result->Name = get_cached_string( name, length );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
switch ( specifier )
|
|
|
|
{
|
|
|
|
case UsingRegular:
|
2023-04-10 18:33:06 -07:00
|
|
|
result->Type = ECode::Using;
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result->add_entry( type );
|
|
|
|
break;
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
case UsingNamespace:
|
|
|
|
result->Type = ECode::Using_Namespace;
|
|
|
|
break;
|
2023-04-05 23:21:23 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
result.lock();
|
2023-04-03 00:55:28 -07:00
|
|
|
return result;
|
2023-04-02 09:35:14 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
/*
|
|
|
|
Body related functions typically follow the same implementation pattern.
|
|
|
|
So I opted to use inline helper macros to get the implementaiton done.
|
|
|
|
|
|
|
|
The implementation pattern is as follows:
|
|
|
|
* Validate a valid parameter num was provided, or code array
|
|
|
|
def_body_start or def_body_code_array_start( <name of function >)
|
|
|
|
|
|
|
|
* Begin the code entry do-while loop, make sure each entry is valid processing its type in the switc
|
|
|
|
def_body_code_validation_start( <name of function> )
|
|
|
|
|
|
|
|
* Define the switch case statements between the macros.
|
|
|
|
|
|
|
|
* Add the code entry, finish the closing implemenation for the do-while loop.
|
|
|
|
def_body_code_validation_end( <name of function> )
|
|
|
|
|
|
|
|
* Lock the body AST and return it.
|
|
|
|
|
|
|
|
If a function's implementation deviates from the macros then its just writen it out.
|
|
|
|
*/
|
|
|
|
|
|
|
|
# pragma region Helper Macros for def_**_body functions
|
|
|
|
# define def_body_start( Name_ ) \
|
|
|
|
using namespace ECode; \
|
|
|
|
\
|
|
|
|
if ( num <= 0 ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen::" txt(Name_) ": num cannot be zero or negative"); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
}
|
|
|
|
|
|
|
|
# define def_body_code_array_start( Name_ ) \
|
|
|
|
using namespace ECode; \
|
|
|
|
\
|
|
|
|
if ( num <= 0 ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen::" txt(Name_) ": num cannot be zero or negative"); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if ( codes == nullptr ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen::def_class_body: Provided a null array of codes"); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
}
|
|
|
|
|
|
|
|
# define def_body_code_validation_start( Name_, Get_Code_Expr_ ) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
Code entry = Get_Code_Expr_; \
|
|
|
|
\
|
|
|
|
if ( ! entry ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen::" txt(Name_) ": Provided an null entry"); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
switch ( entry->Type ) \
|
|
|
|
{
|
|
|
|
|
|
|
|
# define def_body_code_validation_end( Name_ ) \
|
|
|
|
log_failure("gen::" txt(Name_) ": Entry type is not allowed: %s", entry->debug_str() ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
\
|
|
|
|
default: \
|
|
|
|
break; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
result->add_entry( entry ); \
|
|
|
|
} \
|
|
|
|
while ( num--, num > 0 )
|
|
|
|
# pragma endregion Helper Macros for def_**_body functions
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_class_body( s32 num, ... )
|
2023-04-03 23:04:19 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_start( def_class_body );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
2023-04-11 19:18:02 -07:00
|
|
|
result->Type = Class_Body;
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
va_list va;
|
|
|
|
va_start(va, num);
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_validation_start( def_class_body, va_arg( va, Code ) );
|
2023-04-09 21:38:47 -07:00
|
|
|
case Enum_Body:
|
2023-04-11 19:18:02 -07:00
|
|
|
case Execution:
|
2023-04-09 21:38:47 -07:00
|
|
|
case Function_Body:
|
|
|
|
case Global_Body:
|
2023-04-03 23:04:19 -07:00
|
|
|
case Namespace:
|
|
|
|
case Namespace_Body:
|
2023-04-07 21:29:09 -07:00
|
|
|
case Operator:
|
2023-04-10 18:33:06 -07:00
|
|
|
case Operator_Fwd:
|
2023-04-03 23:04:19 -07:00
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
2023-04-11 19:18:02 -07:00
|
|
|
case Using_Namespace:
|
|
|
|
def_body_code_validation_end( def_class_body );
|
2023-04-07 21:29:09 -07:00
|
|
|
va_end(va);
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
2023-04-05 23:21:23 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_class_body( s32 num, Code* codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_array_start( def_class_body );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Function_Body;
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_validation_start( def_class_body, *codes; codes++ );
|
2023-04-09 21:38:47 -07:00
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
|
|
|
case Class_Body:
|
|
|
|
case Enum_Body:
|
|
|
|
case Friend:
|
|
|
|
case Function_Body:
|
2023-04-10 18:33:06 -07:00
|
|
|
case Function_Fwd:
|
2023-04-09 21:38:47 -07:00
|
|
|
case Global_Body:
|
2023-04-07 21:29:09 -07:00
|
|
|
case Namespace:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Operator:
|
2023-04-10 18:33:06 -07:00
|
|
|
case Operator_Fwd:
|
|
|
|
case Operator_Member:
|
|
|
|
case Operator_Member_Fwd:
|
2023-04-07 21:29:09 -07:00
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_validation_end( def_class_body );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
2023-04-07 21:29:09 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_enum_body( s32 num, ... )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_start( def_enum_body );
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
2023-04-11 19:18:02 -07:00
|
|
|
result->Type = Enum_Body;
|
2023-04-09 21:38:47 -07:00
|
|
|
|
|
|
|
va_list va;
|
|
|
|
va_start(va, num);
|
|
|
|
do
|
|
|
|
{
|
|
|
|
Code entry = va_arg(va, Code);
|
|
|
|
|
|
|
|
if ( ! entry )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure("gen::def_enum_body: Provided a null entry");
|
2023-04-09 21:38:47 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( entry->Type != Untyped )
|
2023-04-09 21:38:47 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure("gen::def_enum_body: Entry type is not allowed - %s. Must be of untyped type.", entry->debug_str() ); \
|
|
|
|
return Code::Invalid;
|
2023-04-09 21:38:47 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
result->add_entry( entry );
|
|
|
|
}
|
|
|
|
while ( num--, num > 0 );
|
|
|
|
va_end(va);
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_enum_body( s32 num, Code* codes )
|
2023-04-10 18:33:06 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_array_start( def_enum_body );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
2023-04-11 19:18:02 -07:00
|
|
|
result->Type = Class_Body;
|
2023-04-10 18:33:06 -07:00
|
|
|
|
|
|
|
do
|
|
|
|
{
|
|
|
|
Code entry = *codes;
|
|
|
|
|
|
|
|
if ( ! entry )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure("gen::def_enum_body: Provided a null entry");
|
2023-04-10 18:33:06 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( entry->Type != Untyped )
|
2023-04-10 18:33:06 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure("gen::def_enum_body: Entry type is not allowed: %s", entry->debug_str() ); \
|
|
|
|
return Code::Invalid;
|
2023-04-10 18:33:06 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
result->add_entry( entry );
|
|
|
|
}
|
2023-04-11 19:18:02 -07:00
|
|
|
while ( codes++, num--, num > 0 );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
|
|
|
result.lock();
|
2023-04-09 21:38:47 -07:00
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_function_body( s32 num, ... )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_start( def_function_body );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
Code
|
2023-04-11 19:18:02 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Type = Function_Body;
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
va_list va;
|
|
|
|
va_start(va, num);
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_validation_start( def_function_body, va_arg(va, Code) );
|
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
|
|
|
case Class_Body:
|
|
|
|
case Enum_Body:
|
|
|
|
case Friend:
|
|
|
|
case Function_Body:
|
|
|
|
case Function_Fwd:
|
|
|
|
case Global_Body:
|
|
|
|
case Namespace:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Operator:
|
|
|
|
case Operator_Fwd:
|
|
|
|
case Operator_Member:
|
|
|
|
case Operator_Member_Fwd:
|
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
|
|
|
def_body_code_validation_end( def_function_body );
|
|
|
|
va_end(va);
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_function_body( s32 num, Code* codes )
|
|
|
|
{
|
|
|
|
def_body_code_array_start( def_function_body );
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Function_Body;
|
|
|
|
|
|
|
|
def_body_code_validation_start( def_function_body, *codes; codes++ );
|
2023-04-10 18:33:06 -07:00
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
|
|
|
case Class_Body:
|
|
|
|
case Enum_Body:
|
|
|
|
case Friend:
|
|
|
|
case Function_Body:
|
2023-04-11 19:18:02 -07:00
|
|
|
case Function_Fwd:
|
2023-04-10 18:33:06 -07:00
|
|
|
case Global_Body:
|
2023-04-11 19:18:02 -07:00
|
|
|
case Namespace:
|
2023-04-07 21:29:09 -07:00
|
|
|
case Namespace_Body:
|
2023-04-11 19:18:02 -07:00
|
|
|
case Operator:
|
|
|
|
case Operator_Fwd:
|
2023-04-10 18:33:06 -07:00
|
|
|
case Operator_Member:
|
|
|
|
case Operator_Member_Fwd:
|
2023-04-07 21:29:09 -07:00
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_validation_end( def_function_body );
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_global_body( s32 num, ... )
|
|
|
|
{
|
|
|
|
def_body_start( def_global_body );
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Global_Body;
|
|
|
|
|
|
|
|
va_list va;
|
|
|
|
va_start(va, num);
|
|
|
|
def_body_code_validation_start( def_global_body, va_arg(va, Code) );
|
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
|
|
|
case Class_Body:
|
|
|
|
case Enum_Body:
|
|
|
|
case Execution:
|
|
|
|
case Friend:
|
|
|
|
case Function_Body:
|
|
|
|
case Global_Body:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Operator_Member:
|
|
|
|
case Operator_Member_Fwd:
|
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
|
|
|
def_body_code_validation_end( def_global_body );
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_global_body( s32 num, Code* codes )
|
|
|
|
{
|
|
|
|
def_body_code_array_start( def_global_body );
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Global_Body;
|
|
|
|
|
|
|
|
def_body_code_validation_start( def_global_body, *codes; codes++ );
|
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
|
|
|
case Class_Body:
|
|
|
|
case Enum_Body:
|
|
|
|
case Execution:
|
|
|
|
case Friend:
|
|
|
|
case Function_Body:
|
|
|
|
case Global_Body:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Operator_Member:
|
|
|
|
case Operator_Member_Fwd:
|
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
|
|
|
def_body_code_validation_end( def_global_body );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_namespace_body( s32 num, ... )
|
|
|
|
{
|
|
|
|
def_body_start( def_namespace_body );
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Namespace_Body;
|
|
|
|
|
|
|
|
va_list va;
|
|
|
|
va_start(va, num);
|
|
|
|
def_body_code_validation_start( def_namespace_body, va_arg(va, Code) );
|
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
|
|
|
case Class_Body:
|
|
|
|
case Enum_Body:
|
|
|
|
case Execution:
|
|
|
|
case Friend:
|
|
|
|
case Function_Body:
|
|
|
|
case Global_Body:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Operator_Member:
|
|
|
|
case Operator_Member_Fwd:
|
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
|
|
|
def_body_code_validation_end( def_namespace_body );
|
2023-04-07 21:29:09 -07:00
|
|
|
va_end(va);
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_namespace_body( s32 num, Code* codes )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_array_start( def_namespace_body );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Global_Body;
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_validation_start( def_namespace_body, *codes; codes++ );
|
|
|
|
case Access_Public:
|
|
|
|
case Access_Protected:
|
|
|
|
case Access_Private:
|
|
|
|
case Class_Body:
|
|
|
|
case Enum_Body:
|
|
|
|
case Execution:
|
|
|
|
case Friend:
|
|
|
|
case Function_Body:
|
|
|
|
case Global_Body:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Operator_Member:
|
|
|
|
case Operator_Member_Fwd:
|
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
|
|
|
def_body_code_validation_end( def_namespace_body );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
|
|
|
result.lock();
|
2023-04-07 21:29:09 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code def_params( s32 num, ... )
|
2023-04-05 23:21:23 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_start( def_params );
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( num % 3 != 0 )
|
2023-04-05 23:21:23 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure("gen::def_params: number of arguments must be a multiple of 3 (Code, s32, char const*) - %d", num);
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Parameters;
|
|
|
|
|
|
|
|
va_list va;
|
|
|
|
va_start(va, num);
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
Code type = va_arg(va, Code);
|
|
|
|
s32 name_length = va_arg(va, s32 );
|
2023-04-05 23:21:23 -07:00
|
|
|
char const* name = va_arg(va, char const*);
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result->Name = get_cached_string( name, name_length );
|
|
|
|
result->Entries = make_code_entries();
|
2023-04-05 23:21:23 -07:00
|
|
|
|
|
|
|
if ( type->Type != Typename )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure( "gen::def_params: type of param %d is not a Typename", num - num + 1 );
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( type );
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
while( num -= 3, num && num % 3 == 0 )
|
2023-04-05 23:21:23 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
type = va_arg(va, Code);
|
|
|
|
name_length = va_arg(va, u32);
|
2023-04-05 23:21:23 -07:00
|
|
|
name = va_arg(va, char const*);
|
|
|
|
|
|
|
|
Code
|
2023-04-11 19:18:02 -07:00
|
|
|
param = make_code();
|
|
|
|
param->Type = Parameters;
|
|
|
|
param->Name = get_cached_string(name, name_length);
|
2023-04-05 23:21:23 -07:00
|
|
|
|
|
|
|
if ( type->Type != Typename )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
log_failure( "gen::def_params: type of param %d is not a Typename", num - num + 1 );
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
param->add_entry( type );
|
2023-04-05 23:21:23 -07:00
|
|
|
param.lock();
|
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry(param);
|
2023-04-05 23:21:23 -07:00
|
|
|
}
|
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
result.lock();
|
2023-04-03 23:04:19 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
Code def_params( s32 num, Code* codes )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_array_start( def_params );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
|
|
|
# define check_current() \
|
|
|
|
if ( current == nullptr ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen::def_params: Provide a null code in codes array"); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
|
|
|
\
|
|
|
|
if (current->Type != Parameters ) \
|
|
|
|
{ \
|
|
|
|
log_failure("gen::def_params: Code in coes array is not of paramter type - %s", current->debug_str() ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
}
|
|
|
|
|
|
|
|
Code current = * codes;
|
|
|
|
check_current();
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Name = current->Name;
|
|
|
|
result->Type = current->Type;
|
|
|
|
|
|
|
|
while( codes++, current = * codes, num--, num > 0 )
|
|
|
|
{
|
|
|
|
check_current();
|
|
|
|
result->add_entry( current );
|
|
|
|
}
|
|
|
|
# undef check_current
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-03 00:55:28 -07:00
|
|
|
Code def_specifiers( s32 num, ... )
|
2023-04-01 19:21:46 -07:00
|
|
|
{
|
|
|
|
if ( num <= 0 )
|
2023-04-11 19:18:02 -07:00
|
|
|
{
|
2023-04-10 18:33:06 -07:00
|
|
|
log_failure("gen::def_specifiers: num cannot be zero or less");
|
2023-04-11 19:18:02 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
if ( num > AST::ArrSpecs_Cap )
|
|
|
|
{
|
|
|
|
log_failure("gen::def_specifiers: num of speciifers to define AST larger than AST specicifier capacity - %d", num);
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-05 23:21:23 -07:00
|
|
|
Code
|
2023-04-09 21:38:47 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Type = ECode::Specifiers;
|
2023-04-07 09:31:50 -07:00
|
|
|
|
2023-04-01 19:21:46 -07:00
|
|
|
va_list va;
|
|
|
|
va_start(va, num);
|
|
|
|
do
|
|
|
|
{
|
2023-04-03 23:04:19 -07:00
|
|
|
SpecifierT type = (SpecifierT)va_arg(va, int);
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result->add_specifier( type );
|
2023-04-01 19:21:46 -07:00
|
|
|
}
|
2023-04-01 22:07:44 -07:00
|
|
|
while ( --num, num );
|
2023-04-01 19:21:46 -07:00
|
|
|
va_end(va);
|
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
2023-04-01 19:21:46 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-03 00:55:28 -07:00
|
|
|
Code def_struct_body( s32 num, ... )
|
2023-04-02 09:35:14 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_start( def_struct_body );
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code
|
2023-04-11 19:18:02 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Type = Struct_Body;
|
2023-04-02 09:35:14 -07:00
|
|
|
|
2023-04-03 00:55:28 -07:00
|
|
|
va_list va;
|
|
|
|
va_start(va, num);
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_validation_start( def_struct_body, va_arg(va, Code) );
|
|
|
|
case Enum_Body:
|
|
|
|
case Execution:
|
|
|
|
case Function_Body:
|
|
|
|
case Global_Body:
|
|
|
|
case Namespace:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Operator:
|
|
|
|
case Operator_Fwd:
|
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
|
|
|
case Using_Namespace:
|
|
|
|
def_body_code_validation_end( def_struct_body );
|
|
|
|
va_end(va);
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code def_struct_body( s32 num, Code* codes )
|
|
|
|
{
|
|
|
|
def_body_code_array_start( def_struct_body );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Struct_Body;
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
def_body_code_validation_start( def_struct_body, *codes; codes++ );
|
|
|
|
case Enum_Body:
|
|
|
|
case Execution:
|
|
|
|
case Function_Body:
|
|
|
|
case Global_Body:
|
|
|
|
case Namespace:
|
|
|
|
case Namespace_Body:
|
|
|
|
case Operator:
|
|
|
|
case Operator_Fwd:
|
|
|
|
case Parameters:
|
|
|
|
case Specifiers:
|
|
|
|
case Struct_Body:
|
|
|
|
case Typename:
|
|
|
|
case Using_Namespace:
|
|
|
|
def_body_code_validation_end( def_struct_body );
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result.lock();
|
2023-04-03 00:55:28 -07:00
|
|
|
return result;
|
2023-04-02 09:35:14 -07:00
|
|
|
}
|
2023-04-07 21:29:09 -07:00
|
|
|
# pragma endregion Upfront Constructors
|
2023-04-02 09:35:14 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
# pragma region Incremetnal Constructors
|
2023-04-18 19:47:59 -07:00
|
|
|
# ifdef GEN_FEATURE_INCREMENTAL
|
2023-04-07 21:29:09 -07:00
|
|
|
Code make_class( s32 length, char const* name, Code parent, Code specifiers )
|
2023-04-01 22:07:44 -07:00
|
|
|
{
|
2023-04-10 18:33:06 -07:00
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
name_check( make_struct, length, name );
|
|
|
|
|
|
|
|
if ( specifiers && specifiers->Type != Specifiers )
|
|
|
|
{
|
|
|
|
log_failure( "gen::make_class: specifiers was not a `Specifiers` type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( parent && parent->Type != Struct )
|
|
|
|
{
|
|
|
|
log_failure( "gen::make_class: parent was not a `Struct` type" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Struct;
|
|
|
|
result->Name = get_cached_string( name, length );
|
|
|
|
|
|
|
|
Code
|
|
|
|
body = make_code();
|
2023-04-11 19:18:02 -07:00
|
|
|
body->Type = Struct_Body;
|
2023-04-10 18:33:06 -07:00
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
result->add_entry( body );
|
2023-04-10 18:33:06 -07:00
|
|
|
|
|
|
|
if ( parent )
|
|
|
|
result->add_entry( parent );
|
|
|
|
|
|
|
|
if ( specifiers )
|
|
|
|
result->add_entry( specifiers );
|
|
|
|
|
|
|
|
return result;
|
2023-04-01 22:07:44 -07:00
|
|
|
}
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code make_enum( s32 length, char const* name, Code type, EnumT specifier )
|
2023-04-03 00:55:28 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
name_check( make_enum, length, name );
|
|
|
|
|
|
|
|
if ( type && type != Typename )
|
|
|
|
{
|
|
|
|
log_failure("gen::make_enum: type provided is not of code type typename - %s", type->debug_str() );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = specifier == EnumClass ? Enum_Class : Enum;
|
|
|
|
result->Name = get_cached_string( name, length );
|
|
|
|
|
|
|
|
Code
|
|
|
|
body = make_code();
|
|
|
|
body->Type = Enum_Body;
|
|
|
|
|
|
|
|
result->add_entry( body );
|
|
|
|
|
|
|
|
if ( type )
|
|
|
|
result->add_entry( type );
|
|
|
|
|
|
|
|
return result;
|
2023-04-03 00:55:28 -07:00
|
|
|
}
|
2023-04-02 09:35:14 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code make_function( s32 length, char const* name
|
2023-04-03 23:04:19 -07:00
|
|
|
, Code specifiers
|
|
|
|
, Code params
|
|
|
|
, Code ret_type
|
|
|
|
)
|
2023-04-03 00:55:28 -07:00
|
|
|
{
|
2023-04-03 23:04:19 -07:00
|
|
|
using namespace ECode;
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
name_check( make_function, length, name );
|
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
if ( specifiers && specifiers->Type != Specifiers )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_function: specifiers was not a `Specifiers` type" );
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
2023-04-03 23:04:19 -07:00
|
|
|
}
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
if ( params && params->Type != Parameters )
|
2023-04-03 00:55:28 -07:00
|
|
|
{
|
2023-04-03 23:04:19 -07:00
|
|
|
log_failure( "gen::def_function: params was not a `Parameters` type" );
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
2023-04-03 23:04:19 -07:00
|
|
|
}
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
if ( ret_type == nullptr || ret_type->Type != Typename )
|
|
|
|
{
|
|
|
|
log_failure( "gen::def_function: ret_type was not a Typename" );
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
2023-04-03 23:04:19 -07:00
|
|
|
}
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-05 23:21:23 -07:00
|
|
|
Code
|
2023-04-10 18:33:06 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Name = get_cached_string( name, length );
|
|
|
|
result->Type = Function;
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code
|
2023-04-10 18:33:06 -07:00
|
|
|
body = make_code();
|
|
|
|
body->Type = Function_Body;
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-10 18:33:06 -07:00
|
|
|
result->add_entry( body );
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
if ( specifiers )
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( specifiers );
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
if ( ret_type )
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( ret_type );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
if ( params )
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( params );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
Code make_global_body( s32 length, char const* name, s32 num, ... )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
name_check( make_global_body, length, name );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
Code
|
2023-04-10 18:33:06 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Type = ECode::Global_Body;
|
|
|
|
result->Name = get_cached_string( name, length );
|
2023-04-07 21:29:09 -07:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code make_namespace( s32 length, char const* name, Code parent, Code specifiers )
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
name_check( make_namespace, length, name );
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = ECode::Namespace;
|
|
|
|
result->Name = get_cached_string( name, length );
|
|
|
|
|
|
|
|
Code
|
|
|
|
body = make_code();
|
|
|
|
body->Type = ECode::Namespace_Body;
|
|
|
|
|
|
|
|
result->add_entry( body );
|
|
|
|
|
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 19:18:02 -07:00
|
|
|
Code make_operator( OperatorT op, Code params_code, Code ret_type, Code specifiers )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
using namespace ECode;
|
|
|
|
|
2023-04-11 22:24:43 -07:00
|
|
|
OpValidateResult check_result = operator__validate( op, params_code, ret_type, specifiers );
|
2023-04-11 19:18:02 -07:00
|
|
|
|
|
|
|
if ( check_result == OpValidateResult::Fail )
|
|
|
|
{
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-19 13:57:59 -07:00
|
|
|
char const* name = str_fmt_buf( "operator%s", to_str(op) );
|
2023-04-11 19:18:02 -07:00
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
2023-04-19 13:57:59 -07:00
|
|
|
result->Name = get_cached_string( name, str_len(name, MaxNameLength) );
|
2023-04-11 19:18:02 -07:00
|
|
|
|
|
|
|
if (params_code)
|
|
|
|
result->add_entry( params_code );
|
|
|
|
|
|
|
|
result->add_entry( ret_type );
|
|
|
|
|
|
|
|
if ( specifiers )
|
|
|
|
result->add_entry( specifiers );
|
|
|
|
|
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code make_params()
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = ECode::Parameters;
|
|
|
|
|
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code make_specifiers()
|
|
|
|
{
|
2023-04-11 19:18:02 -07:00
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = ECode::Specifiers;
|
|
|
|
|
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
Code make_struct( s32 length, char const* name, Code parent, Code specifiers )
|
2023-04-03 23:04:19 -07:00
|
|
|
{
|
|
|
|
using namespace ECode;
|
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
name_check( make_struct, length, name );
|
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
if ( specifiers && specifiers->Type != Specifiers )
|
|
|
|
{
|
2023-04-10 18:33:06 -07:00
|
|
|
log_failure( "gen::make_struct: specifiers was not a `Specifiers` type" );
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
2023-04-03 00:55:28 -07:00
|
|
|
}
|
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
if ( parent && parent->Type != Struct )
|
|
|
|
{
|
2023-04-10 18:33:06 -07:00
|
|
|
log_failure( "gen::make_struct: parent was not a `Struct` type" );
|
2023-04-05 23:21:23 -07:00
|
|
|
return Code::Invalid;
|
2023-04-03 23:04:19 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code
|
2023-04-10 18:33:06 -07:00
|
|
|
result = make_code();
|
|
|
|
result->Type = Struct;
|
|
|
|
result->Name = get_cached_string( name, length );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code
|
2023-04-10 18:33:06 -07:00
|
|
|
body = make_code();
|
|
|
|
body->Type = Function_Body;
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( make_code() );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
if ( parent )
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( parent );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
if ( specifiers )
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( specifiers );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
return result;
|
|
|
|
}
|
2023-04-19 12:40:23 -07:00
|
|
|
# endif // GEN_FEATURE_INCREMENTAL
|
2023-04-07 21:29:09 -07:00
|
|
|
# pragma endregion Incremetnal Constructions
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
# pragma region Parsing Constructors
|
2023-04-18 19:47:59 -07:00
|
|
|
# ifdef GEN_FEATURE_PARSING
|
|
|
|
/*
|
|
|
|
These constructors are the most implementation intensive other than the edtior or scanner.
|
|
|
|
|
|
|
|
The current implementation is very convervative and does not use a lexer to process the input first.
|
|
|
|
Instead, it just sifts through the content directly looking for the syntax pattern for the code type
|
|
|
|
and then constructs the AST after.
|
|
|
|
|
|
|
|
Eventually I will problably end up using a dedicated lexer for parser constructors to lower the sloc.
|
|
|
|
|
|
|
|
It uses the upfront constructors to help keep code from getitng to large since the target is to keep the sloc low
|
|
|
|
*/
|
|
|
|
|
2023-04-11 22:24:43 -07:00
|
|
|
# pragma region Helper Macros
|
|
|
|
# define check_parse_args( func, length, def ) \
|
|
|
|
if ( length <= 0 ) \
|
|
|
|
{ \
|
|
|
|
log_failure( "gen::" txt(func) ": length must greater than 0" ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
|
|
|
if ( def == nullptr ) \
|
|
|
|
{ \
|
|
|
|
log_failure( "gen::" txt(func) ": def was null" ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
These macros are used to make the parsing code more readable.
|
|
|
|
*/
|
2023-04-18 19:47:59 -07:00
|
|
|
# define curr_tok ( * tokens )
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
# define eat( Type_ ) \
|
|
|
|
if ( curr_tok.Type != Type_ ) \
|
|
|
|
{ \
|
|
|
|
String token_str = string_make_length( g_allocator, curr_tok.Text, curr_tok.Length ); \
|
|
|
|
log_failure( "gen::" txt(context) ": expected %s, got %s", txt(Type_), curr_tok.Type ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
2023-04-19 12:40:23 -07:00
|
|
|
tokIDX++; \
|
2023-04-18 19:47:59 -07:00
|
|
|
left--
|
2023-04-11 22:24:43 -07:00
|
|
|
# pragma endregion Helper Macros
|
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
# pragma region Lexer
|
|
|
|
/*
|
|
|
|
This is a simple lexer that focuses on tokenizing only tokens relevant to the library.
|
|
|
|
It will not be capable of lexing C++ code with unsupported features.
|
|
|
|
*/
|
|
|
|
|
|
|
|
// Angle brackets not supported as they are used for template arguments outside of expressions
|
|
|
|
// Any angle brackets found will be considered an operator token.
|
|
|
|
|
|
|
|
# define Define_TokType \
|
|
|
|
Entry( Access_Public, "public" ) \
|
|
|
|
Entry( Access_Protected, "protected" ) \
|
|
|
|
Entry( Access_Private, "private" ) \
|
|
|
|
Entry( Access_MemberSymbol, "." ) \
|
|
|
|
Entry( Access_StaticSymbol, "::") \
|
|
|
|
Entry( Ampersand, "&" ) \
|
|
|
|
Entry( Ampersand_DBL, "&&" ) \
|
|
|
|
Entry( Assign_Classifer, ":" ) \
|
|
|
|
Entry( BraceCurly_Open, "{" ) \
|
|
|
|
Entry( BraceCurly_Close, "}" ) \
|
|
|
|
Entry( BraceSquare_Open, "[" ) \
|
|
|
|
Entry( BraceSquare_Close, "]" ) \
|
|
|
|
Entry( Capture_Start, "(" ) \
|
|
|
|
Entry( Capture_End, ")" ) \
|
|
|
|
Entry( Comment, "__comment__" ) \
|
|
|
|
Entry( Char, "__char__" ) \
|
|
|
|
Entry( Comma, "," ) \
|
|
|
|
Entry( Decl_Class, "class" ) \
|
|
|
|
Entry( Decl_Enum, "enum" ) \
|
|
|
|
Entry( Decl_Friend, "friend" ) \
|
|
|
|
Entry( Decl_Namespace, "namespace" ) \
|
|
|
|
Entry( Decl_Struct, "struct" ) \
|
2023-04-18 21:56:43 -07:00
|
|
|
Entry( Decl_Typedef, "typedef" ) \
|
2023-04-18 19:47:59 -07:00
|
|
|
Entry( Decl_Using, "using" ) \
|
|
|
|
Entry( Decl_Union, "union" ) \
|
|
|
|
Entry( Identifier, "__SymID__" ) \
|
|
|
|
Entry( Number, "number" ) \
|
|
|
|
Entry( Operator, "operator" ) \
|
|
|
|
Entry( Spec_API, txt(API_Keyword) ) \
|
|
|
|
Entry( Spec_Alignas, "alignas" ) \
|
|
|
|
Entry( Spec_CLinkage, "extern \"C\"" ) \
|
|
|
|
Entry( Spec_Const, "const" ) \
|
|
|
|
Entry( Spec_Consteval, "consteval" ) \
|
|
|
|
Entry( Spec_Constexpr, "constexpr" ) \
|
|
|
|
Entry( Spec_Constinit, "constinit" ) \
|
|
|
|
Entry( Spec_Export, "export" ) \
|
|
|
|
Entry( Spec_Extern, "extern" ) \
|
|
|
|
Entry( Spec_Import, "import" ) \
|
|
|
|
Entry( Spec_Inline, "inline" ) \
|
|
|
|
Entry( Spec_Module, "module" ) \
|
|
|
|
Entry( Spec_Static, "static" ) \
|
|
|
|
Entry( Spec_ThreadLocal, "thread_local" ) \
|
|
|
|
Entry( Spec_Volatile, "volatile") \
|
|
|
|
Entry( Star, "*" ) \
|
|
|
|
Entry( Statement_End, ";" ) \
|
2023-04-18 21:56:43 -07:00
|
|
|
Entry( String, "__String__" ) \
|
|
|
|
Entry( Type_Unsigned, "unsigned" ) \
|
|
|
|
Entry( Type_Signed, "signed" ) \
|
|
|
|
Entry( Type_Short, "short" ) \
|
|
|
|
Entry( Type_Long, "long" )
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
enum class TokType : u32
|
|
|
|
{
|
|
|
|
# define Entry( Name_, Str_ ) Name_,
|
|
|
|
Define_TokType
|
|
|
|
# undef Entry
|
|
|
|
|
|
|
|
Num,
|
|
|
|
Invalid
|
|
|
|
};
|
|
|
|
|
|
|
|
struct Token
|
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
char const* Text;
|
2023-04-18 19:47:59 -07:00
|
|
|
s32 Length;
|
|
|
|
TokType Type;
|
|
|
|
};
|
|
|
|
|
|
|
|
TokType get_token_type( char const* word, s32 length )
|
|
|
|
{
|
|
|
|
local_persist
|
|
|
|
char const* lookup[(u32)TokType::Num] =
|
|
|
|
{
|
|
|
|
# define Entry( Name_, Str_ ) Str_,
|
|
|
|
Define_TokType
|
|
|
|
# undef Entry
|
|
|
|
};
|
|
|
|
|
|
|
|
for ( u32 index = 0; index < (u32)TokType::Num; index++ )
|
|
|
|
{
|
|
|
|
if ( str_compare( word, lookup[index], length ) == 0 )
|
|
|
|
return scast(TokType, index);
|
|
|
|
}
|
|
|
|
|
|
|
|
return TokType::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
inline
|
|
|
|
bool tok_is_specifier( Token const& tok )
|
|
|
|
{
|
|
|
|
return tok.Type >= TokType::Spec_API && tok.Type <= TokType::Spec_Volatile;
|
|
|
|
}
|
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
Arena LexAllocator;
|
|
|
|
|
|
|
|
Array(Token) lex( s32 length, char const* content)
|
|
|
|
{
|
2023-04-19 12:40:23 -07:00
|
|
|
# define current ( * scanner )
|
|
|
|
|
|
|
|
# define move_forward() \
|
|
|
|
left--; \
|
|
|
|
scanner++
|
|
|
|
|
|
|
|
# define SkipWhitespace() \
|
|
|
|
while ( left && char_is_space( current ) ) \
|
|
|
|
{ \
|
|
|
|
move_forward(); \
|
|
|
|
}
|
|
|
|
|
|
|
|
# define SkipWhitespace_Checked( Context_, Msg_, ... ) \
|
|
|
|
while ( left && char_is_space( current ) ) \
|
|
|
|
{ \
|
|
|
|
move_forward(); \
|
|
|
|
} \
|
|
|
|
if ( left <= 0 ) \
|
|
|
|
{ \
|
|
|
|
log_failure( "gen::" txt(Context_) ": " Msg_, __VA_ARGS__ ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
}
|
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
do_once_start
|
|
|
|
arena_init_from_allocator( & LexAllocator, heap(), megabytes(10) );
|
|
|
|
|
|
|
|
if ( LexAllocator.physical_start == nullptr )
|
|
|
|
{
|
|
|
|
log_failure( "gen::lex: failed to allocate memory for parsing constructor's lexer");
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
do_once_end
|
|
|
|
|
|
|
|
local_persist thread_local
|
|
|
|
Array(Token) Tokens = nullptr;
|
|
|
|
|
|
|
|
s32 left = length;
|
|
|
|
char const* scanner = content;
|
|
|
|
|
|
|
|
char const* word = scanner;
|
|
|
|
s32 word_length = 0;
|
|
|
|
|
|
|
|
SkipWhitespace();
|
|
|
|
if ( left <= 0 )
|
|
|
|
{
|
|
|
|
log_failure( "gen::lex: no tokens found (only whitespace provided)" );
|
|
|
|
return Tokens;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( Tokens )
|
|
|
|
array_clear( Tokens );
|
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
array_init_reserve( Tokens, arena_allocator( & LexAllocator), length / 8 );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
while (left )
|
|
|
|
{
|
|
|
|
Token token = { nullptr, 0, TokType::Invalid };
|
|
|
|
|
|
|
|
switch ( current )
|
|
|
|
{
|
|
|
|
case '.':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Access_MemberSymbol;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '&' :
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Ampersand;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
if ( current == '&' ) // &&
|
|
|
|
{
|
|
|
|
token.Length = 2;
|
|
|
|
token.Type = TokType::Ampersand_DBL;
|
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case ':':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Assign_Classifer;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
if ( current == ':' )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
token.Type = TokType::Access_StaticSymbol;
|
|
|
|
token.Length++;
|
|
|
|
}
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '{':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::BraceCurly_Open;
|
2023-04-18 19:47:59 -07:00
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '}':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::BraceCurly_Close;
|
2023-04-18 19:47:59 -07:00
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '[':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::BraceSquare_Open;
|
2023-04-18 19:47:59 -07:00
|
|
|
if ( left )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
if ( current == ']' )
|
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Length = 2;
|
|
|
|
token.Type = TokType::Operator;
|
2023-04-18 19:47:59 -07:00
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case ']':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::BraceSquare_Close;
|
2023-04-18 19:47:59 -07:00
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '(':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Capture_Start;
|
2023-04-18 19:47:59 -07:00
|
|
|
if ( left )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
if ( current == ')' )
|
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Length = 2;
|
|
|
|
token.Type = TokType::Operator;
|
2023-04-18 19:47:59 -07:00
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case ')':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Capture_End;
|
2023-04-18 19:47:59 -07:00
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '\'':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Char;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
while ( left && current != '\'' )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
token.Length++;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( left )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
token.Length++;
|
|
|
|
}
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case ',':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Comma;
|
2023-04-18 19:47:59 -07:00
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '*':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Star;
|
2023-04-18 19:47:59 -07:00
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case ';':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Statement_End;
|
2023-04-18 19:47:59 -07:00
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '"':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::String;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
move_forward();
|
|
|
|
while ( left )
|
|
|
|
{
|
|
|
|
if ( current == '"' )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( current == '\\' )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
token.Length++;
|
|
|
|
|
|
|
|
if ( left )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
token.Length++;
|
|
|
|
}
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
move_forward();
|
|
|
|
token.Length++;
|
|
|
|
}
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
// All other operators we just label as an operator and move forward.
|
|
|
|
case '+':
|
|
|
|
case '%':
|
|
|
|
case '^':
|
|
|
|
case '~':
|
|
|
|
case '!':
|
|
|
|
case '=':
|
|
|
|
case '<':
|
|
|
|
case '>':
|
|
|
|
case '|':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Operator;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
if ( current == '=' )
|
|
|
|
{
|
|
|
|
token.Length++;
|
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
else while ( left && current == *(scanner - 1) && length < 3 )
|
|
|
|
{
|
|
|
|
token.Length++;
|
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
// Dash is unfortunatlly a bit more complicated...
|
|
|
|
case '-':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Operator;
|
2023-04-18 19:47:59 -07:00
|
|
|
if ( left )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
if ( current == '>' )
|
|
|
|
{
|
|
|
|
token.Length++;
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
if ( current == '*' )
|
|
|
|
{
|
|
|
|
token.Length++;
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( current == '=' )
|
|
|
|
{
|
|
|
|
token.Length++;
|
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
else while ( left && current == *(scanner - 1) && length < 3 )
|
|
|
|
{
|
|
|
|
token.Length++;
|
|
|
|
|
|
|
|
if (left)
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto FoundToken;
|
|
|
|
|
|
|
|
case '/':
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
|
|
|
token.Type = TokType::Operator;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
if ( left )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
|
|
|
|
if ( current == '/' )
|
|
|
|
{
|
|
|
|
token.Type = TokType::Comment;
|
|
|
|
|
|
|
|
while ( left && current != '\n' )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
token.Length++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ( current == '*' )
|
|
|
|
{
|
|
|
|
token.Type = TokType::Comment;
|
|
|
|
|
|
|
|
while ( left && ( current != '*' || *(scanner + 1) != '/' ) )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
token.Length++;
|
|
|
|
}
|
|
|
|
move_forward();
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
goto FoundToken;
|
|
|
|
}
|
|
|
|
|
|
|
|
SkipWhitespace();
|
|
|
|
if ( left <= 0 )
|
|
|
|
break;
|
|
|
|
|
|
|
|
if ( char_is_alpha( current ) || current == '_' )
|
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
token.Text = scanner;
|
|
|
|
token.Length = 1;
|
2023-04-18 19:47:59 -07:00
|
|
|
move_forward();
|
|
|
|
|
|
|
|
while ( left && ( char_is_alphanumeric(current) || current == '_' ) )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
token.Length++;
|
|
|
|
}
|
|
|
|
|
|
|
|
goto FoundToken;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
String context_str = zpl::string_sprintf_buf( g_allocator, "%s", scanner, min( 100, left ) );
|
|
|
|
|
|
|
|
log_failure( "Failed to lex token %s", context_str );
|
|
|
|
|
|
|
|
// Skip to next whitespace since we can't know if anything else is valid until then.
|
|
|
|
while ( left && ! char_is_space( current ) )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
FoundToken:
|
|
|
|
|
|
|
|
if ( token.Type != TokType::Invalid )
|
|
|
|
{
|
|
|
|
array_append( Tokens, token );
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
TokType type = get_token_type( token.Text, token.Length );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
if ( type != TokType::Invalid )
|
|
|
|
{
|
|
|
|
token.Type = type;
|
|
|
|
array_append( Tokens, token );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
// Its most likely an identifier...
|
|
|
|
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
String tok_str = zpl::string_sprintf_buf( g_allocator, "%s", token.Text, token.Length );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
log_failure( "Failed to lex token %s", tok_str );
|
|
|
|
|
|
|
|
// Skip to next whitespace since we can't know if anything else is valid until then.
|
|
|
|
while ( left && ! char_is_space( current ) )
|
|
|
|
{
|
|
|
|
move_forward();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return Tokens;
|
2023-04-19 12:40:23 -07:00
|
|
|
|
|
|
|
# undef current
|
|
|
|
# undef move_forward
|
|
|
|
# undef SkipWhitespace
|
|
|
|
# undef SkipWhitespace_Checked
|
2023-04-18 19:47:59 -07:00
|
|
|
}
|
|
|
|
# pragma endregion Lexer
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code parse_class( s32 length, char const* def )
|
2023-04-03 23:04:19 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
# define context parse_class
|
2023-04-18 19:47:59 -07:00
|
|
|
Array(Token) tokens = lex( length, def );
|
|
|
|
|
|
|
|
if ( tokens == nullptr || array_count( tokens ) == 0 )
|
|
|
|
{
|
|
|
|
log_failure( "gen::parse_class: no tokens found" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
|
|
|
Token name { nullptr, 0, TokType::Invalid };
|
|
|
|
|
|
|
|
Code parent = { nullptr };
|
|
|
|
Code speciifes = { nullptr };
|
|
|
|
Code body = { nullptr };
|
|
|
|
|
|
|
|
Token& curr_token = * tokens;
|
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
s32 tokIDX = 0;
|
|
|
|
s32 left = array_count( tokens );
|
2023-04-18 19:47:59 -07:00
|
|
|
do
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
while ( left--, left > 0 );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code parse_enum( s32 length, char const* def )
|
|
|
|
{
|
2023-04-19 12:40:23 -07:00
|
|
|
# define context parse_enum
|
|
|
|
check_parse_args( parse_enum, length, def );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Array(Token) tokens = lex( length, def );
|
|
|
|
if ( tokens == nullptr )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-19 12:40:23 -07:00
|
|
|
log_failure( "gen::parse_enum: no tokens found for provided definition" );
|
2023-04-11 22:24:43 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
s32 left = array_count( tokens );
|
|
|
|
s32 tokIDX = 0;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
SpecifierT specs_found[16] { ESpecifier::Num_Specifiers };
|
|
|
|
s32 num_specifiers = 0;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Token* name = nullptr;
|
|
|
|
Code array_expr = { nullptr };
|
|
|
|
Code type = { nullptr };
|
|
|
|
Token body = { nullptr, 0, TokType::Invalid };
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
char entries_code[ kilobytes(128) ] { 0 };
|
|
|
|
s32 entries_length = 0;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
bool is_enum_class = false;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
eat( TokType::Decl_Enum );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( curr_tok.Type == TokType::Decl_Class )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
eat( TokType::Decl_Class);
|
|
|
|
is_enum_class = true;
|
2023-04-11 22:24:43 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( curr_tok.Type != TokType::Identifier )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
log_failure( "gen::parse_enum: expected identifier for enum name" );
|
2023-04-11 22:24:43 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
name = tokens;
|
|
|
|
eat( TokType::Identifier );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( curr_tok.Type == TokType::Assign_Classifer )
|
|
|
|
{
|
|
|
|
eat( TokType::Assign_Classifer );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
s32 left_length = curr_tok.Length + curr_tok.Text - array_front(tokens).Text;
|
|
|
|
|
|
|
|
type = parse_type( curr_tok.Length , curr_tok.Text );
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( type == Code::Invalid )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
log_failure( "gen::parse_enum: failed to parse enum type" );
|
2023-04-11 22:24:43 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-18 21:56:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
if ( curr_tok.Type == TokType::BraceCurly_Open )
|
|
|
|
{
|
|
|
|
eat( TokType::BraceCurly_Open );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
body = curr_tok;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
while ( curr_tok.Type != TokType::BraceCurly_Close )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
body.Length += curr_tok.Length;
|
|
|
|
|
|
|
|
eat( curr_tok.Type );
|
2023-04-11 22:24:43 -07:00
|
|
|
}
|
2023-04-18 21:56:43 -07:00
|
|
|
|
|
|
|
eat( TokType::BraceCurly_Close );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
eat( TokType::Statement_End );
|
2023-04-11 22:24:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( body.Length )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-19 13:57:59 -07:00
|
|
|
mem_copy( entries_code, body.Text, body.Length );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Code untyped_body = untyped_str( entries_length, entries_code );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
|
|
|
result->Type = is_enum_class ? Enum_Class : Enum;
|
2023-04-18 21:56:43 -07:00
|
|
|
result->add_entry( untyped_body );
|
2023-04-11 22:24:43 -07:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
result->Type = is_enum_class ? Enum_Class_Fwd : Enum_Fwd;
|
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
result->Name = get_cached_string( name->Text, name->Length );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
|
|
|
if ( type )
|
|
|
|
result->add_entry( type );
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
2023-04-19 12:40:23 -07:00
|
|
|
# undef context
|
2023-04-09 21:38:47 -07:00
|
|
|
}
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
Code parse_execution( s32 length, char const* exec_def )
|
|
|
|
{
|
|
|
|
not_implemented( parse_execution );
|
2023-04-03 23:04:19 -07:00
|
|
|
}
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code parse_friend( s32 length, char const* def )
|
|
|
|
{
|
2023-04-18 19:47:59 -07:00
|
|
|
# define context parse_friend
|
|
|
|
check_parse_args( parse_friend, length, def );
|
|
|
|
|
|
|
|
Array(Token) tokens = lex( length, def );
|
|
|
|
if ( tokens == nullptr )
|
|
|
|
{
|
|
|
|
log_failure( "gen::parse_friend: no tokens found for provided definition" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
s32 left = array_count( tokens );
|
|
|
|
s32 tokIDX = 0;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
eat( TokType::Decl_Friend );
|
|
|
|
|
|
|
|
// This can either be a simple type, or a function declaration.
|
|
|
|
// If its a function declaration, it will have a return type, followed by a name, followed by a parameter list.
|
|
|
|
// If its a simple type, it will have a type, followed by a name.
|
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
Code result = make_code();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code parse_global_body( s32 length, char const* def )
|
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_global_body );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code parse_function( s32 length, char const* def )
|
2023-04-03 23:04:19 -07:00
|
|
|
{
|
2023-04-11 22:24:43 -07:00
|
|
|
check_parse_args( parse_function, length, def );
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
Arena mem;
|
2023-04-03 23:04:19 -07:00
|
|
|
do_once_start
|
|
|
|
arena_init_from_allocator( & mem, heap(), kilobytes( 10 ) );
|
|
|
|
do_once_end
|
|
|
|
|
|
|
|
// Pretty sure its impossible to have more than this.
|
|
|
|
SpecifierT specs_found[16] { ESpecifier::Num_Specifiers };
|
|
|
|
|
|
|
|
u8 num_specifiers;
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
// Making all significant tokens have a max length of 128 for this parser.
|
|
|
|
ct sw LengthID = 128;
|
|
|
|
|
2023-04-05 23:21:23 -07:00
|
|
|
struct Param
|
|
|
|
{
|
|
|
|
char const Type[LengthID];
|
|
|
|
char const Name[LengthID];
|
2023-04-03 23:04:19 -07:00
|
|
|
};
|
|
|
|
|
2023-04-05 23:21:23 -07:00
|
|
|
static
|
2023-04-03 23:04:19 -07:00
|
|
|
Param Params[ 64 ] { 0 };
|
|
|
|
|
|
|
|
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
using namespace ECode;
|
2023-04-02 09:35:14 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
Code specifiers = def_specifiers( num_specifiers, specs_found );
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
Code params = make_code();
|
2023-04-19 12:40:23 -07:00
|
|
|
// Code ret_type = def_type( ret_length, ret_type_str );
|
|
|
|
// Code body = untyped_str( body_length, body_str );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-05 23:21:23 -07:00
|
|
|
Code
|
2023-04-10 18:33:06 -07:00
|
|
|
result = make_code();
|
2023-04-19 12:40:23 -07:00
|
|
|
// result->Name = get_cached_string( name, name_length );
|
|
|
|
result->Type = Function;
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
// result->add_entry( body );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
if ( specifiers )
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( specifiers );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
// result->add_entry( ret_type );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
if ( params )
|
2023-04-06 16:19:11 -07:00
|
|
|
result->add_entry( params );
|
2023-04-03 23:04:19 -07:00
|
|
|
|
|
|
|
result.lock();
|
2023-04-02 09:35:14 -07:00
|
|
|
return result;
|
|
|
|
}
|
2023-04-03 23:04:19 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code parse_namespace( s32 length, char const* def )
|
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_namespace );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code parse_operator( s32 length, char const* def )
|
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_operator );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code parse_struct( s32 length, char const* def )
|
2023-04-02 09:35:14 -07:00
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
Arena mem;
|
2023-04-03 23:04:19 -07:00
|
|
|
do_once_start
|
|
|
|
arena_init_from_allocator( & mem, heap(), kilobytes( 10 ) );
|
|
|
|
do_once_end
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-03 23:04:19 -07:00
|
|
|
// Pretty sure its impossible to have more than this.
|
|
|
|
SpecifierT specs_found[16] { ESpecifier::Num_Specifiers };
|
|
|
|
|
|
|
|
u8 num_specifiers;
|
|
|
|
|
|
|
|
// Making all significant tokens have a max length of 128 for this parser.
|
|
|
|
ct sw LengthID = 128;
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
char const name [LengthID] { 0 };
|
2023-04-03 23:04:19 -07:00
|
|
|
char const parent[LengthID] { 0 };
|
2023-04-18 21:56:43 -07:00
|
|
|
|
|
|
|
return Code::Invalid;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
2023-04-03 00:55:28 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
Code parse_variable( s32 length, char const* def )
|
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_variable );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
inline
|
2023-04-18 21:56:43 -07:00
|
|
|
bool parse_type_helper( char const* func_name
|
|
|
|
, Token& name
|
2023-04-19 12:40:23 -07:00
|
|
|
, s32& left, s32& tokIDX, Array(Token)& tokens
|
2023-04-18 21:56:43 -07:00
|
|
|
, s32& num_specifiers, SpecifierT* specs_found
|
2023-04-18 19:47:59 -07:00
|
|
|
, Code& array_expr
|
|
|
|
)
|
|
|
|
{
|
2023-04-19 12:40:23 -07:00
|
|
|
# pragma push_macro( "eat" )
|
|
|
|
# undef eat
|
|
|
|
# define eat( Type_ ) \
|
|
|
|
if ( curr_tok.Type != Type_ ) \
|
|
|
|
{ \
|
|
|
|
String token_str = string_make_length( g_allocator, curr_tok.Text, curr_tok.Length ); \
|
|
|
|
log_failure( "gen::" txt(context) ": expected %s, got %s", txt(Type_), curr_tok.Type ); \
|
|
|
|
return Code::Invalid; \
|
|
|
|
} \
|
|
|
|
tokIDX++; \
|
|
|
|
left--
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
while ( left && tok_is_specifier( curr_tok ) )
|
2023-04-18 19:47:59 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
SpecifierT spec = ESpecifier::to_type( curr_tok.Text, curr_tok.Length );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( spec != ESpecifier::Const
|
|
|
|
&& spec < ESpecifier::Type_Signed )
|
|
|
|
{
|
|
|
|
log_failure( "%s: Error, invalid specifier used in type definition: %s", func_name, curr_tok.Text );
|
|
|
|
return false;
|
|
|
|
}
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
specs_found[num_specifiers] = spec;
|
|
|
|
num_specifiers++;
|
|
|
|
eat( curr_tok.Type );
|
|
|
|
}
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( left == 0 )
|
2023-04-18 19:47:59 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
log_failure( "%s: Error, unexpected end of type definition", func_name );
|
|
|
|
return false;
|
2023-04-18 19:47:59 -07:00
|
|
|
}
|
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
if ( curr_tok.Type == TokType::Decl_Class
|
|
|
|
|| curr_tok.Type == TokType::Decl_Struct )
|
|
|
|
{
|
|
|
|
name = curr_tok;
|
|
|
|
eat( curr_tok.Type );
|
|
|
|
|
|
|
|
name.Length += curr_tok.Length;
|
|
|
|
eat( TokType::Identifier );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
name = curr_tok;
|
|
|
|
eat( TokType::Identifier );
|
|
|
|
}
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
while ( left && tok_is_specifier( curr_tok ) )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
SpecifierT spec = ESpecifier::to_type( curr_tok.Text, curr_tok.Length );
|
|
|
|
|
|
|
|
if ( spec != ESpecifier::Const
|
|
|
|
&& spec != ESpecifier::Ref
|
|
|
|
&& spec != ESpecifier::RValue
|
|
|
|
&& spec < ESpecifier::Type_Signed )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
log_failure( "%s: Error, invalid specifier used in type definition: %s", func_name, curr_tok.Text );
|
2023-04-11 22:24:43 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
specs_found[num_specifiers] = spec;
|
|
|
|
num_specifiers++;
|
|
|
|
eat( curr_tok.Type );
|
2023-04-11 22:24:43 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( left && curr_tok.Type == TokType::BraceSquare_Open )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
eat( TokType::BraceSquare_Open );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( left == 0 )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
log_failure( "%s: Error, unexpected end of type definition", func_name );
|
|
|
|
return false;
|
2023-04-11 22:24:43 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( curr_tok.Type == TokType::BraceSquare_Close )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
eat( TokType::BraceSquare_Close );
|
|
|
|
return true;
|
|
|
|
}
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Token
|
|
|
|
untyped_tok = curr_tok;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
while ( left && curr_tok.Type != TokType::BraceSquare_Close )
|
|
|
|
{
|
|
|
|
untyped_tok.Length += curr_tok.Length;
|
2023-04-11 22:24:43 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
array_expr = untyped_str( untyped_tok.Length, untyped_tok.Text );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( left == 0 )
|
|
|
|
{
|
|
|
|
log_failure( "%s: Error, unexpected end of type definition", func_name );
|
|
|
|
return false;
|
|
|
|
}
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( curr_tok.Type != TokType::BraceSquare_Close )
|
|
|
|
{
|
|
|
|
log_failure( "%s: Error, expected ] in type definition", func_name );
|
|
|
|
return false;
|
|
|
|
}
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
eat( TokType::BraceSquare_Close );
|
|
|
|
}
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
return true;
|
2023-04-19 12:40:23 -07:00
|
|
|
# pragma pop_macro( "eat" )
|
2023-04-18 21:56:43 -07:00
|
|
|
}
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Code parse_type( s32 length, char const* def )
|
|
|
|
{
|
|
|
|
check_parse_args( parse_type, length, def );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Array(Token) tokens = lex( length, def );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( tokens == nullptr )
|
|
|
|
{
|
|
|
|
log_failure( "gen::parse_type: no tokens found for provided definition" );
|
|
|
|
return Code::Invalid;
|
2023-04-11 22:24:43 -07:00
|
|
|
}
|
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
s32 left = array_count( tokens );
|
|
|
|
s32 tokIDX = 0;
|
2023-04-18 21:56:43 -07:00
|
|
|
|
|
|
|
Token* name = nullptr;
|
|
|
|
Code array_expr = { nullptr };
|
2023-04-11 22:24:43 -07:00
|
|
|
|
|
|
|
SpecifierT specs_found[16] { ESpecifier::Num_Specifiers };
|
2023-04-19 12:40:23 -07:00
|
|
|
s32 num_specifiers = 0;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
bool helper_result = parse_type_helper( txt(parse_type)
|
|
|
|
, * name
|
2023-04-19 12:40:23 -07:00
|
|
|
, left, tokIDX, tokens
|
2023-04-11 22:24:43 -07:00
|
|
|
, num_specifiers, specs_found
|
|
|
|
, array_expr
|
|
|
|
);
|
|
|
|
|
|
|
|
if ( ! helper_result )
|
|
|
|
return Code::Invalid;
|
|
|
|
|
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Typename;
|
2023-04-18 21:56:43 -07:00
|
|
|
result->Name = get_cached_string( name->Text, name->Length );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
if (num_specifiers)
|
|
|
|
{
|
|
|
|
Code specifiers = def_specifiers( num_specifiers, specs_found );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
result->add_entry( specifiers );
|
|
|
|
}
|
2023-04-11 22:24:43 -07:00
|
|
|
|
|
|
|
if ( array_expr )
|
|
|
|
result->add_entry( array_expr );
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-11 22:24:43 -07:00
|
|
|
Code parse_typedef( s32 length, char const* def )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-19 12:40:23 -07:00
|
|
|
# define context parse_typedef
|
2023-04-18 21:56:43 -07:00
|
|
|
check_parse_args( parse_typedef, length, def );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Array(Token) tokens = lex( length, def );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( tokens == nullptr )
|
2023-04-11 22:24:43 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
log_failure( "gen::parse_typedef: no tokens found for provided definition" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
s32 left = array_count( tokens );
|
|
|
|
s32 tokIDX = 0;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Token* name = nullptr;
|
|
|
|
Code array_expr = { nullptr };
|
|
|
|
Code type = { nullptr };
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
SpecifierT specs_found[16] { ESpecifier::Num_Specifiers };
|
|
|
|
s32 num_specifiers = 0;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
eat( TokType::Decl_Typedef );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
bool helper_result = parse_type_helper( txt(parse_typedef)
|
|
|
|
, * name
|
2023-04-19 12:40:23 -07:00
|
|
|
, left, tokIDX, tokens
|
2023-04-18 21:56:43 -07:00
|
|
|
, num_specifiers, specs_found
|
|
|
|
, array_expr
|
|
|
|
);
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( ! helper_result )
|
|
|
|
return Code::Invalid;
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
type = def_type( name->Length, name->Text, def_specifiers( num_specifiers, specs_found ) );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( curr_tok.Type != TokType::Identifier )
|
|
|
|
{
|
|
|
|
log_failure( "gen::parse_typedef: Error, expected identifier for typedef" );
|
2023-04-11 22:24:43 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-18 21:56:43 -07:00
|
|
|
|
|
|
|
name = tokens;
|
|
|
|
eat( TokType::Identifier );
|
|
|
|
|
|
|
|
eat( TokType::Statement_End );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
|
|
|
using namespace ECode;
|
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = Typedef;
|
2023-04-18 21:56:43 -07:00
|
|
|
result->Name = get_cached_string( name->Text, name->Length );
|
2023-04-11 22:24:43 -07:00
|
|
|
|
|
|
|
result->add_entry( type );
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
2023-04-19 12:40:23 -07:00
|
|
|
# undef context
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
Code parse_using( s32 length, char const* def )
|
|
|
|
{
|
2023-04-19 12:40:23 -07:00
|
|
|
# define context parse_using
|
|
|
|
check_parse_args( parse_using, length, def );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Array(Token) tokens = lex( length, def );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( tokens == nullptr )
|
2023-04-18 19:47:59 -07:00
|
|
|
{
|
2023-04-19 12:40:23 -07:00
|
|
|
log_failure( "gen::parse_using: no tokens found for provided definition" );
|
2023-04-18 19:47:59 -07:00
|
|
|
return Code::Invalid;
|
|
|
|
}
|
|
|
|
|
2023-04-19 12:40:23 -07:00
|
|
|
s32 left = array_count( tokens );
|
|
|
|
s32 tokIDX = 0;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
SpecifierT specs_found[16] { ESpecifier::Num_Specifiers };
|
|
|
|
s32 num_specifiers = 0;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
Token* name = nullptr;
|
|
|
|
Code array_expr = { nullptr };
|
|
|
|
Code type = { nullptr };
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
bool is_namespace = false;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
eat( TokType::Decl_Using );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( curr_tok.Type == TokType::Decl_Namespace )
|
2023-04-18 19:47:59 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
is_namespace = true;
|
|
|
|
eat( TokType::Decl_Namespace );
|
2023-04-18 19:47:59 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
eat( TokType::Identifier );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( curr_tok.Type != TokType::Statement_End )
|
2023-04-18 19:47:59 -07:00
|
|
|
{
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( is_namespace )
|
|
|
|
{
|
|
|
|
log_failure( "gen::parse_using: Error, expected ; after identifier for a using namespace declaration" );
|
|
|
|
return Code::Invalid;
|
|
|
|
}
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
bool helper_result = parse_type_helper( txt(parse_using)
|
|
|
|
, * name
|
2023-04-19 12:40:23 -07:00
|
|
|
, left, tokIDX, tokens
|
2023-04-18 19:47:59 -07:00
|
|
|
, num_specifiers, specs_found
|
|
|
|
, array_expr
|
|
|
|
);
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
if ( ! helper_result )
|
2023-04-18 19:47:59 -07:00
|
|
|
return Code::Invalid;
|
2023-04-18 21:56:43 -07:00
|
|
|
|
|
|
|
type = def_type( name->Length, name->Text, def_specifiers( num_specifiers, specs_found ) );
|
2023-04-18 19:47:59 -07:00
|
|
|
}
|
2023-04-18 21:56:43 -07:00
|
|
|
|
|
|
|
eat( TokType::Statement_End );
|
|
|
|
|
|
|
|
using namespace ECode;
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
Code
|
|
|
|
result = make_code();
|
|
|
|
result->Type = is_namespace ? Using : Using_Namespace;
|
2023-04-18 21:56:43 -07:00
|
|
|
result->Name = get_cached_string( name->Text, name->Length );
|
2023-04-18 19:47:59 -07:00
|
|
|
|
|
|
|
result->add_entry( type );
|
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
2023-04-19 12:40:23 -07:00
|
|
|
# undef context
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 parse_classes( s32 length, char const* class_defs, Code* out_class_codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_classes );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 parse_enums( s32 length, char const* enum_defs, Code* out_enum_codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_enums );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 parse_friends( s32 length, char const* friend_defs, Code* out_friend_codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_friends );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
s32 parse_functions ( s32 length, char const* fn_defs, Code* out_fn_codes )
|
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_functions );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
s32 parse_namespaces( s32 length, char const* namespace_defs, Code* out_namespaces_codes )
|
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_namespaces );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 parse_operators( s32 length, char const* operator_defs, Code* out_operator_codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_operators );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 parse_structs( s32 length, char const* struct_defs, Code* out_struct_codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_structs );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 parse_variables( s32 length, char const* vars_def, Code* out_var_codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_variables );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 parse_typedefs( s32 length, char const* typedef_def, Code* out_typedef_codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_typedefs );
|
2023-04-07 21:29:09 -07:00
|
|
|
}
|
|
|
|
|
2023-04-09 21:38:47 -07:00
|
|
|
s32 parse_usings( s32 length, char const* usings_def, Code* out_using_codes )
|
2023-04-07 21:29:09 -07:00
|
|
|
{
|
2023-04-09 21:38:47 -07:00
|
|
|
not_implemented( parse_usings );
|
2023-04-02 09:35:14 -07:00
|
|
|
}
|
2023-04-18 19:47:59 -07:00
|
|
|
// End GEN_FEATURE_PARSING
|
|
|
|
# endif
|
2023-04-05 00:03:56 -07:00
|
|
|
# pragma endregion Parsing Constructors
|
|
|
|
|
|
|
|
# pragma region Untyped Constructors
|
2023-04-09 21:38:47 -07:00
|
|
|
Code untyped_str( s32 length, char const* str )
|
2023-04-05 00:03:56 -07:00
|
|
|
{
|
2023-04-05 23:21:23 -07:00
|
|
|
Code
|
2023-04-05 00:03:56 -07:00
|
|
|
result = make_code();
|
2023-04-09 21:38:47 -07:00
|
|
|
result->Name = get_cached_string( str, length );
|
2023-04-05 00:03:56 -07:00
|
|
|
result->Type = ECode::Untyped;
|
|
|
|
result->Content = result->Name;
|
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
result.lock();
|
2023-04-05 00:03:56 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code untyped_fmt(char const* fmt, ...)
|
|
|
|
{
|
2023-04-05 23:21:23 -07:00
|
|
|
local_persist thread_local
|
2023-04-05 00:03:56 -07:00
|
|
|
char buf[ZPL_PRINTF_MAXLEN] = { 0 };
|
|
|
|
|
|
|
|
va_list va;
|
|
|
|
va_start(va, fmt);
|
2023-04-19 13:57:59 -07:00
|
|
|
sw length = str_fmt_va(buf, ZPL_PRINTF_MAXLEN, fmt, va);
|
2023-04-05 00:03:56 -07:00
|
|
|
va_end(va);
|
2023-04-05 23:21:23 -07:00
|
|
|
|
|
|
|
Code
|
2023-04-05 00:03:56 -07:00
|
|
|
result = make_code();
|
2023-04-09 21:38:47 -07:00
|
|
|
result->Name = get_cached_string( fmt, strnlen(fmt, MaxNameLength) );
|
2023-04-05 00:03:56 -07:00
|
|
|
result->Type = ECode::Untyped;
|
2023-04-09 21:38:47 -07:00
|
|
|
result->Content = get_cached_string( buf, length );
|
2023-04-05 00:03:56 -07:00
|
|
|
|
2023-04-18 21:56:43 -07:00
|
|
|
result.lock();
|
2023-04-05 00:03:56 -07:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
Code untyped_token_fmt( char const* fmt, s32 num_tokens, ... )
|
|
|
|
{
|
2023-04-05 23:21:23 -07:00
|
|
|
local_persist thread_local
|
2023-04-05 00:03:56 -07:00
|
|
|
char buf[ZPL_PRINTF_MAXLEN] = { 0 };
|
|
|
|
|
|
|
|
va_list va;
|
|
|
|
va_start(va, fmt);
|
2023-04-09 21:38:47 -07:00
|
|
|
sw length = token_fmt_va(buf, ZPL_PRINTF_MAXLEN, fmt, num_tokens, va);
|
2023-04-05 00:03:56 -07:00
|
|
|
va_end(va);
|
|
|
|
|
|
|
|
Code
|
2023-04-09 21:38:47 -07:00
|
|
|
result = make_code();
|
2023-04-19 13:57:59 -07:00
|
|
|
result->Name = get_cached_string( fmt, str_len(fmt, MaxNameLength) );
|
2023-04-09 21:38:47 -07:00
|
|
|
result->Type = ECode::Untyped;
|
|
|
|
result->Content = get_cached_string( buf, length );
|
2023-04-05 00:03:56 -07:00
|
|
|
|
|
|
|
result.lock();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
# pragma endregion Untyped Constructors
|
2023-04-06 16:19:11 -07:00
|
|
|
#pragma endregion Gen Interface
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
#pragma region Builder
|
2023-04-01 22:07:44 -07:00
|
|
|
void Builder::print( Code code )
|
|
|
|
{
|
2023-04-10 18:33:06 -07:00
|
|
|
Buffer = string_append_fmt( Buffer, "%s\n\n", code.to_string() );
|
2023-04-01 22:07:44 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
bool Builder::open( char const* path )
|
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
FileError error = file_open_mode( & File, EFileMode_WRITE, path );
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-09 10:59:39 -07:00
|
|
|
if ( error != EFileError_NONE )
|
2023-04-01 22:07:44 -07:00
|
|
|
{
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure( "gen::File::open - Could not open file: %s", path);
|
2023-04-01 22:07:44 -07:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Buffer = string_make( g_allocator, "" );
|
2023-04-05 23:21:23 -07:00
|
|
|
|
2023-04-01 22:07:44 -07:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Builder::write()
|
|
|
|
{
|
|
|
|
bool result = file_write( & File, Buffer, string_length(Buffer) );
|
|
|
|
|
|
|
|
if ( result == false )
|
2023-04-09 10:59:39 -07:00
|
|
|
log_failure("gen::File::write - Failed to write to file: %s", file_name( & File ) );
|
2023-04-01 19:21:46 -07:00
|
|
|
|
2023-04-02 08:53:15 -07:00
|
|
|
// file_seek( & File, 0 );
|
2023-04-01 22:07:44 -07:00
|
|
|
file_close( & File );
|
|
|
|
}
|
2023-04-07 21:29:09 -07:00
|
|
|
#pragma endregion Builder
|
|
|
|
|
2023-04-18 19:47:59 -07:00
|
|
|
#pragma region File Lexer
|
|
|
|
// The Editor and Scanner require this lexer.
|
|
|
|
#if defined(GEN_FEATURE_EDITOR) || defined(GEN_FEATURE_SCANNER)
|
|
|
|
/*
|
|
|
|
This is a more robust lexer than the ones used for the lexer in the parse constructors interface.
|
|
|
|
Its needed to scan a C++ file and have awareness to skip content unsupported by the library.
|
|
|
|
*/
|
|
|
|
#endif
|
|
|
|
#pragma endregion File Lexer
|
|
|
|
|
2023-04-07 21:29:09 -07:00
|
|
|
#pragma region Editor
|
2023-04-18 19:47:59 -07:00
|
|
|
#ifdef GEN_FEATURE_EDITOR
|
|
|
|
#endif
|
2023-04-07 21:29:09 -07:00
|
|
|
#pragma endregion Editor
|
|
|
|
|
|
|
|
#pragma region Scanner
|
2023-04-18 19:47:59 -07:00
|
|
|
#ifdef GEN_FEATURE_SCANNER
|
|
|
|
#endif
|
2023-04-07 21:29:09 -07:00
|
|
|
#pragma endregion Scanner
|
2023-04-01 19:21:46 -07:00
|
|
|
}
|
2023-04-19 12:40:23 -07:00
|
|
|
// End: gen_time
|
2023-04-01 22:07:44 -07:00
|
|
|
#endif
|