| ... | ... | @@ -185,6 +185,8 @@ static IrInstruction *ir_analyze_int_to_ptr(IrAnalyze *ira, IrInstruction *sourc |
| 185 | 185 | ZigType *ptr_type); |
| 186 | 186 | static IrInstruction *ir_analyze_bit_cast(IrAnalyze *ira, IrInstruction *source_instr, IrInstruction *value, |
| 187 | 187 | ZigType *dest_type); |
| 188 | static IrInstruction *ir_resolve_result_raw(IrAnalyze *ira, IrInstruction *suspend_source_instr, |
| 189 | ResultLoc *result_loc, ZigType *value_type, IrInstruction *value); |
| 188 | 190 | static IrInstruction *ir_resolve_result(IrAnalyze *ira, IrInstruction *suspend_source_instr, |
| 189 | 191 | ResultLoc *result_loc, ZigType *value_type, IrInstruction *value); |
| 190 | 192 | static IrInstruction *ir_analyze_unwrap_optional_payload(IrAnalyze *ira, IrInstruction *source_instr, |
| ... | ... | @@ -14812,10 +14814,8 @@ static bool type_can_bit_cast(ZigType *t) { |
| 14812 | 14814 | } |
| 14813 | 14815 | } |
| 14814 | 14816 | |
| 14815 | | // give nullptr for value to resolve it at runtime |
| 14816 | | // returns a result location, or nullptr if the result location was already taken care of |
| 14817 | 14817 | // when calling this function, at the callsite must check for result type noreturn and propagate it up |
| 14818 | | static IrInstruction *ir_resolve_result(IrAnalyze *ira, IrInstruction *suspend_source_instr, |
| 14818 | static IrInstruction *ir_resolve_result_raw(IrAnalyze *ira, IrInstruction *suspend_source_instr, |
| 14819 | 14819 | ResultLoc *result_loc, ZigType *value_type, IrInstruction *value) |
| 14820 | 14820 | { |
| 14821 | 14821 | Error err; |
| ... | ... | @@ -14994,6 +14994,30 @@ static IrInstruction *ir_resolve_result(IrAnalyze *ira, IrInstruction *suspend_s |
| 14994 | 14994 | zig_unreachable(); |
| 14995 | 14995 | } |
| 14996 | 14996 | |
| 14997 | static IrInstruction *ir_resolve_result(IrAnalyze *ira, IrInstruction *suspend_source_instr, |
| 14998 | ResultLoc *result_loc_pass1, ZigType *value_type, IrInstruction *value) |
| 14999 | { |
| 15000 | IrInstruction *result_loc = ir_resolve_result_raw(ira, suspend_source_instr, result_loc_pass1, value_type, |
| 15001 | value); |
| 15002 | if (result_loc == nullptr || (instr_is_unreachable(result_loc) || type_is_invalid(result_loc->value.type))) |
| 15003 | return result_loc; |
| 15004 | ir_assert(result_loc->value.type->id == ZigTypeIdPointer, suspend_source_instr); |
| 15005 | ZigType *actual_elem_type = result_loc->value.type->data.pointer.child_type; |
| 15006 | if (actual_elem_type->id == ZigTypeIdOptional && value_type->id != ZigTypeIdOptional) { |
| 15007 | return ir_analyze_unwrap_optional_payload(ira, suspend_source_instr, result_loc, false, true); |
| 15008 | } else if (actual_elem_type->id == ZigTypeIdErrorUnion && value_type->id != ZigTypeIdErrorUnion) { |
| 15009 | IrInstruction *unwrapped_err_ptr = ir_analyze_unwrap_error_payload(ira, suspend_source_instr, |
| 15010 | result_loc, false, true); |
| 15011 | ZigType *actual_payload_type = actual_elem_type->data.error_union.payload_type; |
| 15012 | if (actual_payload_type->id == ZigTypeIdOptional && value_type->id != ZigTypeIdOptional) { |
| 15013 | return ir_analyze_unwrap_optional_payload(ira, suspend_source_instr, unwrapped_err_ptr, false, true); |
| 15014 | } else { |
| 15015 | return unwrapped_err_ptr; |
| 15016 | } |
| 15017 | } |
| 15018 | return result_loc; |
| 15019 | } |
| 15020 | |
| 14997 | 15021 | static IrInstruction *ir_analyze_instruction_implicit_cast(IrAnalyze *ira, IrInstructionImplicitCast *instruction) { |
| 14998 | 15022 | ZigType *dest_type = ir_resolve_type(ira, instruction->dest_type->child); |
| 14999 | 15023 | if (type_is_invalid(dest_type)) |
| ... | ... | @@ -15010,25 +15034,7 @@ static IrInstruction *ir_analyze_instruction_resolve_result(IrAnalyze *ira, IrIn |
| 15010 | 15034 | ZigType *implicit_elem_type = ir_resolve_type(ira, instruction->ty->child); |
| 15011 | 15035 | if (type_is_invalid(implicit_elem_type)) |
| 15012 | 15036 | return ira->codegen->invalid_instruction; |
| 15013 | | IrInstruction *result_loc = ir_resolve_result(ira, &instruction->base, instruction->result_loc, |
| 15014 | | implicit_elem_type, nullptr); |
| 15015 | | if (instr_is_unreachable(result_loc) || type_is_invalid(result_loc->value.type)) |
| 15016 | | return result_loc; |
| 15017 | | ir_assert(result_loc->value.type->id == ZigTypeIdPointer, &instruction->base); |
| 15018 | | ZigType *actual_elem_type = result_loc->value.type->data.pointer.child_type; |
| 15019 | | if (actual_elem_type->id == ZigTypeIdOptional && implicit_elem_type->id != ZigTypeIdOptional) { |
| 15020 | | return ir_analyze_unwrap_optional_payload(ira, &instruction->base, result_loc, false, true); |
| 15021 | | } else if (actual_elem_type->id == ZigTypeIdErrorUnion && implicit_elem_type->id != ZigTypeIdErrorUnion) { |
| 15022 | | IrInstruction *unwrapped_err_ptr = ir_analyze_unwrap_error_payload(ira, &instruction->base, |
| 15023 | | result_loc, false, true); |
| 15024 | | ZigType *actual_payload_type = actual_elem_type->data.error_union.payload_type; |
| 15025 | | if (actual_payload_type->id == ZigTypeIdOptional && implicit_elem_type->id != ZigTypeIdOptional) { |
| 15026 | | return ir_analyze_unwrap_optional_payload(ira, &instruction->base, unwrapped_err_ptr, false, true); |
| 15027 | | } else { |
| 15028 | | return unwrapped_err_ptr; |
| 15029 | | } |
| 15030 | | } |
| 15031 | | return result_loc; |
| 15037 | return ir_resolve_result(ira, &instruction->base, instruction->result_loc, implicit_elem_type, nullptr); |
| 15032 | 15038 | } |
| 15033 | 15039 | |
| 15034 | 15040 | static IrInstruction *ir_analyze_async_call(IrAnalyze *ira, IrInstructionCallSrc *call_instruction, ZigFn *fn_entry, |
| ... | ... | @@ -24617,9 +24623,6 @@ ZigType *ir_analyze(CodeGen *codegen, IrExecutable *old_exec, IrExecutable *new_ |
| 24617 | 24623 | continue; |
| 24618 | 24624 | } |
| 24619 | 24625 | |
| 24620 | | if (ira->codegen->verbose_ir) { |
| 24621 | | fprintf(stderr, "analyze #%zu\n", old_instruction->debug_id); |
| 24622 | | } |
| 24623 | 24626 | IrInstruction *new_instruction = ir_analyze_instruction_base(ira, old_instruction); |
| 24624 | 24627 | if (new_instruction != nullptr) { |
| 24625 | 24628 | ir_assert(new_instruction->value.type != nullptr || new_instruction->value.type != nullptr, old_instruction); |