mirror of
https://github.com/Ed94/gencpp.git
synced 2024-12-22 15:54:45 -08:00
Bugfixes during hiatus
Found while doing some metaprogramming for day 42 of handmade hero.
This commit is contained in:
parent
3dd5482a46
commit
912cc6b538
@ -330,6 +330,7 @@
|
|||||||
<ClCompile Include="project\dependencies\strings.cpp" />
|
<ClCompile Include="project\dependencies\strings.cpp" />
|
||||||
<ClCompile Include="project\dependencies\string_ops.cpp" />
|
<ClCompile Include="project\dependencies\string_ops.cpp" />
|
||||||
<ClCompile Include="project\dependencies\timing.cpp" />
|
<ClCompile Include="project\dependencies\timing.cpp" />
|
||||||
|
<ClCompile Include="project\Example.cpp" />
|
||||||
<ClCompile Include="project\gen.cpp" />
|
<ClCompile Include="project\gen.cpp" />
|
||||||
<ClCompile Include="project\gen.dep.cpp" />
|
<ClCompile Include="project\gen.dep.cpp" />
|
||||||
<ClCompile Include="singleheader\singleheader.cpp" />
|
<ClCompile Include="singleheader\singleheader.cpp" />
|
||||||
|
@ -1125,7 +1125,10 @@ String AST::to_string()
|
|||||||
if ( bitfield_is_equal( u32, ModuleFlags, ModuleFlag::Export ))
|
if ( bitfield_is_equal( u32, ModuleFlags, ModuleFlag::Export ))
|
||||||
result.append( "export " );
|
result.append( "export " );
|
||||||
|
|
||||||
|
if ( Params )
|
||||||
result.append_fmt( "template< %S >\n%S", Params->to_string(), Declaration->to_string() );
|
result.append_fmt( "template< %S >\n%S", Params->to_string(), Declaration->to_string() );
|
||||||
|
else
|
||||||
|
result.append_fmt( "template<>\n%S", Declaration->to_string() );
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -175,6 +175,11 @@ void define_constants()
|
|||||||
#endif
|
#endif
|
||||||
# undef def_constant_code_type
|
# undef def_constant_code_type
|
||||||
|
|
||||||
|
|
||||||
|
# define def_constant_spec( Type_, ... ) \
|
||||||
|
spec_##Type_ = def_specifiers( num_args(__VA_ARGS__), __VA_ARGS__); \
|
||||||
|
spec_##Type_.set_global();
|
||||||
|
|
||||||
# pragma push_macro("forceinline")
|
# pragma push_macro("forceinline")
|
||||||
# pragma push_macro("global")
|
# pragma push_macro("global")
|
||||||
# pragma push_macro("internal")
|
# pragma push_macro("internal")
|
||||||
@ -185,11 +190,6 @@ void define_constants()
|
|||||||
# undef internal
|
# undef internal
|
||||||
# undef local_persist
|
# undef local_persist
|
||||||
# undef neverinline
|
# undef neverinline
|
||||||
|
|
||||||
# define def_constant_spec( Type_, ... ) \
|
|
||||||
spec_##Type_ = def_specifiers( num_args(__VA_ARGS__), __VA_ARGS__); \
|
|
||||||
spec_##Type_.set_global();
|
|
||||||
|
|
||||||
def_constant_spec( const, ESpecifier::Const );
|
def_constant_spec( const, ESpecifier::Const );
|
||||||
def_constant_spec( consteval, ESpecifier::Consteval );
|
def_constant_spec( consteval, ESpecifier::Consteval );
|
||||||
def_constant_spec( constexpr, ESpecifier::Constexpr );
|
def_constant_spec( constexpr, ESpecifier::Constexpr );
|
||||||
|
@ -775,6 +775,18 @@ namespace Parser
|
|||||||
|
|
||||||
if (left)
|
if (left)
|
||||||
move_forward();
|
move_forward();
|
||||||
|
|
||||||
|
if ( current == '=' )
|
||||||
|
{
|
||||||
|
token.Length++;
|
||||||
|
token.IsAssign = true;
|
||||||
|
// token.Flags |= TokFlags::Assignment;
|
||||||
|
// token.Type = TokType::Assign_Multiply;
|
||||||
|
|
||||||
|
if ( left )
|
||||||
|
move_forward();
|
||||||
|
}
|
||||||
|
|
||||||
goto FoundToken;
|
goto FoundToken;
|
||||||
}
|
}
|
||||||
case ';':
|
case ';':
|
||||||
@ -973,7 +985,14 @@ namespace Parser
|
|||||||
|
|
||||||
if ( left )
|
if ( left )
|
||||||
{
|
{
|
||||||
if ( current == '/' )
|
if ( current == '=' )
|
||||||
|
{
|
||||||
|
// token.Type = TokeType::Assign_Divide;
|
||||||
|
move_forward();
|
||||||
|
token.Length++;
|
||||||
|
token.IsAssign = true;
|
||||||
|
}
|
||||||
|
else if ( current == '/' )
|
||||||
{
|
{
|
||||||
token.Type = TokType::Comment;
|
token.Type = TokType::Comment;
|
||||||
token.Length = 2;
|
token.Length = 2;
|
||||||
@ -2820,7 +2839,7 @@ CodeOperator parse_operator_after_ret_type(
|
|||||||
if ( currtok.Text[1] == '=' )
|
if ( currtok.Text[1] == '=' )
|
||||||
op = Assign_Add;
|
op = Assign_Add;
|
||||||
|
|
||||||
if ( currtok.Text[1] == '+' )
|
else if ( currtok.Text[1] == '+' )
|
||||||
op = Increment;
|
op = Increment;
|
||||||
|
|
||||||
else
|
else
|
||||||
@ -2840,7 +2859,7 @@ CodeOperator parse_operator_after_ret_type(
|
|||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
if ( currtok.Text[1] == '=' )
|
else if ( currtok.Text[1] == '=' )
|
||||||
op = Assign_Subtract;
|
op = Assign_Subtract;
|
||||||
|
|
||||||
else
|
else
|
||||||
@ -3196,6 +3215,12 @@ CodeParam parse_params( bool use_template_capture )
|
|||||||
Context.pop();
|
Context.pop();
|
||||||
return { nullptr };
|
return { nullptr };
|
||||||
}
|
}
|
||||||
|
else if ( check ( TokType::Operator ) && currtok.Text[0] == '>' )
|
||||||
|
{
|
||||||
|
eat( TokType::Operator );
|
||||||
|
Context.pop();
|
||||||
|
return { nullptr };
|
||||||
|
}
|
||||||
|
|
||||||
CodeType type = { nullptr };
|
CodeType type = { nullptr };
|
||||||
Code value = { nullptr };
|
Code value = { nullptr };
|
||||||
|
@ -36,12 +36,12 @@ OpValidateResult operator__validate( OperatorT op, CodeParam params_code, CodeTy
|
|||||||
}
|
}
|
||||||
|
|
||||||
# define check_param_eq_ret() \
|
# define check_param_eq_ret() \
|
||||||
if ( ! is_member_symbol && params_code->ValueType != ret_type ) \
|
if ( ! is_member_symbol && ! params_code->ValueType.is_equal( ret_type) ) \
|
||||||
{ \
|
{ \
|
||||||
log_failure("gen_def_operator: operator%s requires first parameter to equal return type\n" \
|
log_failure("gen::def_operator: operator%s requires first parameter to equal return type\n" \
|
||||||
"param types: %s\n" \
|
"param types: %s\n" \
|
||||||
"return type: %s", \
|
"return type: %s", \
|
||||||
to_str(op), \
|
to_str(op).Ptr, \
|
||||||
params_code.debug_str(), \
|
params_code.debug_str(), \
|
||||||
ret_type.debug_str() \
|
ret_type.debug_str() \
|
||||||
); \
|
); \
|
||||||
@ -947,6 +947,7 @@ CodeOperator def_operator( OperatorT op, StrC nspace
|
|||||||
result = (CodeOperator) make_code();
|
result = (CodeOperator) make_code();
|
||||||
result->Name = get_cached_string( { str_len(name), name } );
|
result->Name = get_cached_string( { str_len(name), name } );
|
||||||
result->ModuleFlags = mflags;
|
result->ModuleFlags = mflags;
|
||||||
|
result->Op = op;
|
||||||
|
|
||||||
if ( body )
|
if ( body )
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user