From 7311db60a067f3c0e190448dee603d3c5649afe0 Mon Sep 17 00:00:00 2001 From: joe-conigliaro Date: Tue, 1 Oct 2019 00:11:12 +1000 Subject: [PATCH] compiler: vargs - for loop support & indexing / dot fixes --- compiler/fn.v | 1 + compiler/gen_c.v | 7 ++++ compiler/gen_js.v | 9 +++- compiler/parser.v | 104 +++++++++++++++++++++++----------------------- 4 files changed, 69 insertions(+), 52 deletions(-) diff --git a/compiler/fn.v b/compiler/fn.v index da52bbbf72..e958c09b45 100644 --- a/compiler/fn.v +++ b/compiler/fn.v @@ -886,6 +886,7 @@ fn (p mut Parser) fn_call_args(f mut Fn) &Fn { p.gen('/*YY f=$f.name arg=$arg.name is_moved=$arg.is_moved*/string_clone(') } mut typ := p.bool_expression() + if typ.starts_with('...') { typ = typ.right(3) } if clone { p.gen(')') } diff --git a/compiler/gen_c.v b/compiler/gen_c.v index 98b7e5b3b9..5c8366ef5c 100644 --- a/compiler/gen_c.v +++ b/compiler/gen_c.v @@ -12,6 +12,7 @@ fn (p mut Parser) gen_var_decl(name string, is_static bool) string { // `[typ] [name] = bool_expression();` pos := p.cgen.add_placeholder() mut typ := p.bool_expression() + if typ.starts_with('...') { typ = typ.right(3) } //p.gen('/*after expr*/') // Option check ? or { or_else := p.tok == .key_orelse @@ -284,6 +285,12 @@ fn (p mut Parser) gen_for_map_header(i, tmp, var_typ, val, typ string) { p.genln('$var_typ $val = $def; map_get($tmp, $i, & $val);') } +fn (p mut Parser) gen_for_varg_header(i, varg, var_typ, val string) { + p.genln('for (int $i = 0; $i < ${varg}->len; $i++) {') + if val == '_' { return } + p.genln('$var_typ $val = (($var_typ *) $varg->args)[$i];') +} + fn (p mut Parser) gen_array_init(typ string, no_alloc bool, new_arr_ph int, nr_elems int) { mut new_arr := 'new_array_from_c_array' if no_alloc { diff --git a/compiler/gen_js.v b/compiler/gen_js.v index 6719cd8f71..0089a4dd97 100644 --- a/compiler/gen_js.v +++ b/compiler/gen_js.v @@ -8,7 +8,8 @@ const ( fn (p mut Parser) gen_var_decl(name string, is_static bool) string { p.gen('var $name /* typ */ = ') - typ := p.bool_expression() + mut typ := p.bool_expression() + if typ.starts_with('...') { typ = typ.right(3) } or_else := p.tok == .key_orelse //tmp := p.get_tmp() if or_else { @@ -121,6 +122,12 @@ fn (p mut Parser) gen_for_map_header(i, tmp, var_typ, val, typ string) { p.genln('var $val = $tmp[$i];') } +fn (p mut Parser) gen_for_varg_header(i, varg, var_typ, val string) { + p.genln('for (var $i = 0; $i < ${varg}.len; $i++) {') + if val == '_' { return } + p.genln('var $val = ${varg}.args[$i];') +} + fn (p mut Parser) gen_array_init(typ string, no_alloc bool, new_arr_ph int, nr_elems int) { p.cgen.set_placeholder(new_arr_ph, '[') p.gen(']') diff --git a/compiler/parser.v b/compiler/parser.v index 7b54285805..3bc769a3e4 100644 --- a/compiler/parser.v +++ b/compiler/parser.v @@ -1954,10 +1954,8 @@ fn (p mut Parser) dot(str_typ_ string, method_ph int) string { mut str_typ := str_typ_ p.check(.dot) is_variadic_arg := str_typ.starts_with('...') - if is_variadic_arg { - str_typ = str_typ.right(3) - } - typ := p.find_type(str_typ) + if is_variadic_arg { str_typ = str_typ.right(3) } + mut typ := p.find_type(str_typ) if typ.name.len == 0 { p.error('dot(): cannot find type `$str_typ`') } @@ -1973,10 +1971,7 @@ fn (p mut Parser) dot(str_typ_ string, method_ph int) string { //} has_field := p.table.type_has_field(typ, p.table.var_cgen_name(field_name)) mut has_method := p.table.type_has_method(typ, field_name) - if is_variadic_arg { - if field_name != 'len' { - p.error('the only field you can access on variadic args is `.len`') - } + if is_variadic_arg && field_name == 'len' { p.gen('->$field_name') p.next() return 'int' @@ -2192,25 +2187,23 @@ fn (p mut Parser) index_expr(typ_ string, fn_ph int) string { p.expr_var = v } // accessing variadiac args - if !p.first_pass() && is_variadic_arg { - typ = typ.right(3) - if p.calling_c { - p.error('you cannot currently pass varg to a C function.') + if is_variadic_arg { + // TODO: why was this here? + // if p.calling_c { + // p.error('you cannot currently pass varg to a C function.') + // } + if is_indexer { + l := p.cgen.cur_line.trim_space() + index_val := l.right(l.last_index(' ')).trim_space() + p.cgen.resetln(l.left(fn_ph)) + p.table.varg_access << VargAccess{ + fn_name: p.cur_fn.name, + tok_idx: p.token_idx, + index: index_val.int() + } + p.cgen.set_placeholder(fn_ph, '${v.name}->args[$index_val]') + return typ } - if !is_indexer { - p.error('You must use array access syntax for variadic arguments.') - } - varg_type := typ.right(3) - l := p.cgen.cur_line.trim_space() - index_val := l.right(l.last_index(' ')).trim_space() - p.cgen.resetln(l.left(fn_ph)) - p.table.varg_access << VargAccess{ - fn_name: p.cur_fn.name, - tok_idx: p.token_idx, - index: index_val.int() - } - p.cgen.set_placeholder(fn_ph, '${v.name}->args[$index_val]') - return typ } // TODO move this from index_expr() // TODO if p.tok in ... @@ -3264,21 +3257,27 @@ fn (p mut Parser) for_st() { p.fgen(' ') tmp := p.get_tmp() p.cgen.start_tmp() - typ := p.bool_expression() + mut typ := p.bool_expression() is_arr := typ.starts_with('array_') is_map := typ.starts_with('map_') is_str := typ == 'string' - if !is_arr && !is_str && !is_map { + is_variadic_arg := typ.starts_with('...') + if is_variadic_arg { typ = typ.right(3) } + if !is_arr && !is_str && !is_map && !is_variadic_arg { p.error('cannot range over type `$typ`') } expr := p.cgen.end_tmp() - if p.is_js { - p.genln('var $tmp = $expr;') - } else { - p.genln('$typ $tmp = $expr;') - } + if !is_variadic_arg { + if p.is_js { + p.genln('var $tmp = $expr;') + } else { + p.genln('$typ $tmp = $expr;') + } + } pad := if is_arr { 6 } else { 4 } - var_typ := if is_str { 'byte' } else { typ.right(pad) } + var_typ := if is_str { 'byte' } + else if is_variadic_arg { typ } + else { typ.right(pad) } // typ = strings.Replace(typ, "_ptr", "*", -1) mut i_var_type := 'int' if is_arr { @@ -3292,6 +3291,9 @@ fn (p mut Parser) for_st() { i_var_type = 'byte' p.gen_for_str_header(i, tmp, var_typ, val) } + else if is_variadic_arg { + p.gen_for_varg_header(i, expr, typ, val) + } // Register temp vars if i != '_' { p.register_var(Var { @@ -3317,9 +3319,11 @@ fn (p mut Parser) for_st() { p.fspace() tmp := p.get_tmp() p.cgen.start_tmp() - typ := p.bool_expression() + mut typ := p.bool_expression() expr := p.cgen.end_tmp() is_range := p.tok == .dotdot + is_variadic_arg := typ.starts_with('...') + if is_variadic_arg { typ = typ.right(3) } mut range_end := '' if is_range { p.check_types(typ, 'int') @@ -3330,24 +3334,32 @@ fn (p mut Parser) for_st() { } is_arr := typ.contains('array') is_str := typ == 'string' - if !is_arr && !is_str && !is_range { + if !is_arr && !is_str && !is_range && !is_variadic_arg { p.error('cannot range over type `$typ`') } - if p.is_js { - p.genln('var $tmp = $expr;') - } else { - p.genln('$typ $tmp = $expr;') + if !is_variadic_arg { + if p.is_js { + p.genln('var $tmp = $expr;') + } else { + p.genln('$typ $tmp = $expr;') + } } // TODO var_type := if... - mut var_type := '' + i := p.get_tmp() + mut var_type := typ if is_arr { var_type = typ.right(6)// all after `array_` + p.gen_for_header(i, tmp, var_type, val) } else if is_str { var_type = 'byte' + p.gen_for_str_header(i, tmp, var_type, val) } else if is_range { var_type = 'int' + p.gen_for_range_header(i, range_end, tmp, var_type, val) + } else if is_variadic_arg { + p.gen_for_varg_header(i, expr, typ, val) } // println('for typ=$typ vartyp=$var_typ') // Register temp var @@ -3359,16 +3371,6 @@ fn (p mut Parser) for_st() { is_changed: true }) } - i := p.get_tmp() - if is_arr { - p.gen_for_header(i, tmp, var_type, val) - } - else if is_str { - p.gen_for_str_header(i, tmp, var_type, val) - } - else if is_range { - p.gen_for_range_header(i, range_end, tmp, var_type, val) - } } else { // `for a < b {` p.gen('while (')