Merge pull request #33 from birth-software/mul-div

Implement multiplication and division
This commit is contained in:
David 2024-07-29 09:13:03 +02:00 committed by GitHub
commit d4307f7de3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 24 additions and 2 deletions

View File

@ -3248,6 +3248,12 @@ fn TypeIndex compute_type_integer_binary(Thread* thread, NodeIndex node_index)
case NODE_INTEGER_SUBSTRACT:
result = left_value - right_value;
break;
case NODE_INTEGER_MULTIPLY:
result = left_value * right_value;
break;
case NODE_INTEGER_SIGNED_DIVIDE:
result = left_value * right_value;
break;
case NODE_INTEGER_AND:
result = left_value & right_value;
break;
@ -3321,6 +3327,12 @@ global const NodeVirtualTable node_functions[NODE_COUNT] = {
[NODE_INTEGER_SUBSTRACT] = {
.compute_type = &compute_type_integer_binary,
},
[NODE_INTEGER_SIGNED_DIVIDE] = {
.compute_type = &compute_type_integer_binary,
},
[NODE_INTEGER_MULTIPLY] = {
.compute_type = &compute_type_integer_binary,
},
[NODE_INTEGER_AND] = {
.compute_type = &compute_type_integer_binary,
},
@ -4384,10 +4396,10 @@ fn NodeIndex analyze_multiplication(Thread* thread, Parser* parser, FunctionBuil
switch (src.pointer[parser->i])
{
case '*':
node_id = NODE_INTEGER_ADD;
node_id = NODE_INTEGER_MULTIPLY;
break;
case '/':
node_id = NODE_INTEGER_SUBSTRACT;
node_id = NODE_INTEGER_SIGNED_DIVIDE;
break;
case '%':
todo();

View File

@ -11,6 +11,8 @@ no_optimization_flags=""
test_names=(
"first"
"add_sub"
"mul"
"div"
"and"
"or"
"xor"

4
tests/div.nat Normal file
View File

@ -0,0 +1,4 @@
fn main() s32
{
return 0 / 1;
}

4
tests/mul.nat Normal file
View File

@ -0,0 +1,4 @@
fn main() s32
{
return 1 * 0;
}