cgen: fix `.filter()` and `.map()` on shared arrays (#13954)

pull/13969/head
crthpl 2022-04-07 08:05:11 -07:00 committed by GitHub
parent eea46c4e1a
commit b232a3b0d1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 112 additions and 26 deletions

View File

@ -23,6 +23,7 @@ pub fn (mut c Checker) assign_stmt(mut node ast.AssignStmt) {
c.expected_type = c.expr(node.left[i]) c.expected_type = c.expr(node.left[i])
} }
right_type := c.expr(right) right_type := c.expr(right)
c.fail_if_unreadable(right, right_type, 'right-hand side of assignment')
if i == 0 { if i == 0 {
right_type0 = right_type right_type0 = right_type
node.right_types = [ node.right_types = [
@ -185,7 +186,7 @@ pub fn (mut c Checker) assign_stmt(mut node ast.AssignStmt) {
} }
// Do not allow `a := 0; b := 0; a = &b` // Do not allow `a := 0; b := 0; a = &b`
if !is_decl && left is ast.Ident && !is_blank_ident && !left_type.is_real_pointer() if !is_decl && left is ast.Ident && !is_blank_ident && !left_type.is_real_pointer()
&& right_type.is_real_pointer() { && right_type.is_real_pointer() && !right_type.has_flag(.shared_f) {
left_sym := c.table.sym(left_type) left_sym := c.table.sym(left_type)
if left_sym.kind != .function { if left_sym.kind != .function {
c.warn( c.warn(

View File

@ -2066,6 +2066,7 @@ fn (mut c Checker) assert_stmt(node ast.AssertStmt) {
c.error('assert can be used only with `bool` expressions, but found `$atype_name` instead', c.error('assert can be used only with `bool` expressions, but found `$atype_name` instead',
node.pos) node.pos)
} }
c.fail_if_unreadable(node.expr, ast.bool_type_idx, 'assertion')
c.expected_type = cur_exp_typ c.expected_type = cur_exp_typ
} }
@ -4189,10 +4190,26 @@ pub fn (mut c Checker) fail_if_unreadable(expr ast.Expr, typ ast.Type, what stri
c.fail_if_unreadable(expr.expr, expr.expr_type, what) c.fail_if_unreadable(expr.expr, expr.expr_type, what)
} }
} }
ast.CallExpr {
pos = expr.pos
if expr.is_method {
c.fail_if_unreadable(expr.left, expr.left_type, what)
}
return
}
ast.LockExpr {
// TODO: check expressions inside the lock by appending to c.(r)locked_names
return
}
ast.IndexExpr { ast.IndexExpr {
pos = expr.left.pos().extend(expr.pos) pos = expr.left.pos().extend(expr.pos)
c.fail_if_unreadable(expr.left, expr.left_type, what) c.fail_if_unreadable(expr.left, expr.left_type, what)
} }
ast.InfixExpr {
pos = expr.left.pos().extend(expr.pos)
c.fail_if_unreadable(expr.left, expr.left_type, what)
c.fail_if_unreadable(expr.right, expr.right_type, what)
}
else { else {
pos = expr.pos() pos = expr.pos()
} }

View File

@ -1741,11 +1741,12 @@ fn (mut c Checker) map_builtin_method_call(mut node ast.CallExpr, left_type ast.
if method_name[0] == `m` { if method_name[0] == `m` {
c.fail_if_immutable(node.left) c.fail_if_immutable(node.left)
} }
if node.left.is_auto_deref_var() { if node.left.is_auto_deref_var() || ret_type.has_flag(.shared_f) {
ret_type = left_type.deref() ret_type = left_type.deref()
} else { } else {
ret_type = left_type ret_type = left_type
} }
ret_type = ret_type.clear_flag(.shared_f)
} }
'keys' { 'keys' {
info := left_sym.info as ast.Map info := left_sym.info as ast.Map
@ -1855,12 +1856,18 @@ fn (mut c Checker) array_builtin_method_call(mut node ast.CallExpr, left_type as
else { arg_type } else { arg_type }
} }
node.return_type = c.table.find_or_register_array(c.unwrap_generic(ret_type)) node.return_type = c.table.find_or_register_array(c.unwrap_generic(ret_type))
if node.return_type.has_flag(.shared_f) {
node.return_type = node.return_type.clear_flag(.shared_f).deref()
}
ret_sym := c.table.sym(ret_type) ret_sym := c.table.sym(ret_type)
if ret_sym.kind == .multi_return { if ret_sym.kind == .multi_return {
c.error('returning multiple values is not supported in .map() calls', node.pos) c.error('returning multiple values is not supported in .map() calls', node.pos)
} }
} else if method_name == 'filter' { } else if method_name == 'filter' {
// check fn // check fn
if node.return_type.has_flag(.shared_f) {
node.return_type = node.return_type.clear_flag(.shared_f).deref()
}
c.check_map_and_filter(false, elem_typ, node) c.check_map_and_filter(false, elem_typ, node)
} else if method_name in ['any', 'all'] { } else if method_name in ['any', 'all'] {
c.check_map_and_filter(false, elem_typ, node) c.check_map_and_filter(false, elem_typ, node)
@ -1874,6 +1881,9 @@ fn (mut c Checker) array_builtin_method_call(mut node ast.CallExpr, left_type as
} else { } else {
node.return_type = node.receiver_type.set_nr_muls(0) node.return_type = node.receiver_type.set_nr_muls(0)
} }
if node.return_type.has_flag(.shared_f) {
node.return_type = node.return_type.clear_flag(.shared_f)
}
} else if method_name == 'sort' { } else if method_name == 'sort' {
node.return_type = ast.void_type node.return_type = ast.void_type
} else if method_name == 'contains' { } else if method_name == 'contains' {

View File

@ -305,15 +305,23 @@ fn (mut g Gen) gen_array_map(node ast.CallExpr) {
} }
g.empty_line = true g.empty_line = true
noscan := g.check_noscan(ret_info.elem_type) noscan := g.check_noscan(ret_info.elem_type)
g.writeln('$ret_typ $tmp = __new_array${noscan}(0, 0, sizeof($ret_elem_type));') g.writeln('$ret_typ $tmp = {0};')
has_infix_left_var_name := g.infix_left_var_name.len > 0 has_infix_left_var_name := g.infix_left_var_name.len > 0
if has_infix_left_var_name { if has_infix_left_var_name {
g.writeln('if ($g.infix_left_var_name) {') g.writeln('if ($g.infix_left_var_name) {')
g.infix_left_var_name = '' g.infix_left_var_name = ''
g.indent++ g.indent++
} }
g.write('${g.typ(node.left_type)} ${tmp}_orig = ') left_type := if node.left_type.has_flag(.shared_f) {
node.left_type.clear_flag(.shared_f).deref()
} else {
node.left_type
}
g.write('${g.typ(left_type)} ${tmp}_orig = ')
g.expr(node.left) g.expr(node.left)
if node.left_type.has_flag(.shared_f) {
g.write('->val')
}
g.writeln(';') g.writeln(';')
g.writeln('int ${tmp}_len = ${tmp}_orig.len;') g.writeln('int ${tmp}_len = ${tmp}_orig.len;')
g.writeln('$tmp = __new_array${noscan}(0, ${tmp}_len, sizeof($ret_elem_type));\n') g.writeln('$tmp = __new_array${noscan}(0, ${tmp}_len, sizeof($ret_elem_type));\n')
@ -403,11 +411,11 @@ fn (mut g Gen) gen_array_sort(node ast.CallExpr) {
// the only argument can only be an infix expression like `a < b` or `b.field > a.field` // the only argument can only be an infix expression like `a < b` or `b.field > a.field`
if node.args.len == 0 { if node.args.len == 0 {
comparison_type = g.unwrap(info.elem_type.set_nr_muls(0)) comparison_type = g.unwrap(info.elem_type.set_nr_muls(0))
shared a := g.array_sort_fn rlock g.array_sort_fn {
array_sort_fn := a.clone() if compare_fn in g.array_sort_fn {
if compare_fn in array_sort_fn { g.gen_array_sort_call(node, compare_fn)
g.gen_array_sort_call(node, compare_fn) return
return }
} }
left_expr = '*a' left_expr = '*a'
right_expr = '*b' right_expr = '*b'
@ -424,11 +432,11 @@ fn (mut g Gen) gen_array_sort(node ast.CallExpr) {
if is_reverse { if is_reverse {
compare_fn += '_reverse' compare_fn += '_reverse'
} }
shared a := g.array_sort_fn rlock g.array_sort_fn {
array_sort_fn := a.clone() if compare_fn in g.array_sort_fn {
if compare_fn in array_sort_fn { g.gen_array_sort_call(node, compare_fn)
g.gen_array_sort_call(node, compare_fn) return
return }
} }
if left_name.starts_with('a') != is_reverse { if left_name.starts_with('a') != is_reverse {
left_expr = g.expr_string(infix_expr.left) left_expr = g.expr_string(infix_expr.left)
@ -503,15 +511,23 @@ fn (mut g Gen) gen_array_filter(node ast.CallExpr) {
elem_type_str := g.typ(info.elem_type) elem_type_str := g.typ(info.elem_type)
g.empty_line = true g.empty_line = true
noscan := g.check_noscan(info.elem_type) noscan := g.check_noscan(info.elem_type)
g.writeln('$styp $tmp = __new_array${noscan}(0, 0, sizeof($elem_type_str));') g.writeln('$styp $tmp = {0};')
has_infix_left_var_name := g.infix_left_var_name.len > 0 has_infix_left_var_name := g.infix_left_var_name.len > 0
if has_infix_left_var_name { if has_infix_left_var_name {
g.writeln('if ($g.infix_left_var_name) {') g.writeln('if ($g.infix_left_var_name) {')
g.infix_left_var_name = '' g.infix_left_var_name = ''
g.indent++ g.indent++
} }
g.write('${g.typ(node.left_type)} ${tmp}_orig = ') left_type := if node.left_type.has_flag(.shared_f) {
node.left_type.clear_flag(.shared_f).deref()
} else {
node.left_type
}
g.write('${g.typ(left_type)} ${tmp}_orig = ')
g.expr(node.left) g.expr(node.left)
if node.left_type.has_flag(.shared_f) {
g.write('->val')
}
g.writeln(';') g.writeln(';')
g.writeln('int ${tmp}_len = ${tmp}_orig.len;') g.writeln('int ${tmp}_len = ${tmp}_orig.len;')
g.writeln('$tmp = __new_array${noscan}(0, ${tmp}_len, sizeof($elem_type_str));\n') g.writeln('$tmp = __new_array${noscan}(0, ${tmp}_len, sizeof($elem_type_str));\n')

View File

@ -379,7 +379,8 @@ fn (mut g Gen) gen_assign_stmt(node_ ast.AssignStmt) {
g.write(', ') g.write(', ')
} }
mut cloned := false mut cloned := false
if g.is_autofree && right_sym.kind in [.array, .string] { if g.is_autofree && right_sym.kind in [.array, .string]
&& !unwrapped_val_type.has_flag(.shared_f) {
if g.gen_clone_assignment(val, unwrapped_val_type, false) { if g.gen_clone_assignment(val, unwrapped_val_type, false) {
cloned = true cloned = true
} }

View File

@ -984,7 +984,10 @@ fn (mut g Gen) register_optional(t ast.Type) string {
} }
fn (mut g Gen) write_optionals() { fn (mut g Gen) write_optionals() {
mut done := g.done_optionals.clone() mut done := []string{}
rlock g.done_optionals {
done = g.done_optionals
}
for base, styp in g.optionals { for base, styp in g.optionals {
if base in done { if base in done {
continue continue

View File

@ -0,0 +1,22 @@
fn test_filter() {
arr := [3, 6, 1, 8, 2, 4, 5, 7]
filtered := arr.filter(it > 4)
assert filtered.len == 4
assert filtered.contains(6)
assert filtered.contains(8)
assert filtered.contains(5)
assert filtered.contains(7)
}
fn test_shared_filter() {
shared arr := [3, 6, 1, 8, 2, 4, 5, 7]
filtered := rlock arr {
arr.filter(it > 4)
}
assert filtered.len == 4
assert filtered.contains(6)
assert filtered.contains(8)
assert filtered.contains(5)
assert filtered.contains(7)
}

View File

@ -0,0 +1,8 @@
fn test_map_fn() {
map1 := [3, 4, 6]
assert map1.map(it * 2) == [6, 8, 12]
shared map2 := [7, 9, 10]
rlock map2 {
assert map2.map(it * 2) == [14, 18, 20]
}
}

View File

@ -13,7 +13,9 @@ fn test_autolock_array() {
a[2]++ a[2]++
} }
t.wait() t.wait()
assert a[2] == 2 * iterations + 7 rlock a {
assert a[2] == 2 * iterations + 7
}
} }
fn inc_map_elem(shared b map[string]int, k string) { fn inc_map_elem(shared b map[string]int, k string) {
@ -34,5 +36,7 @@ fn test_autolock_map() {
m['asd']++ m['asd']++
} }
t.wait() t.wait()
assert m['asd'] == 2 * iterations + 7 rlock m {
assert m['asd'] == 2 * iterations + 7
}
} }

View File

@ -1,8 +1,10 @@
fn test_shared_in() { fn test_shared_in() {
shared a := [1, 3, 7, 3] shared a := [1, 3, 7, 3]
assert 1 in a rlock a {
assert 0 !in a assert 1 in a
assert 7 in a assert 0 !in a
assert 3 in a assert 7 in a
assert 1238941 !in a assert 3 in a
assert 1238941 !in a
}
} }

View File

@ -51,7 +51,9 @@ fn main() {
//} //}
pub fn (mut app App) index() vweb.Result { pub fn (mut app App) index() vweb.Result {
assert app.global_config.max_ping == 50 rlock app.global_config {
assert app.global_config.max_ping == 50
}
return app.text('Welcome to VWeb') return app.text('Welcome to VWeb')
} }