aboutsummaryrefslogtreecommitdiff
path: root/src/stage1/ir.cpp
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2020-09-21 21:16:46 -0700
committerAndrew Kelley <andrew@ziglang.org>2020-09-21 21:16:46 -0700
commit0c70bb4fce8b0460f86ed218f54ba31b291f2bfb (patch)
tree1e0ad8f9ea76b30e52753a2f25f5f1d18d25896d /src/stage1/ir.cpp
parentafac5d28951cfd913851094649e8b9f2136694ca (diff)
parent58ee5f4e61cd9b7a9ba65798e2214efa3753a733 (diff)
downloadzig-0c70bb4fce8b0460f86ed218f54ba31b291f2bfb.tar.gz
zig-0c70bb4fce8b0460f86ed218f54ba31b291f2bfb.zip
Merge remote-tracking branch 'origin/master' into stage2-zig-cc
Diffstat (limited to 'src/stage1/ir.cpp')
-rw-r--r--src/stage1/ir.cpp24
1 files changed, 23 insertions, 1 deletions
diff --git a/src/stage1/ir.cpp b/src/stage1/ir.cpp
index 50076f9a86..f0546f9e01 100644
--- a/src/stage1/ir.cpp
+++ b/src/stage1/ir.cpp
@@ -63,6 +63,7 @@ enum ConstCastResultId {
ConstCastResultIdPointerChild,
ConstCastResultIdSliceChild,
ConstCastResultIdOptionalChild,
+ ConstCastResultIdOptionalShape,
ConstCastResultIdErrorUnionPayload,
ConstCastResultIdErrorUnionErrorSet,
ConstCastResultIdFnAlign,
@@ -11946,8 +11947,22 @@ static ConstCastOnly types_match_const_cast_only(IrAnalyze *ira, ZigType *wanted
}
}
- // maybe
+ // optional types
if (wanted_type->id == ZigTypeIdOptional && actual_type->id == ZigTypeIdOptional) {
+ // Consider the case where the wanted type is ??[*]T and the actual one
+ // is ?[*]T, we cannot turn the former into the latter even though the
+ // child types are compatible (?[*]T and [*]T are both represented as a
+ // pointer). The extra level of indirection in ??[*]T means it's
+ // represented as a regular, fat, optional type and, as a consequence,
+ // has a different shape than the one of ?[*]T.
+ if ((wanted_ptr_type != nullptr) != (actual_ptr_type != nullptr)) {
+ // The use of type_mismatch is intentional
+ result.id = ConstCastResultIdOptionalShape;
+ result.data.type_mismatch = heap::c_allocator.allocate_nonzero<ConstCastTypeMismatch>(1);
+ result.data.type_mismatch->wanted_type = wanted_type;
+ result.data.type_mismatch->actual_type = actual_type;
+ return result;
+ }
ConstCastOnly child = types_match_const_cast_only(ira, wanted_type->data.maybe.child_type,
actual_type->data.maybe.child_type, source_node, wanted_is_mutable);
if (child.id == ConstCastResultIdInvalid)
@@ -14549,6 +14564,13 @@ static void report_recursive_error(IrAnalyze *ira, AstNode *source_node, ConstCa
report_recursive_error(ira, source_node, &cast_result->data.optional->child, msg);
break;
}
+ case ConstCastResultIdOptionalShape: {
+ add_error_note(ira->codegen, parent_msg, source_node,
+ buf_sprintf("optional type child '%s' cannot cast into optional type '%s'",
+ buf_ptr(&cast_result->data.type_mismatch->actual_type->name),
+ buf_ptr(&cast_result->data.type_mismatch->wanted_type->name)));
+ break;
+ }
case ConstCastResultIdErrorUnionErrorSet: {
ErrorMsg *msg = add_error_note(ira->codegen, parent_msg, source_node,
buf_sprintf("error set '%s' cannot cast into error set '%s'",