2024-11-30 13:50:53 -08:00
|
|
|
#define GEN_DEFINE_LIBRARY_CODE_CONSTANTS
|
|
|
|
#define GEN_ENFORCE_STRONG_CODE_TYPES
|
|
|
|
#define GEN_EXPOSE_BACKEND
|
2024-12-01 02:30:37 -08:00
|
|
|
#define GEN_SUPPORT_CPP_MEMBER_FEATURES 1
|
2024-12-01 18:59:43 -08:00
|
|
|
#define GEN_SUPPORT_CPP_REFERENCES 1
|
2024-11-30 20:38:27 -08:00
|
|
|
#include "../project/gen.cpp"
|
2024-11-30 13:50:53 -08:00
|
|
|
|
|
|
|
#include "helpers/push_ignores.inline.hpp"
|
|
|
|
#include "helpers/helper.hpp"
|
|
|
|
|
|
|
|
GEN_NS_BEGIN
|
|
|
|
#include "dependencies/parsing.cpp"
|
|
|
|
GEN_NS_END
|
|
|
|
|
|
|
|
#include "auxillary/builder.hpp"
|
|
|
|
#include "auxillary/builder.cpp"
|
|
|
|
#include "auxillary/scanner.hpp"
|
|
|
|
|
|
|
|
#include <cstdlib> // for system()
|
|
|
|
|
2024-11-30 20:48:14 -08:00
|
|
|
#include "components/memory.fixed_arena.hpp"
|
2024-11-30 20:38:27 -08:00
|
|
|
#include "components/misc.hpp"
|
2024-11-30 22:40:31 -08:00
|
|
|
#include "components/containers.array.hpp"
|
|
|
|
#include "components/containers.hashtable.hpp"
|
2024-11-30 20:38:27 -08:00
|
|
|
|
2024-11-30 13:50:53 -08:00
|
|
|
using namespace gen;
|
|
|
|
|
2024-11-30 15:54:19 -08:00
|
|
|
constexpr char const* generation_notice =
|
2024-12-04 23:53:14 -08:00
|
|
|
"// This file was generated automatially by gencpp's c_library.cpp "
|
2024-11-30 15:54:19 -08:00
|
|
|
"(See: https://github.com/Ed94/gencpp)\n\n";
|
|
|
|
|
|
|
|
constexpr StrC roll_own_dependencies_guard_start = txt(R"(
|
|
|
|
//! If its desired to roll your own dependencies, define GEN_ROLL_OWN_DEPENDENCIES before including this file.
|
|
|
|
// Dependencies are derived from the c-zpl library: https://github.com/zpl-c/zpl
|
|
|
|
#ifndef GEN_ROLL_OWN_DEPENDENCIES
|
|
|
|
)");
|
|
|
|
|
|
|
|
constexpr StrC roll_own_dependencies_guard_end = txt(R"(
|
|
|
|
// GEN_ROLL_OWN_DEPENDENCIES
|
|
|
|
#endif
|
|
|
|
)");
|
|
|
|
|
|
|
|
constexpr StrC implementation_guard_start = txt(R"(
|
|
|
|
#pragma region GENCPP IMPLEMENTATION GUARD
|
|
|
|
#if defined(GEN_IMPLEMENTATION) && ! defined(GEN_IMPLEMENTED)
|
|
|
|
# define GEN_IMPLEMENTED
|
|
|
|
)");
|
|
|
|
|
|
|
|
constexpr StrC implementation_guard_end = txt(R"(
|
|
|
|
#endif
|
|
|
|
#pragma endregion GENCPP IMPLEMENTATION GUARD
|
|
|
|
)");
|
|
|
|
|
2024-11-30 13:54:03 -08:00
|
|
|
void format_file( char const* path )
|
|
|
|
{
|
2024-12-04 08:30:54 -08:00
|
|
|
String resolved_path = String::make(GlobalAllocator, to_strc_from_c_str(path));
|
2024-11-30 13:50:53 -08:00
|
|
|
|
2024-11-30 13:54:03 -08:00
|
|
|
String style_arg = String::make(GlobalAllocator, txt("-style=file:"));
|
|
|
|
style_arg.append("../scripts/.clang-format ");
|
|
|
|
|
|
|
|
// Need to execute clang format on the generated file to get it to match the original.
|
|
|
|
#define clang_format "clang-format "
|
|
|
|
#define cf_format_inplace "-i "
|
|
|
|
#define cf_verbose "-verbose "
|
|
|
|
String command = String::make( GlobalAllocator, clang_format );
|
|
|
|
command.append( cf_format_inplace );
|
|
|
|
command.append( cf_verbose );
|
|
|
|
command.append( style_arg );
|
|
|
|
command.append( resolved_path );
|
|
|
|
log_fmt("\tRunning clang-format on file:\n");
|
|
|
|
system( command );
|
|
|
|
log_fmt("\tclang-format finished reformatting.\n");
|
|
|
|
#undef cf_cmd
|
|
|
|
#undef cf_format_inplace
|
|
|
|
#undef cf_style
|
|
|
|
#undef cf_verbse
|
|
|
|
}
|
|
|
|
|
|
|
|
Code dump_to_scratch_and_retireve( Code code )
|
|
|
|
{
|
|
|
|
Builder ecode_file_temp = Builder::open("gen/scratch.hpp");
|
|
|
|
ecode_file_temp.print(code);
|
|
|
|
ecode_file_temp.write();
|
|
|
|
format_file("gen/scratch.hpp");
|
|
|
|
Code result = scan_file( "gen/scratch.hpp" );
|
|
|
|
remove("gen/scratch.hpp");
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2024-11-30 20:38:27 -08:00
|
|
|
CodeBody parse_file( const char* path )
|
|
|
|
{
|
|
|
|
FileContents file = file_read_contents( GlobalAllocator, true, path );
|
|
|
|
CodeBody code = parse_global_body( { file.size, (char const*)file.data } );
|
2024-12-01 09:48:58 -08:00
|
|
|
log_fmt("\nParsed: %s\n", path);
|
2024-11-30 20:38:27 -08:00
|
|
|
return code;
|
|
|
|
}
|
|
|
|
|
2024-11-30 13:54:03 -08:00
|
|
|
int gen_main()
|
|
|
|
{
|
|
|
|
#define project_dir "../project/"
|
|
|
|
gen::init();
|
|
|
|
|
2024-12-04 12:00:37 -08:00
|
|
|
PreprocessorDefines.append(txt("GEN_API_C_BEGIN"));
|
|
|
|
PreprocessorDefines.append(txt("GEN_API_C_END"));
|
2024-12-05 00:41:08 -08:00
|
|
|
PreprocessorDefines.append(txt("HashTable("));
|
2024-12-04 12:00:37 -08:00
|
|
|
|
2024-11-30 20:38:27 -08:00
|
|
|
Code push_ignores = scan_file( project_dir "helpers/push_ignores.inline.hpp" );
|
|
|
|
Code pop_ignores = scan_file( project_dir "helpers/pop_ignores.inline.hpp" );
|
|
|
|
Code c_library_header_start = scan_file( "components/header_start.hpp" );
|
2024-11-30 15:54:19 -08:00
|
|
|
|
|
|
|
Builder
|
2024-11-30 20:38:27 -08:00
|
|
|
header = Builder::open( "gen/gen.h" );
|
2024-11-30 15:54:19 -08:00
|
|
|
header.print_fmt( generation_notice );
|
|
|
|
header.print_fmt("#pragma once\n\n");
|
|
|
|
header.print( push_ignores );
|
|
|
|
|
|
|
|
// Headers
|
|
|
|
{
|
2024-11-30 20:38:27 -08:00
|
|
|
header.print( c_library_header_start );
|
|
|
|
|
|
|
|
Code platform = scan_file( project_dir "dependencies/platform.hpp" );
|
|
|
|
Code macros = scan_file( project_dir "dependencies/macros.hpp" );
|
|
|
|
Code basic_types = scan_file( project_dir "dependencies/basic_types.hpp" );
|
|
|
|
Code debug = scan_file( project_dir "dependencies/debug.hpp" );
|
|
|
|
|
2024-11-30 22:40:31 -08:00
|
|
|
header.print_fmt( roll_own_dependencies_guard_start );
|
|
|
|
header.print( platform );
|
|
|
|
header.print_fmt( "\nGEN_NS_BEGIN\n" );
|
|
|
|
|
|
|
|
header.print( macros );
|
|
|
|
header.print( basic_types );
|
|
|
|
header.print( debug );
|
|
|
|
|
2024-11-30 20:38:27 -08:00
|
|
|
CodeBody parsed_memory = parse_file( project_dir "dependencies/memory.hpp" );
|
2024-12-03 17:21:08 -08:00
|
|
|
CodeBody memory = def_body(CT_Global_Body);
|
2024-12-04 08:01:53 -08:00
|
|
|
|
2024-11-30 20:38:27 -08:00
|
|
|
for ( Code entry = parsed_memory.begin(); entry != parsed_memory.end(); ++ entry )
|
|
|
|
{
|
|
|
|
switch (entry->Type)
|
|
|
|
{
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Using:
|
2024-11-30 20:38:27 -08:00
|
|
|
{
|
2024-12-04 12:00:37 -08:00
|
|
|
log_fmt("REPLACE THIS MANUALLY: %SC\n", entry->Name);
|
2024-12-01 23:38:55 -08:00
|
|
|
CodeUsing using_ver = cast(CodeUsing, entry);
|
2024-11-30 20:38:27 -08:00
|
|
|
CodeTypedef typedef_ver = def_typedef(using_ver->Name, using_ver->UnderlyingType);
|
|
|
|
|
|
|
|
memory.append(typedef_ver);
|
|
|
|
}
|
|
|
|
break;
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Function_Fwd:
|
2024-12-01 18:59:43 -08:00
|
|
|
{
|
2024-12-01 23:38:55 -08:00
|
|
|
CodeFn fn = cast(CodeFn, entry);
|
2024-12-04 08:01:53 -08:00
|
|
|
// for ( StrC id : to_rename ) if (fn->Name.is_equal(id)) {
|
|
|
|
// rename_function_to_unique_symbol(fn);
|
|
|
|
// }
|
|
|
|
memory.append(fn);
|
2024-12-01 18:59:43 -08:00
|
|
|
}
|
|
|
|
break;
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Function:
|
2024-11-30 20:38:27 -08:00
|
|
|
{
|
2024-12-01 23:38:55 -08:00
|
|
|
CodeFn fn = cast(CodeFn, entry);
|
2024-12-03 17:21:08 -08:00
|
|
|
s32 constexpr_found = fn->Specs.remove( Spec_Constexpr );
|
2024-11-30 20:38:27 -08:00
|
|
|
if (constexpr_found > -1) {
|
2024-12-02 17:20:30 -08:00
|
|
|
log_fmt("Found constexpr: %S\n", entry.to_string());
|
2024-12-03 17:21:08 -08:00
|
|
|
fn->Specs.append(Spec_Inline);
|
2024-11-30 20:38:27 -08:00
|
|
|
}
|
2024-12-04 08:01:53 -08:00
|
|
|
// for ( StrC id : to_rename ) if (fn->Name.is_equal(id)) {
|
|
|
|
// Array(CodeFn) list = * needs_selectors.get(id);
|
|
|
|
// list.append(rename_function_to_unique_symbol(fn));
|
|
|
|
// }
|
|
|
|
memory.append(fn);
|
2024-11-30 20:38:27 -08:00
|
|
|
}
|
|
|
|
break;
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Template:
|
2024-12-01 09:48:58 -08:00
|
|
|
{
|
2024-12-01 23:38:55 -08:00
|
|
|
CodeTemplate tmpl = cast(CodeTemplate, entry);
|
2024-12-01 09:48:58 -08:00
|
|
|
if ( tmpl->Declaration->Name.contains(txt("swap")))
|
|
|
|
{
|
|
|
|
CodeBody macro_swap = parse_global_body( txt(R"(
|
|
|
|
#define swap( a, b ) \
|
|
|
|
do \
|
|
|
|
{ \
|
|
|
|
typeof( a ) temp = ( a ); \
|
|
|
|
( a ) = ( b ); \
|
|
|
|
( b ) = temp; \
|
|
|
|
} while ( 0 )
|
|
|
|
)"
|
|
|
|
));
|
|
|
|
memory.append(macro_swap);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Class:
|
|
|
|
case CT_Struct:
|
2024-11-30 20:38:27 -08:00
|
|
|
{
|
2024-12-02 17:20:30 -08:00
|
|
|
CodeBody body = cast(CodeBody, entry->Body);
|
2024-11-30 20:38:27 -08:00
|
|
|
CodeBody new_body = def_body( entry->Body->Type );
|
|
|
|
for ( Code body_entry = body.begin(); body_entry != body.end(); ++ body_entry ) switch
|
|
|
|
(body_entry->Type) {
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Preprocess_If:
|
2024-11-30 20:38:27 -08:00
|
|
|
{
|
2024-12-04 23:53:14 -08:00
|
|
|
ignore_preprocess_cond_block(txt("GEN_SUPPORT_CPP_MEMBER_FEATURES"), body_entry, body, new_body );
|
2024-11-30 20:38:27 -08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
new_body.append(body_entry);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2024-12-02 17:20:30 -08:00
|
|
|
entry->Body = new_body;
|
2024-11-30 20:38:27 -08:00
|
|
|
memory.append(entry);
|
|
|
|
}
|
|
|
|
break;
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Preprocess_If:
|
2024-11-30 20:38:27 -08:00
|
|
|
{
|
2024-12-04 23:53:14 -08:00
|
|
|
b32 found = ignore_preprocess_cond_block(txt("GEN_SUPPORT_CPP_MEMBER_FEATURES"), entry, parsed_memory, memory );
|
2024-12-01 09:48:58 -08:00
|
|
|
if (found) break;
|
|
|
|
|
2024-12-04 23:53:14 -08:00
|
|
|
found = ignore_preprocess_cond_block(txt("GEN_SUPPORT_CPP_REFERENCES"), entry, parsed_memory, memory );
|
2024-12-04 08:01:53 -08:00
|
|
|
if (found) break;
|
|
|
|
|
2024-12-01 09:48:58 -08:00
|
|
|
memory.append(entry);
|
2024-11-30 22:40:31 -08:00
|
|
|
}
|
|
|
|
break;
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Preprocess_IfDef:
|
2024-11-30 22:40:31 -08:00
|
|
|
{
|
2024-12-04 23:53:14 -08:00
|
|
|
b32 found = ignore_preprocess_cond_block(txt("GEN_INTELLISENSE_DIRECTIVES"), entry, parsed_memory, memory );
|
2024-12-01 09:48:58 -08:00
|
|
|
if (found) break;
|
|
|
|
|
|
|
|
memory.append(entry);
|
2024-11-30 20:38:27 -08:00
|
|
|
}
|
|
|
|
break;
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Preprocess_Pragma:
|
2024-11-30 20:38:27 -08:00
|
|
|
{
|
2024-12-04 08:01:53 -08:00
|
|
|
CodePragma pragma = cast(CodePragma, entry);
|
|
|
|
// if (pragma->Content.starts_with(txt("region Memory"))) {
|
|
|
|
// memory.append(generic_test);
|
|
|
|
// break;
|
|
|
|
// }
|
|
|
|
|
2024-12-01 09:48:58 -08:00
|
|
|
b32 found = swap_pragma_region_implementation( txt("FixedArena"), gen_fixed_arenas, entry, memory);
|
|
|
|
if (found) break;
|
|
|
|
|
|
|
|
memory.append(entry);
|
2024-11-30 20:38:27 -08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
default: {
|
|
|
|
memory.append(entry);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2024-12-04 08:01:53 -08:00
|
|
|
|
2024-12-01 09:48:58 -08:00
|
|
|
header.print( dump_to_scratch_and_retireve(memory) );
|
2024-11-30 22:40:31 -08:00
|
|
|
|
|
|
|
Code string_ops = scan_file( project_dir "dependencies/string_ops.hpp" );
|
2024-12-04 23:53:14 -08:00
|
|
|
header.print( string_ops );
|
2024-11-30 22:40:31 -08:00
|
|
|
|
|
|
|
CodeBody printing_parsed = parse_file( project_dir "dependencies/printing.hpp" );
|
2024-12-03 17:21:08 -08:00
|
|
|
CodeBody printing = def_body(CT_Global_Body);
|
2024-11-30 22:40:31 -08:00
|
|
|
for ( Code entry = printing_parsed.begin(); entry != printing_parsed.end(); ++ entry )
|
|
|
|
{
|
|
|
|
switch (entry->Type)
|
|
|
|
{
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Preprocess_IfDef:
|
2024-11-30 22:40:31 -08:00
|
|
|
{
|
2024-12-04 23:53:14 -08:00
|
|
|
b32 found = ignore_preprocess_cond_block(txt("GEN_INTELLISENSE_DIRECTIVES"), entry, printing_parsed, printing );
|
2024-12-01 09:48:58 -08:00
|
|
|
if (found) break;
|
|
|
|
|
|
|
|
printing.append(entry);
|
2024-11-30 22:40:31 -08:00
|
|
|
}
|
2024-12-01 09:48:58 -08:00
|
|
|
break;
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Variable:
|
2024-12-01 09:48:58 -08:00
|
|
|
{
|
2024-12-04 08:30:54 -08:00
|
|
|
if ( strc_contains(entry->Name, txt("Msg_Invalid_Value")))
|
2024-12-01 09:48:58 -08:00
|
|
|
{
|
|
|
|
CodeDefine define = def_define(entry->Name, entry->Value->Content);
|
|
|
|
printing.append(define);
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
printing.append(entry);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printing.append(entry);
|
|
|
|
break;
|
2024-11-30 22:40:31 -08:00
|
|
|
}
|
2024-12-01 09:48:58 -08:00
|
|
|
}
|
2024-12-04 23:53:14 -08:00
|
|
|
header.print(dump_to_scratch_and_retireve(printing));
|
2024-11-30 22:40:31 -08:00
|
|
|
|
2024-12-03 17:21:08 -08:00
|
|
|
CodeBody containers = def_body(CT_Global_Body);
|
2024-12-01 09:48:58 -08:00
|
|
|
{
|
|
|
|
containers.append( def_pragma(code(region Containers)));
|
|
|
|
|
|
|
|
containers.append( gen_array_base() );
|
|
|
|
containers.append( gen_hashtable_base() );
|
|
|
|
|
2024-12-05 00:41:08 -08:00
|
|
|
containers.append(fmt_newline);
|
|
|
|
|
|
|
|
CodeBody array_ssize = gen_array(txt("ssize"), txt("Array_ssize"));
|
|
|
|
containers.append(array_ssize);
|
|
|
|
|
2024-12-01 09:48:58 -08:00
|
|
|
containers.append( def_pragma(code(endregion Containers)));
|
2024-11-30 22:40:31 -08:00
|
|
|
}
|
2024-12-04 23:53:14 -08:00
|
|
|
header.print(fmt_newline);
|
|
|
|
header.print(dump_to_scratch_and_retireve(containers));
|
2024-11-30 22:40:31 -08:00
|
|
|
|
2024-12-01 09:48:58 -08:00
|
|
|
Code hashing = scan_file( project_dir "dependencies/hashing.hpp" );
|
2024-12-04 23:53:14 -08:00
|
|
|
header.print( hashing );
|
2024-11-30 22:40:31 -08:00
|
|
|
|
2024-12-01 09:48:58 -08:00
|
|
|
CodeBody parsed_strings = parse_file( project_dir "dependencies/strings.hpp" );
|
2024-12-03 17:21:08 -08:00
|
|
|
CodeBody strings = def_body(CT_Global_Body);
|
2024-12-01 09:48:58 -08:00
|
|
|
for ( Code entry = parsed_strings.begin(); entry != parsed_strings.end(); ++ entry )
|
2024-11-30 22:40:31 -08:00
|
|
|
{
|
2024-12-01 09:48:58 -08:00
|
|
|
switch (entry->Type)
|
2024-11-30 22:40:31 -08:00
|
|
|
{
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Preprocess_If:
|
2024-12-01 10:29:16 -08:00
|
|
|
{
|
2024-12-04 08:01:53 -08:00
|
|
|
CodePreprocessCond cond = cast(CodePreprocessCond, entry);
|
|
|
|
if (cond->Content.starts_with(txt("GEN_COMPILER_C || ! GEN_SUPPORT_CPP_MEMBER_FEATURES")))
|
|
|
|
{
|
2024-12-04 23:53:14 -08:00
|
|
|
for (; entry != end(parsed_strings) && entry->Type != CT_Typedef; ++ entry) {}
|
|
|
|
strings.append(entry);
|
2024-12-04 08:01:53 -08:00
|
|
|
strings.append(fmt_newline);
|
|
|
|
|
|
|
|
for (; entry != end(parsed_strings) && entry->Type != CT_Preprocess_EndIf; ++ entry) {}
|
|
|
|
++ entry;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2024-12-04 23:53:14 -08:00
|
|
|
bool found = ignore_preprocess_cond_block(txt("GEN_COMPILER_CPP"), entry, parsed_strings, strings);
|
2024-12-04 08:01:53 -08:00
|
|
|
if (found) break;
|
|
|
|
|
2024-12-04 23:53:14 -08:00
|
|
|
found = ignore_preprocess_cond_block(txt("GEN_SUPPORT_CPP_REFERENCES"), entry, parsed_strings, strings );
|
2024-12-01 10:29:16 -08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Preprocess_IfDef:
|
2024-11-30 22:40:31 -08:00
|
|
|
{
|
2024-12-04 23:53:14 -08:00
|
|
|
ignore_preprocess_cond_block(txt("GEN_INTELLISENSE_DIRECTIVES"), entry, parsed_strings, strings );
|
2024-11-30 22:40:31 -08:00
|
|
|
}
|
|
|
|
break;
|
2024-12-01 09:48:58 -08:00
|
|
|
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Struct_Fwd:
|
2024-12-01 10:29:16 -08:00
|
|
|
{
|
|
|
|
if ( entry->Name.is_equal(txt("String")) )
|
|
|
|
{
|
2024-12-01 18:59:43 -08:00
|
|
|
CodeTypedef c_def = parse_typedef(code( typedef char* String; ));
|
2024-12-01 10:29:16 -08:00
|
|
|
strings.append(c_def);
|
|
|
|
strings.append(fmt_newline);
|
|
|
|
++ entry;
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
strings.append(entry);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Struct:
|
2024-12-01 18:59:43 -08:00
|
|
|
{
|
2024-12-02 17:20:30 -08:00
|
|
|
CodeBody body = cast(CodeBody, entry->Body);
|
2024-12-01 18:59:43 -08:00
|
|
|
CodeBody new_body = def_body( entry->Body->Type );
|
|
|
|
for ( Code body_entry = body.begin(); body_entry != body.end(); ++ body_entry ) switch
|
|
|
|
(body_entry->Type) {
|
2024-12-03 17:21:08 -08:00
|
|
|
case CT_Preprocess_If:
|
2024-12-01 18:59:43 -08:00
|
|
|
{
|
2024-12-04 23:53:14 -08:00
|
|
|
b32 found = ignore_preprocess_cond_block(txt("GEN_COMPILER_CPP"), body_entry, body, new_body );
|
2024-12-01 18:59:43 -08:00
|
|
|
if (found) break;
|
|
|
|
|
|
|
|
new_body.append(body_entry);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
new_body.append(body_entry);
|
|
|
|
break;
|
|
|
|
}
|
2024-12-02 17:20:30 -08:00
|
|
|
entry->Body = new_body;
|
2024-12-01 18:59:43 -08:00
|
|
|
strings.append(entry);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2024-12-05 00:41:08 -08:00
|
|
|
case CT_Typedef:
|
|
|
|
{
|
|
|
|
StrC name_string_table = txt("StringTable");
|
|
|
|
|
|
|
|
CodeTypedef td = cast(CodeTypedef, entry);
|
|
|
|
if (td->Name.contains(name_string_table))
|
|
|
|
{
|
|
|
|
CodeBody ht = gen_hashtable(name_string_table, name_string_table);
|
|
|
|
strings.append(ht);
|
|
|
|
strings.append(td);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
strings.append(td);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2024-12-01 09:48:58 -08:00
|
|
|
default:
|
|
|
|
strings.append(entry);
|
|
|
|
break;
|
2024-11-30 22:40:31 -08:00
|
|
|
}
|
|
|
|
}
|
2024-12-04 23:53:14 -08:00
|
|
|
header.print(dump_to_scratch_and_retireve(strings));
|
2024-11-30 22:40:31 -08:00
|
|
|
|
2024-12-01 10:29:16 -08:00
|
|
|
Code filesystem = scan_file( project_dir "dependencies/filesystem.hpp" );
|
|
|
|
Code timing = scan_file( project_dir "dependencies/timing.hpp" );
|
2024-12-01 18:59:43 -08:00
|
|
|
// header.print( filesystem );
|
|
|
|
// header.print( timing );
|
2024-12-01 10:29:16 -08:00
|
|
|
|
|
|
|
header.print_fmt( "\nGEN_NS_END\n" );
|
2024-12-01 09:48:58 -08:00
|
|
|
header.print_fmt( roll_own_dependencies_guard_end );
|
2024-12-01 10:29:16 -08:00
|
|
|
|
|
|
|
Code types = scan_file( project_dir "components/types.hpp" );
|
|
|
|
Code ast = scan_file( project_dir "components/ast.hpp" );
|
|
|
|
Code ast_types = scan_file( project_dir "components/ast_types.hpp" );
|
|
|
|
Code code_types = scan_file( project_dir "components/code_types.hpp" );
|
|
|
|
Code interface = scan_file( project_dir "components/interface.hpp" );
|
|
|
|
Code inlines = scan_file( project_dir "components/inlines.hpp" );
|
|
|
|
Code header_end = scan_file( project_dir "components/header_end.hpp" );
|
|
|
|
|
|
|
|
CodeBody ecode = gen_ecode ( project_dir "enums/ECode.csv" );
|
|
|
|
CodeBody eoperator = gen_eoperator ( project_dir "enums/EOperator.csv" );
|
|
|
|
CodeBody especifier = gen_especifier( project_dir "enums/ESpecifier.csv" );
|
|
|
|
CodeBody ast_inlines = gen_ast_inlines();
|
|
|
|
|
2024-12-04 21:40:51 -08:00
|
|
|
#if 0
|
2024-12-01 10:29:16 -08:00
|
|
|
header.print_fmt("#pragma region Types\n");
|
|
|
|
header.print( types );
|
|
|
|
header.print( fmt_newline );
|
|
|
|
header.print( dump_to_scratch_and_retireve( ecode ));
|
|
|
|
header.print( fmt_newline );
|
|
|
|
header.print( dump_to_scratch_and_retireve( eoperator ));
|
|
|
|
header.print( fmt_newline );
|
|
|
|
header.print( dump_to_scratch_and_retireve( especifier ));
|
|
|
|
header.print( fmt_newline );
|
|
|
|
header.print_fmt("#pragma endregion Types\n\n");
|
2024-12-01 18:59:43 -08:00
|
|
|
#endif
|
2024-11-30 15:54:19 -08:00
|
|
|
}
|
2024-11-30 13:54:03 -08:00
|
|
|
|
2024-11-30 20:38:27 -08:00
|
|
|
header.print( pop_ignores );
|
|
|
|
header.write();
|
|
|
|
|
2024-12-01 09:48:58 -08:00
|
|
|
// format_file( "gen/gen.h" );
|
2024-11-30 20:38:27 -08:00
|
|
|
|
2024-11-30 13:54:03 -08:00
|
|
|
gen::deinit();
|
|
|
|
return 0;
|
|
|
|
#undef project_dir
|
|
|
|
}
|