/*! * @file Define.cpp * Forms which define or set things. */ #include "goalc/compiler/Compiler.h" /*! * Define or set a global value. Has some special magic to store data for functions which may be * inlined. */ Val* Compiler::compile_define(const goos::Object& form, const goos::Object& rest, Env* env) { auto args = get_va(form, rest); va_check(form, args, {goos::ObjectType::SYMBOL, {}}, {{"no-typecheck", {false, goos::ObjectType::SYMBOL}}}); auto& sym = args.unnamed.at(0); auto& val = args.unnamed.at(1); // check we aren't duplicated a name as both a symbol and global constant auto global_constant = m_global_constants.find(sym.as_symbol()); if (global_constant != m_global_constants.end()) { throw_compiler_error( form, "Cannot define a symbol named {}, it already exists as a global constant (value {}).", sym.print(), global_constant->second.print()); } auto fe = get_parent_env_of_type(env); auto sym_val = fe->alloc_val(symbol_string(sym), m_ts.make_typespec("symbol")); auto compiled_val = compile_error_guard(val, env); auto as_lambda = dynamic_cast(compiled_val); if (as_lambda) { // there are two cases in which we save a function body that is passed to a define: // 1. It generated code [so went through the compiler] and the allow_inline flag is set. // 2. It didn't generate code [so explicitly with :inline-only lambdas] // The third case - immediate lambdas - don't get passed to a define, // so this won't cause those to live for longer than they should if ((as_lambda->func && as_lambda->func->settings.allow_inline) || !as_lambda->func) { m_inlineable_functions[sym.as_symbol()] = as_lambda; } } auto in_gpr = compiled_val->to_gpr(fe); auto existing_type = m_symbol_types.find(sym.as_symbol()->name); if (existing_type == m_symbol_types.end()) { m_symbol_types[sym.as_symbol()->name] = in_gpr->type(); } else { bool do_typecheck = true; if (args.has_named("no-typecheck")) { do_typecheck = !get_true_or_false(form, args.named.at("no-typecheck")); } if (do_typecheck) { typecheck(form, existing_type->second, in_gpr->type(), "define on existing symbol"); } } if (!sym_val->settable()) { throw_compiler_error(form, "Cannot define {} because it cannot be set.", sym_val->print()); } fe->emit(std::make_unique(sym_val, in_gpr)); return in_gpr; } /*! * Inform the compiler of the type of a global. Will warn on changing type. */ Val* Compiler::compile_define_extern(const goos::Object& form, const goos::Object& rest, Env* env) { (void)env; auto args = get_va(form, rest); va_check(form, args, {goos::ObjectType::SYMBOL, {}}, {}); auto& sym = args.unnamed.at(0); auto& typespec = args.unnamed.at(1); auto new_type = parse_typespec(typespec); auto existing_type = m_symbol_types.find(symbol_string(sym)); if (existing_type != m_symbol_types.end() && existing_type->second != new_type) { if (m_throw_on_define_extern_redefinition) { throw_compiler_error(form, "define-extern would redefine the type of symbol {} from {} to {}.", symbol_string(sym), existing_type->second.print(), new_type.print()); } else { print_compiler_warning( "[Warning] define-extern has redefined the type of symbol {}\npreviously: {}\nnow: {}\n", symbol_string(sym).c_str(), existing_type->second.print().c_str(), new_type.print().c_str()); } } if (new_type == m_ts.make_typespec("type")) { m_ts.forward_declare_type(symbol_string(sym)); } m_symbol_types[symbol_string(sym)] = new_type; return get_none(); } void Compiler::set_bitfield(const goos::Object& form, BitFieldVal* dst, RegVal* src, Env* env) { auto fe = get_parent_env_of_type(env); // first, get the value we want to modify: auto original_original = dst->parent()->to_gpr(env); // let's not directly modify original, and instead create a copy then use do_set on parent. // this way we avoid "cheating" the set system, although it should be safe... auto original = fe->make_gpr(original_original->type()); env->emit(std::make_unique(original, original_original)); // we'll need a temp register to hold a mask: auto temp = fe->make_gpr(src->type()); // mask value should be 1's everywhere except for the field so we can AND with it u64 mask_val = ~(((1 << dst->size()) - 1) << dst->offset()); env->emit(std::make_unique(temp, mask_val)); // modify the original! env->emit(std::make_unique(IntegerMathKind::AND_64, original, temp)); // put the source in temp env->emit(std::make_unique(temp, src)); // to shift us all the way to the left and clear upper bits int left_shift_amnt = 64 - dst->size(); int right_shift_amnt = (64 - dst->size()) - dst->offset(); assert(right_shift_amnt >= 0); if (left_shift_amnt > 0) { env->emit(std::make_unique(IntegerMathKind::SHL_64, temp, left_shift_amnt)); } if (right_shift_amnt > 0) { env->emit(std::make_unique(IntegerMathKind::SHR_64, temp, right_shift_amnt)); } env->emit(std::make_unique(IntegerMathKind::OR_64, original, temp)); do_set(form, dst->parent(), original, original, env); } /*! * The internal "set" logic. * The source is provided both as the directly Val* from compilation and as a RegVal*. * This is a bit weird, but is required to do things in exactly the same order as GOAL, but * makes us able to check if the source is #f, which is allowed to bypass type checking in some * cases. If the source is unavailable, you can just put the same thing for src_in_reg and src, but * you'll lose the ability to detect and accept #f as a null reference. */ Val* Compiler::do_set(const goos::Object& form, Val* dest, RegVal* src_in_reg, Val* src, Env* env) { if (!dest->settable()) { throw_compiler_error(form, "Cannot set! {} because it is not settable.", dest->print()); } auto as_mem_deref = dynamic_cast(dest); auto as_pair = dynamic_cast(dest); auto as_reg = dynamic_cast(dest); auto as_sym_val = dynamic_cast(dest); auto as_bitfield = dynamic_cast(dest); if (as_mem_deref) { auto dest_type = coerce_to_reg_type(as_mem_deref->type()); if (dest_type != TypeSpec("uint") || coerce_to_reg_type(src->type()) != TypeSpec("int")) { typecheck_reg_type_allow_false(form, dest_type, src, "set! memory"); } // setting somewhere in memory auto base = as_mem_deref->base; auto base_as_mco = dynamic_cast(base); if (base_as_mco) { // if it is a constant offset, we can use a fancy x86-64 addressing mode to simplify auto ti = m_ts.lookup_type(as_mem_deref->type()); env->emit(std::make_unique( src_in_reg, base_as_mco->offset, base_as_mco->base->to_gpr(env), ti->get_load_size())); return src_in_reg; } else { // nope, the pointer to dereference is some compliated thing. auto ti = m_ts.lookup_type(as_mem_deref->type()); env->emit(std::make_unique(src_in_reg, 0, base->to_gpr(env), ti->get_load_size())); return src_in_reg; } } else if (as_pair) { // this could probably be part of MemoryDerefVal and not a special case here. env->emit(std::make_unique(src_in_reg, as_pair->is_car ? -2 : 2, as_pair->base->to_gpr(env), 4)); return src_in_reg; } else if (as_reg) { typecheck_reg_type_allow_false(form, as_reg->type(), src, "set! lexical variable"); env->emit(std::make_unique(as_reg, src_in_reg)); return src_in_reg; } else if (as_sym_val) { typecheck_reg_type_allow_false(form, as_sym_val->type(), src, "set! global symbol"); auto result_in_gpr = src_in_reg->to_gpr(env); env->emit(std::make_unique(as_sym_val->sym(), result_in_gpr)); return result_in_gpr; } else if (as_bitfield) { set_bitfield(form, as_bitfield, src_in_reg, env); return get_none(); } throw_compiler_error(form, "There is no implementation of set! for {}.", dest->print()); return get_none(); } /*! * Set something to something. * Lots of special cases. */ Val* Compiler::compile_set(const goos::Object& form, const goos::Object& rest, Env* env) { auto args = get_va(form, rest); va_check(form, args, {{}, {}}, {}); auto& destination = args.unnamed.at(0); // todo, I don't know if this is the correct order or not. Right now the value is computed // and to_reg'd first, then the destination is computed, if the destination requires math to // compute. auto source = compile_error_guard(args.unnamed.at(1), env); auto source_reg = source->to_reg(env); auto dest = compile_error_guard(destination, env); return do_set(form, dest, source_reg, source, env); }