diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2025-08-24 18:17:14 -0400 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2025-08-24 18:17:14 -0400 |
| commit | 6cc848bfde0cc6bd702019f81c1467e409f35487 (patch) | |
| tree | 239b06f82b1009826ad3b60ae73b585c5c5e842c /src/compile/comparisons.c | |
| parent | e56f4b447e785a7b0ad95d9f2c21e36e3d2bed2c (diff) | |
Move comparisons to their own file
Diffstat (limited to 'src/compile/comparisons.c')
| -rw-r--r-- | src/compile/comparisons.c | 95 |
1 files changed, 95 insertions, 0 deletions
diff --git a/src/compile/comparisons.c b/src/compile/comparisons.c new file mode 100644 index 00000000..851088d8 --- /dev/null +++ b/src/compile/comparisons.c @@ -0,0 +1,95 @@ +// This file defines how to compile comparisons + +#include "../ast.h" +#include "../config.h" +#include "../environment.h" +#include "../stdlib/text.h" +#include "../typecheck.h" +#include "promotions.h" +#include "types.h" + +Text_t compile_comparison(env_t *env, ast_t *ast) { + + switch (ast->tag) { + case Equals: + case NotEquals: { + binary_operands_t binop = BINARY_OPERANDS(ast); + + type_t *lhs_t = get_type(env, binop.lhs); + type_t *rhs_t = get_type(env, binop.rhs); + type_t *operand_t; + if (binop.lhs->tag == Int && is_numeric_type(rhs_t)) { + operand_t = rhs_t; + } else if (binop.rhs->tag == Int && is_numeric_type(lhs_t)) { + operand_t = lhs_t; + } else if (can_compile_to_type(env, binop.rhs, lhs_t)) { + operand_t = lhs_t; + } else if (can_compile_to_type(env, binop.lhs, rhs_t)) { + operand_t = rhs_t; + } else { + code_err(ast, "I can't do comparisons between ", type_to_str(lhs_t), " and ", type_to_str(rhs_t)); + } + + Text_t lhs, rhs; + lhs = compile_to_type(env, binop.lhs, operand_t); + rhs = compile_to_type(env, binop.rhs, operand_t); + + switch (operand_t->tag) { + case BigIntType: + return Texts(ast->tag == Equals ? EMPTY_TEXT : Text("!"), "Int$equal_value(", lhs, ", ", rhs, ")"); + case BoolType: + case ByteType: + case IntType: + case NumType: + case PointerType: + case FunctionType: return Texts("(", lhs, ast->tag == Equals ? " == " : " != ", rhs, ")"); + default: + return Texts(ast->tag == Equals ? EMPTY_TEXT : Text("!"), "generic_equal(stack(", lhs, "), stack(", rhs, + "), ", compile_type_info(operand_t), ")"); + } + } + case LessThan: + case LessThanOrEquals: + case GreaterThan: + case GreaterThanOrEquals: + case Compare: { + binary_operands_t cmp = BINARY_OPERANDS(ast); + + type_t *lhs_t = get_type(env, cmp.lhs); + type_t *rhs_t = get_type(env, cmp.rhs); + type_t *operand_t; + if (cmp.lhs->tag == Int && is_numeric_type(rhs_t)) { + operand_t = rhs_t; + } else if (cmp.rhs->tag == Int && is_numeric_type(lhs_t)) { + operand_t = lhs_t; + } else if (can_compile_to_type(env, cmp.rhs, lhs_t)) { + operand_t = lhs_t; + } else if (can_compile_to_type(env, cmp.lhs, rhs_t)) { + operand_t = rhs_t; + } else { + code_err(ast, "I can't do comparisons between ", type_to_str(lhs_t), " and ", type_to_str(rhs_t)); + } + + Text_t lhs = compile_to_type(env, cmp.lhs, operand_t); + Text_t rhs = compile_to_type(env, cmp.rhs, operand_t); + + if (ast->tag == Compare) + return Texts("generic_compare(stack(", lhs, "), stack(", rhs, "), ", compile_type_info(operand_t), ")"); + + const char *op = binop_operator(ast->tag); + switch (operand_t->tag) { + case BigIntType: return Texts("(Int$compare_value(", lhs, ", ", rhs, ") ", op, " 0)"); + case BoolType: + case ByteType: + case IntType: + case NumType: + case PointerType: + case FunctionType: return Texts("(", lhs, " ", op, " ", rhs, ")"); + default: + return Texts("(generic_compare(stack(", lhs, "), stack(", rhs, "), ", compile_type_info(operand_t), ") ", + op, " 0)"); + } + } + default: code_err(ast, "This is not a comparison!"); + } +} |
