v/vlib/v/gen/cgen.v

1968 lines
46 KiB
V
Raw Normal View History

2019-12-30 08:30:24 +01:00
module gen
2019-12-24 18:54:43 +01:00
import (
strings
v.ast
v.table
2020-03-05 23:27:21 +01:00
v.depgraph
term
2019-12-24 18:54:43 +01:00
)
struct Gen {
2020-03-07 16:39:15 +01:00
out strings.Builder
typedefs strings.Builder
definitions strings.Builder // typedefs, defines etc (everything that goes to the top of the file)
inits strings.Builder // contents of `void _vinit(){}`
2020-03-07 16:39:15 +01:00
table &table.Table
mut:
2020-03-21 19:52:19 +01:00
file ast.File
2020-03-07 16:39:15 +01:00
fn_decl &ast.FnDecl // pointer to the FnDecl we are currently inside otherwise 0
tmp_count int
2020-03-14 13:15:07 +01:00
varaidic_args map[string]int
2020-03-07 16:39:15 +01:00
is_c_call bool // e.g. `C.printf("v")`
2020-03-11 23:22:40 +01:00
is_assign_expr bool // inside left part of assign expr (for array_set(), etc)
2020-03-07 16:39:15 +01:00
is_array_set bool
2020-03-10 23:21:26 +01:00
is_amp bool // for `&Foo{}` to merge PrefixExpr `&` and StructInit `Foo{}`; also for `&byte(0)` etc
2020-03-15 08:18:42 +01:00
optionals []string // to avoid duplicates TODO perf, use map
inside_ternary bool // ?: comma separated statements on a single line
2020-03-19 15:18:29 +01:00
stmt_start_pos int
2020-03-20 13:03:42 +01:00
right_is_opt bool
2020-03-21 19:52:19 +01:00
autofree bool
indent int
empty_line bool
2019-12-24 18:54:43 +01:00
}
const (
tabs = ['', '\t', '\t\t', '\t\t\t', '\t\t\t\t', '\t\t\t\t\t', '\t\t\t\t\t\t', '\t\t\t\t\t\t\t',
'\t\t\t\t\t\t\t\t']
)
pub fn cgen(files []ast.File, table &table.Table) string {
2020-03-22 12:06:33 +01:00
// println('start cgen2')
2019-12-28 11:02:06 +01:00
mut g := Gen{
out: strings.new_builder(100)
typedefs: strings.new_builder(100)
2020-01-02 08:30:15 +01:00
definitions: strings.new_builder(100)
2020-03-21 09:29:16 +01:00
inits: strings.new_builder(100)
table: table
fn_decl: 0
2020-03-21 19:52:19 +01:00
autofree: true
indent: -1
2019-12-28 11:02:06 +01:00
}
g.init()
2020-03-22 12:06:33 +01:00
mut autofree_used := false
2019-12-30 12:10:46 +01:00
for file in files {
2020-03-21 19:52:19 +01:00
g.file = file
2020-03-22 12:06:33 +01:00
// println('\ncgen "$g.file.path" nr_stmts=$file.stmts.len')
if g.file.path == '' || g.file.path.ends_with('.vv') || g.file.path.contains('/vlib/') {
// cgen test or building V
2020-03-22 12:06:33 +01:00
// println('autofree=false')
2020-03-21 19:52:19 +01:00
g.autofree = false
}
2020-03-22 12:06:33 +01:00
else {
g.autofree = true
autofree_used = true
}
2020-02-17 22:50:04 +01:00
g.stmts(file.stmts)
2019-12-24 18:54:43 +01:00
}
2020-03-22 12:06:33 +01:00
if autofree_used {
g.autofree = true // so that void _vcleanup is generated
}
2020-03-14 13:15:07 +01:00
g.write_variadic_types()
2020-03-21 11:47:23 +01:00
// g.write_str_definitions()
2020-03-21 10:22:16 +01:00
g.write_init_function()
return g.typedefs.str() + g.definitions.str() + g.out.str()
}
pub fn (g mut Gen) init() {
g.definitions.writeln('// Generated by the V compiler')
g.definitions.writeln('#include <inttypes.h>') // int64_t etc
g.definitions.writeln(c_builtin_types)
g.definitions.writeln(c_headers)
2020-03-21 07:10:53 +01:00
g.definitions.writeln('\nstring _STR(const char*, ...);\n')
g.definitions.writeln('\nstring _STR_TMP(const char*, ...);\n')
2020-03-10 23:21:26 +01:00
g.write_builtin_types()
g.write_typedef_types()
2020-03-21 11:47:23 +01:00
g.write_str_definitions()
2020-03-05 23:27:21 +01:00
g.write_sorted_types()
g.write_multi_return_types()
2020-03-06 12:06:41 +01:00
g.definitions.writeln('// end of definitions #endif')
2020-03-05 23:27:21 +01:00
}
2020-03-06 13:43:22 +01:00
// V type to C type
2020-03-13 05:57:51 +01:00
pub fn (g mut Gen) typ(t table.Type) string {
2020-03-06 22:36:51 +01:00
nr_muls := table.type_nr_muls(t)
sym := g.table.get_type_symbol(t)
mut styp := sym.name.replace_each(['.', '__'])
if nr_muls > 0 {
styp += strings.repeat(`*`, nr_muls)
}
if styp.starts_with('C__') {
styp = styp[3..]
}
2020-03-19 10:07:31 +01:00
if styp in ['stat', 'dirent*', 'tm', 'tm*', 'winsize'] {
// TODO perf and other C structs
2020-03-13 12:22:36 +01:00
styp = 'struct $styp'
}
2020-03-13 05:57:51 +01:00
if table.type_is_optional(t) {
styp = 'Option_' + styp
2020-03-15 08:18:42 +01:00
if !(styp in g.optionals) {
g.definitions.writeln('typedef Option $styp;')
g.optionals << styp
}
2020-03-13 05:57:51 +01:00
}
2020-03-06 22:36:51 +01:00
return styp
}
/*
pub fn (g &Gen) styp(t string) string {
2020-03-06 13:43:22 +01:00
return t.replace_each(['.', '__'])
}
2020-03-06 22:36:51 +01:00
*/
//
pub fn (g mut Gen) write_typedef_types() {
2020-03-06 13:43:22 +01:00
for typ in g.table.types {
match typ.kind {
.alias {
parent := &g.table.types[typ.parent_idx]
styp := typ.name.replace('.', '__')
parent_styp := parent.name.replace('.', '__')
g.definitions.writeln('typedef $parent_styp $styp;')
}
.array {
styp := typ.name.replace('.', '__')
g.definitions.writeln('typedef array $styp;')
}
.array_fixed {
styp := typ.name.replace('.', '__')
// array_fixed_char_300 => char x[300]
mut fixed := styp[12..]
len := styp.after('_')
fixed = fixed[..fixed.len - len.len - 1]
g.definitions.writeln('typedef $fixed $styp [$len];')
}
.map {
styp := typ.name.replace('.', '__')
g.definitions.writeln('typedef map $styp;')
}
2020-03-16 10:12:03 +01:00
.function {
info := typ.info as table.FnType
func := info.func
if !info.has_decl && !info.is_anon {
fn_name := func.name.replace('.', '__')
g.definitions.write('typedef ${g.typ(func.return_type)} (*$fn_name)(')
for i, arg in func.args {
2020-03-16 10:12:03 +01:00
g.definitions.write(g.typ(arg.typ))
if i < func.args.len - 1 {
g.definitions.write(',')
}
}
g.definitions.writeln(');')
}
}
else {
continue
}
}
2020-03-06 13:43:22 +01:00
}
}
2020-03-05 23:27:21 +01:00
pub fn (g mut Gen) write_multi_return_types() {
g.definitions.writeln('// multi return structs')
for typ in g.table.types {
// sym := g.table.get_type_symbol(typ)
if typ.kind != .multi_return {
continue
}
name := typ.name.replace('.', '__')
info := typ.info as table.MultiReturn
g.definitions.writeln('typedef struct {')
// TODO copy pasta StructDecl
// for field in struct_info.fields {
for i, mr_typ in info.types {
type_name := g.typ(mr_typ)
2020-03-05 00:43:02 +01:00
g.definitions.writeln('\t$type_name arg${i};')
}
g.definitions.writeln('} $name;\n')
// g.typedefs.writeln('typedef struct $name $name;')
}
2019-12-24 18:54:43 +01:00
}
2020-03-14 13:15:07 +01:00
pub fn (g mut Gen) write_variadic_types() {
if g.varaidic_args.size > 0 {
g.definitions.writeln('// variadic structs')
}
for type_str, arg_len in g.varaidic_args {
typ := table.Type(type_str.int())
type_name := g.typ(typ)
struct_name := 'varg_' + type_name.replace('*', '_ptr')
g.definitions.writeln('struct $struct_name {')
g.definitions.writeln('\tint len;')
g.definitions.writeln('\t$type_name args[$arg_len];')
g.definitions.writeln('};\n')
g.typedefs.writeln('typedef struct $struct_name $struct_name;')
}
}
2019-12-28 11:02:06 +01:00
pub fn (g &Gen) save() {}
2019-12-24 18:54:43 +01:00
pub fn (g mut Gen) write(s string) {
if g.indent > 0 && g.empty_line {
g.out.write(tabs[g.indent])
// g.line_len += g.indent * 4
}
2019-12-24 18:54:43 +01:00
g.out.write(s)
g.empty_line = false
2019-12-24 18:54:43 +01:00
}
pub fn (g mut Gen) writeln(s string) {
if g.indent > 0 && g.empty_line {
g.out.write(tabs[g.indent])
}
2019-12-24 18:54:43 +01:00
g.out.writeln(s)
g.empty_line = true
2019-12-24 18:54:43 +01:00
}
pub fn (g mut Gen) new_tmp_var() string {
g.tmp_count++
return 'tmp$g.tmp_count'
}
pub fn (g mut Gen) reset_tmp_count() {
g.tmp_count = 0
}
2020-02-07 14:49:14 +01:00
fn (g mut Gen) stmts(stmts []ast.Stmt) {
g.indent++
2020-02-07 14:49:14 +01:00
for stmt in stmts {
g.stmt(stmt)
// if !g.inside_ternary {
// g.writeln('')
// }
2020-02-07 14:49:14 +01:00
}
g.indent--
2020-02-07 14:49:14 +01:00
}
2019-12-28 14:11:05 +01:00
fn (g mut Gen) stmt(node ast.Stmt) {
2020-03-19 15:18:29 +01:00
g.stmt_start_pos = g.out.len
2020-01-06 16:13:12 +01:00
// println('cgen.stmt()')
// g.writeln('//// stmt start')
2019-12-28 14:11:05 +01:00
match node {
2020-03-02 18:43:41 +01:00
ast.AssignStmt {
g.gen_assign_stmt(it)
2020-03-02 18:43:41 +01:00
}
ast.AssertStmt {
2020-03-11 03:52:01 +01:00
g.writeln('// assert')
2020-03-02 18:43:41 +01:00
// TODO
}
ast.Attr {
2020-03-05 00:43:02 +01:00
g.writeln('//[$it.name]')
2020-03-02 18:43:41 +01:00
}
ast.BranchStmt {
// continue or break
2020-03-05 00:43:02 +01:00
g.write(it.tok.kind.str())
g.writeln(';')
2020-03-02 18:43:41 +01:00
}
ast.ConstDecl {
2020-03-06 14:03:35 +01:00
g.const_decl(it)
}
2020-03-02 18:43:41 +01:00
ast.CompIf {
2020-03-05 00:43:02 +01:00
g.writeln('//#ifdef ')
g.expr(it.cond)
2020-03-22 11:53:08 +01:00
// println('comp if stmts $g.file.path:$it.pos.line_nr')
g.stmts(it.stmts)
2020-03-22 11:53:08 +01:00
// println('done')
2020-03-05 00:43:02 +01:00
g.writeln('//#endif')
2020-03-02 18:43:41 +01:00
}
ast.DeferStmt {
g.writeln('// defer')
}
2020-02-25 11:52:41 +01:00
ast.EnumDecl {
g.writeln('//')
/*
name := it.name.replace('.', '__')
g.definitions.writeln('typedef enum {')
2020-02-25 11:52:41 +01:00
for i, val in it.vals {
g.definitions.writeln('\t${name}_$val, // $i')
2020-02-25 11:52:41 +01:00
}
g.definitions.writeln('} $name;')
*/
2020-02-25 11:52:41 +01:00
}
2020-03-02 18:43:41 +01:00
ast.ExprStmt {
g.expr(it.expr)
2020-03-18 19:56:59 +01:00
expr := it.expr
match expr {
2020-03-02 18:43:41 +01:00
// no ; after an if expression
ast.IfExpr {}
else {
if !g.inside_ternary {
g.writeln(';')
}
2020-03-02 18:43:41 +01:00
}
}
}
2019-12-28 14:11:05 +01:00
ast.FnDecl {
2020-02-03 11:13:36 +01:00
g.fn_decl = it // &it
g.gen_fn_decl(it)
g.writeln('')
2019-12-28 14:11:05 +01:00
}
2020-03-02 18:43:41 +01:00
ast.ForCStmt {
g.write('for (')
if !it.has_init {
g.write('; ')
}
else {
g.stmt(it.init)
}
2020-03-02 18:43:41 +01:00
g.expr(it.cond)
g.write('; ')
2020-03-05 01:20:36 +01:00
// g.stmt(it.inc)
2020-03-05 00:43:02 +01:00
g.expr(it.inc)
2020-03-02 18:43:41 +01:00
g.writeln(') {')
g.stmts(it.stmts)
2020-03-02 18:43:41 +01:00
g.writeln('}')
}
ast.ForInStmt {
2020-03-05 00:43:02 +01:00
if it.is_range {
2020-03-21 10:22:16 +01:00
// `for x in 1..10 {`
2020-03-05 00:43:02 +01:00
i := g.new_tmp_var()
g.write('for (int $i = ')
g.expr(it.cond)
g.write('; $i < ')
g.expr(it.high)
g.writeln('; $i++) { ')
g.writeln('int $it.val_var = $i;')
g.stmts(it.stmts)
2020-03-05 00:43:02 +01:00
g.writeln('}')
}
// TODO:
2020-03-21 10:22:16 +01:00
else if it.kind == .array {
// `for num in nums {`
g.writeln('// FOR IN')
i := if it.key_var == '' { g.new_tmp_var() } else { it.key_var }
g.write('for (int $i = 0; $i < ')
g.expr(it.cond)
g.writeln('.len; $i++) {')
styp := g.typ(it.element_type)
g.write('$styp $it.val_var = (($styp*)')
g.expr(it.cond)
g.writeln('.data)[$i];')
g.stmts(it.stmts)
g.writeln('}')
}
2020-03-02 18:43:41 +01:00
}
ast.ForStmt {
g.write('while (')
2020-03-10 23:21:26 +01:00
if it.is_inf {
g.write('1')
}
else {
g.expr(it.cond)
}
2020-03-07 06:02:32 +01:00
g.writeln(') {')
g.stmts(it.stmts)
2020-03-02 18:43:41 +01:00
g.writeln('}')
}
ast.GlobalDecl {
2020-03-06 22:36:51 +01:00
styp := g.typ(it.typ)
2020-03-06 16:31:40 +01:00
g.definitions.writeln('$styp $it.name; // global')
2020-03-02 18:43:41 +01:00
}
ast.GotoLabel {
g.writeln('$it.name:')
}
2020-03-02 18:43:41 +01:00
ast.HashStmt {
2020-03-05 00:43:02 +01:00
// #include etc
2020-03-15 00:46:08 +01:00
typ := it.val.all_before(' ')
if typ in ['include', 'define'] {
2020-03-15 00:46:08 +01:00
g.definitions.writeln('#$it.val')
}
2020-03-02 18:43:41 +01:00
}
ast.Import {}
2019-12-28 14:11:05 +01:00
ast.Return {
2020-03-13 05:57:51 +01:00
g.return_statement(it)
2019-12-28 14:11:05 +01:00
}
ast.StructDecl {
name := it.name.replace('.', '__')
2020-03-05 23:27:21 +01:00
// g.writeln('typedef struct {')
// for field in it.fields {
// field_type_sym := g.table.get_type_symbol(field.typ)
// g.writeln('\t$field_type_sym.name $field.name;')
// }
// g.writeln('} $name;')
if !it.is_c {
g.typedefs.writeln('typedef struct $name $name;')
}
}
ast.TypeDecl {
2020-03-16 03:19:26 +01:00
g.writeln('// TypeDecl')
}
2020-03-02 18:43:41 +01:00
ast.UnsafeStmt {
g.stmts(it.stmts)
}
2019-12-28 14:11:05 +01:00
else {
2020-02-25 11:52:41 +01:00
verror('cgen.stmt(): unhandled node ' + typeof(node))
2019-12-28 14:11:05 +01:00
}
}
}
2020-03-17 15:13:55 +01:00
// use instead of expr() when you need to cast to sum type (can add other casts also)
2020-03-19 09:40:21 +01:00
fn (g mut Gen) expr_with_cast(expr ast.Expr, got_type table.Type, exp_type table.Type) {
2020-03-17 15:13:55 +01:00
// cast to sum type
if exp_type != table.void_type && exp_type != 0 && got_type != 0 {
2020-03-16 07:42:45 +01:00
exp_sym := g.table.get_type_symbol(exp_type)
if exp_sym.kind == .sum_type {
sum_info := exp_sym.info as table.SumType
if got_type in sum_info.variants {
2020-03-17 15:13:55 +01:00
got_styp := g.typ(got_type)
exp_styp := g.typ(exp_type)
got_idx := table.type_idx(got_type)
2020-03-17 16:40:41 +01:00
g.write('/* sum type cast */ ($exp_styp) {.obj = memdup(&(${got_styp}[]) {')
2020-03-17 15:13:55 +01:00
g.expr(expr)
2020-03-18 10:42:56 +01:00
g.write('}, sizeof($got_styp)), .typ = $got_idx}')
return
2020-03-16 07:42:45 +01:00
}
}
}
2020-03-17 15:13:55 +01:00
// no cast
2020-03-16 07:42:45 +01:00
g.expr(expr)
}
fn (g mut Gen) gen_assign_stmt(assign_stmt ast.AssignStmt) {
// multi return
2020-03-22 13:19:45 +01:00
// g.write('/*assign_stmt*/')
if assign_stmt.left.len > assign_stmt.right.len {
mut return_type := table.void_type
match assign_stmt.right[0] {
ast.CallExpr {
return_type = it.return_type
}
ast.MethodCallExpr {
return_type = it.return_type
}
else {
panic('expected call')
}
2020-03-10 23:21:26 +01:00
}
mr_var_name := 'mr_$assign_stmt.pos.pos'
2020-03-20 04:59:06 +01:00
if table.type_is_optional(return_type) {
return_type = table.type_clear_extra(return_type)
mr_styp := g.typ(return_type)
g.write('$mr_styp $mr_var_name = (*(${mr_styp}*)')
g.expr(assign_stmt.right[0])
g.write('.data)')
}
else {
mr_styp := g.typ(return_type)
g.write('$mr_styp $mr_var_name = ')
g.expr(assign_stmt.right[0])
}
g.writeln(';')
for i, ident in assign_stmt.left {
if ident.kind == .blank_ident {
continue
}
ident_var_info := ident.var_info()
styp := g.typ(ident_var_info.typ)
if assign_stmt.op == .decl_assign {
g.write('$styp ')
}
g.expr(ident)
g.writeln(' = ${mr_var_name}.arg$i;')
}
}
// `a := 1` | `a,b := 1,2`
else {
for i, ident in assign_stmt.left {
val := assign_stmt.right[i]
ident_var_info := ident.var_info()
2020-03-10 23:21:26 +01:00
styp := g.typ(ident_var_info.typ)
if ident.kind == .blank_ident {
2020-03-18 01:19:23 +01:00
if ast.expr_is_call(val) {
2020-03-10 23:21:26 +01:00
g.expr(val)
}
else {
2020-03-10 23:21:26 +01:00
g.write('{$styp _ = ')
g.expr(val)
g.writeln(';}')
}
}
else {
2020-03-12 10:07:42 +01:00
mut is_fixed_array_init := false
2020-03-22 13:19:45 +01:00
mut is_ident := false
right_sym := g.table.get_type_symbol(assign_stmt.right_types[i])
2020-03-12 10:07:42 +01:00
match val {
ast.ArrayInit {
2020-03-22 13:19:45 +01:00
is_fixed_array_init = right_sym.kind == .array_fixed
}
ast.Ident {
is_ident = true
2020-03-12 10:07:42 +01:00
}
else {}
}
2020-03-17 15:13:55 +01:00
is_decl := assign_stmt.op == .decl_assign
if is_decl {
g.write('$styp ')
}
g.expr(ident)
2020-03-22 13:19:45 +01:00
if g.autofree && right_sym.kind == .array && is_ident {
// `arr1 = arr2` => `arr1 = arr2.clone()`
g.write(' = array_clone(&')
g.expr(val)
g.write(')')
}
2020-03-22 13:40:53 +01:00
else if g.autofree && right_sym.kind == .string && is_ident {
// `str1 = str2` => `str1 = str2.clone()`
g.write(' = string_clone(')
g.expr(val)
g.write(')')
}
2020-03-22 13:19:45 +01:00
else if !is_fixed_array_init {
2020-03-12 10:07:42 +01:00
g.write(' = ')
2020-03-17 15:13:55 +01:00
if !is_decl {
2020-03-19 09:40:21 +01:00
g.expr_with_cast(val, assign_stmt.left_types[i], ident_var_info.typ)
}
else {
2020-03-16 07:42:45 +01:00
g.expr(val)
}
2020-03-12 10:07:42 +01:00
}
}
g.writeln(';')
}
}
}
fn (g mut Gen) gen_fn_decl(it ast.FnDecl) {
if it.is_c || it.name == 'malloc' || it.no_body {
return
}
g.reset_tmp_count()
is_main := it.name == 'main'
if is_main {
2020-03-21 10:22:16 +01:00
g.write('int ${it.name}(int argc, char** argv')
}
else {
mut name := it.name
if it.is_method {
name = g.table.get_type_symbol(it.receiver.typ).name + '_' + name
}
name = name.replace('.', '__')
if name.starts_with('_op_') {
name = op_to_fn_name(name)
}
if name == 'exit' {
name = 'v_exit'
}
2020-03-21 19:52:19 +01:00
if name == 'free' {
name = 'v_free'
}
// type_name := g.table.type_to_str(it.return_type)
type_name := g.typ(it.return_type)
g.write('$type_name ${name}(')
g.definitions.write('$type_name ${name}(')
}
// Receiver is the first argument
2020-03-10 23:21:26 +01:00
/*
if it.is_method {
2020-03-07 22:37:03 +01:00
mut styp := g.typ(it.receiver.typ)
// if table.type_nr_muls(it.receiver.typ) > 0 {
2020-03-08 19:38:27 +01:00
// if it.rec_mut {
// styp += '*'
// }
2020-03-10 23:21:26 +01:00
g.write('$styp $it.receiver.name ')
2020-03-07 04:45:35 +01:00
// TODO mut
g.definitions.write('$styp $it.receiver.name')
if it.args.len > 0 {
g.write(', ')
g.definitions.write(', ')
}
}
2020-03-10 23:21:26 +01:00
*/
//
g.fn_args(it.args, it.is_variadic)
g.writeln(') { ')
if !is_main {
g.definitions.writeln(');')
}
2020-03-21 10:22:16 +01:00
if is_main {
g.writeln('_vinit();')
2020-03-21 19:52:19 +01:00
if g.autofree {
g.writeln('free(os__args.data); // empty, inited in _vinit()')
}
2020-03-21 10:22:16 +01:00
g.writeln('os__args = os__init_os_args(argc, (byteptr*)argv);')
}
g.stmts(it.stmts)
2020-03-21 19:52:19 +01:00
// ////////////
2020-03-22 08:59:44 +01:00
if g.autofree {
2020-03-21 19:52:19 +01:00
scope := g.file.scope.innermost(it.pos.pos - 1)
2020-03-21 20:02:37 +01:00
for _, var in scope.vars {
2020-03-21 19:52:19 +01:00
sym := g.table.get_type_symbol(var.typ)
if sym.kind == .array && !table.type_is_optional(var.typ) {
g.writeln('array_free($var.name); // autofree')
}
2020-03-22 08:59:44 +01:00
// println(var.name)
2020-03-21 19:52:19 +01:00
}
}
// /////////
if is_main {
2020-03-21 19:52:19 +01:00
if g.autofree {
g.writeln('_vcleanup();')
}
g.writeln('return 0;')
}
g.writeln('}')
g.fn_decl = 0
}
fn (g mut Gen) fn_args(args []table.Arg, is_variadic bool) {
no_names := args.len > 0 && args[0].name == 'arg_1'
for i, arg in args {
arg_type_sym := g.table.get_type_symbol(arg.typ)
2020-03-15 00:46:08 +01:00
mut arg_type_name := g.typ(arg.typ) // arg_type_sym.name.replace('.', '__')
is_varg := i == args.len - 1 && is_variadic
2020-03-14 13:15:07 +01:00
if is_varg {
g.varaidic_args[int(arg.typ).str()] = 0
arg_type_name = 'varg_' + g.typ(arg.typ).replace('*', '_ptr')
}
2020-03-12 04:34:00 +01:00
if arg_type_sym.kind == .function {
2020-03-16 10:12:03 +01:00
info := arg_type_sym.info as table.FnType
func := info.func
2020-03-12 04:34:00 +01:00
g.write('${g.typ(func.return_type)} (*$arg.name)(')
g.definitions.write('${g.typ(func.return_type)} (*$arg.name)(')
g.fn_args(func.args, func.is_variadic)
2020-03-12 04:34:00 +01:00
g.write(')')
g.definitions.write(')')
}
else if no_names {
g.write(arg_type_name)
g.definitions.write(arg_type_name)
}
else {
2020-03-11 21:11:27 +01:00
mut nr_muls := table.type_nr_muls(arg.typ)
2020-03-15 00:46:08 +01:00
s := arg_type_name + ' ' + arg.name
2020-03-11 21:11:27 +01:00
if arg.is_mut {
// mut arg needs one *
nr_muls = 1
}
2020-03-15 00:46:08 +01:00
// if nr_muls > 0 && !is_varg {
// s = arg_type_name + strings.repeat(`*`, nr_muls) + ' ' + arg.name
// }
2020-03-06 20:22:58 +01:00
g.write(s)
g.definitions.write(s)
}
if i < args.len - 1 {
g.write(', ')
g.definitions.write(', ')
}
}
}
fn (g mut Gen) expr(node ast.Expr) {
// println('cgen expr() line_nr=$node.pos.line_nr')
2019-12-24 18:54:43 +01:00
match node {
2020-02-17 22:50:04 +01:00
ast.ArrayInit {
type_sym := g.table.get_type_symbol(it.typ)
2020-03-12 09:29:52 +01:00
if type_sym.kind != .array_fixed {
elem_sym := g.table.get_type_symbol(it.elem_type)
2020-03-15 07:42:45 +01:00
elem_type_str := g.typ(it.elem_type)
2020-03-21 19:52:19 +01:00
if it.exprs.len == 0 {
g.write('new_array($it.exprs.len, $it.exprs.len, sizeof($elem_type_str))')
}
else {
g.write('new_array_from_c_array($it.exprs.len, $it.exprs.len, sizeof($elem_type_str), ')
g.writeln('($elem_type_str[]){\t')
for expr in it.exprs {
g.expr(expr)
g.write(', ')
}
g.write('\n})')
2020-03-12 09:29:52 +01:00
}
2020-02-17 22:50:04 +01:00
}
2020-03-12 09:29:52 +01:00
else {}
2020-02-17 22:50:04 +01:00
}
ast.AsCast {
2020-03-18 13:55:46 +01:00
styp := g.typ(it.typ)
expr_type_sym := g.table.get_type_symbol(it.expr_type)
if expr_type_sym.kind == .sum_type {
g.write('/* as */ *($styp*)')
g.expr(it.expr)
g.write('.obj')
}
}
2020-01-06 16:13:12 +01:00
ast.AssignExpr {
2020-03-22 13:19:45 +01:00
// g.write('/*assign_expr*/')
2020-03-18 01:19:23 +01:00
if ast.expr_is_blank_ident(it.left) {
if ast.expr_is_call(it.val) {
2020-03-18 00:41:04 +01:00
g.expr(it.val)
}
else {
g.write('{${g.typ(it.left_type)} _ = ')
g.expr(it.val)
g.writeln(';}')
2020-03-18 00:41:04 +01:00
}
2020-03-07 16:39:15 +01:00
}
2020-03-18 00:41:04 +01:00
else {
g.is_assign_expr = true
2020-03-20 13:03:42 +01:00
if table.type_is_optional(it.right_type) {
g.right_is_opt = true
}
2020-03-18 00:41:04 +01:00
mut str_add := false
if it.left_type == table.string_type_idx && it.op == .plus_assign {
// str += str2 => `str = string_add(str, str2)`
g.expr(it.left)
g.write(' = string_add(')
str_add = true
}
g.expr(it.left)
// arr[i] = val => `array_set(arr, i, val)`, not `array_get(arr, i) = val`
if !g.is_array_set && !str_add {
g.write(' $it.op.str() ')
}
else if str_add {
g.write(', ')
}
g.is_assign_expr = false
2020-03-19 09:40:21 +01:00
g.expr_with_cast(it.val, it.right_type, it.left_type)
2020-03-18 00:41:04 +01:00
if g.is_array_set {
g.write(' })')
g.is_array_set = false
}
else if str_add {
g.write(')')
}
2020-03-20 13:03:42 +01:00
g.right_is_opt = false
}
2020-01-06 16:13:12 +01:00
}
ast.Assoc {
2020-03-19 07:59:01 +01:00
g.assoc(it)
}
2020-02-17 22:50:04 +01:00
ast.BoolLiteral {
g.write(it.val.str())
}
2019-12-29 07:24:17 +01:00
ast.CallExpr {
2020-03-21 19:52:19 +01:00
g.call_expr(it)
}
ast.CastExpr {
2020-03-10 23:21:26 +01:00
// g.write('/*cast*/')
if g.is_amp {
// &Foo(0) => ((Foo*)0)
g.out.go_back(1)
}
2020-03-07 16:23:10 +01:00
if it.typ == table.string_type_idx {
// `tos(str, len)`, `tos2(str)`
2020-03-10 23:21:26 +01:00
if it.has_arg {
g.write('tos(')
}
else {
g.write('tos2(')
}
2020-03-07 16:23:10 +01:00
g.expr(it.expr)
sym := g.table.get_type_symbol(it.expr_type)
if sym.kind == .array {
// if we are casting an array, we need to add `.data`
g.write('.data')
}
2020-03-07 16:23:10 +01:00
if it.has_arg {
// len argument
g.write(', ')
2020-03-07 16:23:10 +01:00
g.expr(it.arg)
}
g.write(')')
}
else {
2020-03-10 23:21:26 +01:00
// styp := g.table.type_to_str(it.typ)
styp := g.typ(it.typ)
// g.write('($styp)(')
g.write('(($styp)(')
// if g.is_amp {
// g.write('*')
// }
// g.write(')(')
2020-03-07 16:23:10 +01:00
g.expr(it.expr)
2020-03-10 23:21:26 +01:00
g.write('))')
2020-03-07 16:23:10 +01:00
}
2019-12-29 07:24:17 +01:00
}
ast.CharLiteral {
g.write("'$it.val'")
}
ast.EnumVal {
2020-03-15 00:46:08 +01:00
// g.write('/*EnumVal*/${it.mod}${it.enum_name}_$it.val')
styp := g.typ(it.typ)
g.write(styp)
2020-03-15 02:51:31 +01:00
g.write('_$it.val')
}
ast.FloatLiteral {
g.write(it.val)
}
2019-12-28 14:11:05 +01:00
ast.Ident {
2020-03-13 05:57:51 +01:00
g.ident(it)
2019-12-24 18:54:43 +01:00
}
ast.IfExpr {
2020-03-17 16:40:41 +01:00
g.if_expr(it)
}
ast.IfGuardExpr {
g.write('/* guard */')
}
ast.IndexExpr {
g.index_expr(it)
}
ast.InfixExpr {
2020-03-07 16:39:15 +01:00
g.infix_expr(it)
}
ast.IntegerLiteral {
g.write(it.val.int().str())
}
2020-02-07 14:49:14 +01:00
ast.MatchExpr {
2020-03-16 03:56:38 +01:00
g.match_expr(it)
2020-02-07 14:49:14 +01:00
}
2020-03-07 08:13:00 +01:00
ast.MapInit {
key_typ_sym := g.table.get_type_symbol(it.key_type)
value_typ_sym := g.table.get_type_symbol(it.value_type)
2020-03-17 15:13:55 +01:00
key_typ_str := key_typ_sym.name.replace('.', '__')
value_typ_str := value_typ_sym.name.replace('.', '__')
2020-03-07 08:13:00 +01:00
size := it.vals.len
2020-03-07 14:31:40 +01:00
if size > 0 {
2020-03-17 15:13:55 +01:00
g.write('new_map_init($size, sizeof($value_typ_str), (${key_typ_str}[$size]){')
2020-03-07 08:13:00 +01:00
for expr in it.keys {
g.expr(expr)
g.write(', ')
}
2020-03-17 15:13:55 +01:00
g.write('}, (${value_typ_str}[$size]){')
2020-03-07 08:13:00 +01:00
for expr in it.vals {
g.expr(expr)
g.write(', ')
}
g.write('})')
}
else {
2020-03-17 15:13:55 +01:00
g.write('new_map(1, sizeof($value_typ_str))')
2020-03-07 08:13:00 +01:00
}
}
ast.MethodCallExpr {
// TODO: there are still due to unchecked exprs (opt/some fn arg)
if it.expr_type == 0 {
verror('method receiver type is 0, this means there are some uchecked exprs')
}
typ_sym := g.table.get_type_symbol(it.receiver_type)
// rec_sym := g.table.get_type_symbol(it.receiver_type)
mut receiver_name := typ_sym.name
2020-03-19 15:18:29 +01:00
if typ_sym.kind == .array && it.name == 'filter' {
g.gen_filter(it)
return
}
if typ_sym.kind == .array && it.name in
// TODO performance, detect `array` method differently
2020-03-19 08:49:47 +01:00
['repeat', 'sort_with_compare', 'free', 'push_many', 'trim',
//
'first', 'last', 'clone'] {
// && rec_sym.name == 'array' {
// && rec_sym.name == 'array' && receiver_name.starts_with('array') {
// `array_byte_clone` => `array_clone`
receiver_name = 'array'
2020-03-19 19:36:15 +01:00
if it.name in ['last', 'first'] {
return_type_str := g.typ(it.return_type)
g.write('*($return_type_str*)')
}
}
name := '${receiver_name}_$it.name'.replace('.', '__')
2020-03-10 23:21:26 +01:00
// if it.receiver_type != 0 {
// g.write('/*${g.typ(it.receiver_type)}*/')
// g.write('/*expr_type=${g.typ(it.expr_type)} rec type=${g.typ(it.receiver_type)}*/')
// }
g.write('${name}(')
2020-03-10 23:21:26 +01:00
if table.type_is_ptr(it.receiver_type) && !table.type_is_ptr(it.expr_type) {
// The receiver is a reference, but the caller provided a value
// Add `&` automatically.
// TODO same logic in call_args()
2020-03-10 23:21:26 +01:00
g.write('&')
}
else if !table.type_is_ptr(it.receiver_type) && table.type_is_ptr(it.expr_type) {
g.write('/*rec*/*')
}
g.expr(it.expr)
if it.args.len > 0 {
g.write(', ')
}
2020-03-11 23:22:40 +01:00
// /////////
/*
if name.contains('subkeys') {
println('call_args $name $it.arg_types.len')
for t in it.arg_types {
sym := g.table.get_type_symbol(t)
print('$sym.name ')
}
println('')
}
*/
// ///////
g.call_args(it.args)
g.write(')')
}
ast.None {
2020-03-13 05:57:51 +01:00
g.write('opt_none()')
}
ast.ParExpr {
g.write('(')
g.expr(it.expr)
g.write(')')
}
ast.PostfixExpr {
g.expr(it.expr)
g.write(it.op.str())
}
ast.PrefixExpr {
2020-03-10 23:21:26 +01:00
if it.op == .amp {
g.is_amp = true
}
2020-03-06 20:25:38 +01:00
// g.write('/*pref*/')
2020-03-10 23:21:26 +01:00
g.write(it.op.str())
g.expr(it.right)
2020-03-10 23:21:26 +01:00
g.is_amp = false
}
/*
ast.UnaryExpr {
// probably not :D
if it.op in [.inc, .dec] {
g.expr(it.left)
g.write(it.op.str())
}
else {
g.write(it.op.str())
g.expr(it.left)
}
}
*/
ast.SizeOf {
styp := g.typ(it.typ)
g.write('sizeof($styp)')
}
ast.StringLiteral {
escaped_val := it.val.replace_each(['"', '\\"',
'\r\n', '\\n',
'\n', '\\n'])
if g.is_c_call {
2020-03-21 07:10:53 +01:00
// In C calls we have to generate C strings
// `C.printf("hi")` => `printf("hi");`
g.write('"$escaped_val"')
}
else {
g.write('tos3("$escaped_val")')
}
}
2020-03-21 07:01:06 +01:00
ast.StringInterLiteral {
g.string_inter_literal(it)
}
// `user := User{name: 'Bob'}`
ast.StructInit {
2020-03-06 22:36:51 +01:00
styp := g.typ(it.typ)
2020-03-10 23:21:26 +01:00
if g.is_amp {
g.out.go_back(1) // delete the & already generated in `prefix_expr()
g.write('($styp*)memdup(&($styp){')
}
else {
g.writeln('($styp){')
}
for i, field in it.fields {
g.write('\t.$field = ')
2020-03-19 09:40:21 +01:00
g.expr_with_cast(it.exprs[i], it.expr_types[i], it.expected_types[i])
g.writeln(', ')
}
if it.fields.len == 0 {
g.write('0')
}
g.write('}')
2020-03-10 23:21:26 +01:00
if g.is_amp {
g.write(', sizeof($styp))')
}
}
ast.SelectorExpr {
g.expr(it.expr)
2020-03-08 19:38:27 +01:00
// if table.type_nr_muls(it.expr_type) > 0 {
if table.type_is_ptr(it.expr_type) {
2020-03-07 04:45:35 +01:00
g.write('->')
}
else {
2020-03-11 05:25:11 +01:00
// g.write('. /*typ= $it.expr_type */') // ${g.typ(it.expr_type)} /')
2020-03-07 04:45:35 +01:00
g.write('.')
}
2020-03-11 05:25:11 +01:00
if it.expr_type == 0 {
verror('cgen: SelectorExpr typ=0 field=$it.field')
}
g.write(it.field)
}
ast.Type {
2020-03-16 03:19:26 +01:00
// match sum Type
// g.write('/* Type */')
g.write('_type_idx_')
g.write(g.typ(it.typ))
}
2020-03-19 12:15:39 +01:00
ast.TypeOf {
g.write('tos3("TYPEOF_TODO")')
}
2019-12-24 18:54:43 +01:00
else {
// #printf("node=%d\n", node.typ);
println(term.red('cgen.expr(): bad node ' + typeof(node)))
2019-12-24 18:54:43 +01:00
}
}
}
2020-03-12 10:07:42 +01:00
fn (g mut Gen) infix_expr(node ast.InfixExpr) {
// g.write('/*infix*/')
2020-03-07 16:39:15 +01:00
// if it.left_type == table.string_type_idx {
2020-03-12 10:07:42 +01:00
// g.write('/*$node.left_type str*/')
2020-03-07 16:39:15 +01:00
// }
// string + string, string == string etc
if node.left_type == table.string_type_idx && node.op != .key_in {
2020-03-12 10:07:42 +01:00
fn_name := match node.op {
2020-03-07 16:39:15 +01:00
.plus{
'string_add('
}
.eq{
'string_eq('
}
.ne{
'string_ne('
}
.lt{
'string_lt('
}
.le{
'string_le('
}
.gt{
'string_gt('
}
.ge{
'string_ge('
}
2020-03-07 16:39:15 +01:00
else {
2020-03-12 10:07:42 +01:00
'/*node error*/'}
2020-03-07 16:39:15 +01:00
}
g.write(fn_name)
2020-03-12 10:07:42 +01:00
g.expr(node.left)
2020-03-07 16:39:15 +01:00
g.write(', ')
2020-03-12 10:07:42 +01:00
g.expr(node.right)
2020-03-07 16:39:15 +01:00
g.write(')')
}
2020-03-12 10:07:42 +01:00
else if node.op == .key_in {
right_sym := g.table.get_type_symbol(node.right_type)
if right_sym.kind == .array {
2020-03-19 16:12:46 +01:00
match node.right {
ast.ArrayInit {
// `a in [1,2,3]` optimization => `a == 1 || a == 2 || a == 3`
// avoids an allocation
// g.write('/*in opt*/')
g.in_optimization(node.left, it)
return
}
else {}
}
styp := g.typ(node.left_type)
g.write('_IN($styp, ')
g.expr(node.left)
g.write(', ')
g.expr(node.right)
g.write(')')
}
else if right_sym.kind == .map {
g.write('_IN_MAP(')
g.expr(node.left)
g.write(', ')
g.expr(node.right)
g.write(')')
}
else if right_sym.kind == .string {
g.write('string_contains(')
g.expr(node.right)
g.write(', ')
g.expr(node.left)
g.write(')')
}
2020-03-10 23:21:26 +01:00
}
2020-03-07 16:39:15 +01:00
// arr << val
2020-03-12 10:07:42 +01:00
else if node.op == .left_shift && g.table.get_type_symbol(node.left_type).kind == .array {
2020-03-10 23:21:26 +01:00
tmp := g.new_tmp_var()
2020-03-15 00:46:08 +01:00
sym := g.table.get_type_symbol(node.left_type)
right_sym := g.table.get_type_symbol(node.right_type)
if right_sym.kind == .array {
// push an array => PUSH_MANY
g.write('_PUSH_MANY(&')
2020-03-19 09:40:21 +01:00
g.expr_with_cast(node.left, node.right_type, node.left_type)
2020-03-15 00:46:08 +01:00
g.write(', (')
g.expr(node.right)
styp := g.typ(node.left_type)
g.write('), $tmp, $styp)')
}
else {
// push a single element
info := sym.info as table.Array
elem_type_str := g.typ(info.elem_type)
// g.write('array_push(&')
g.write('_PUSH(&')
2020-03-19 09:40:21 +01:00
g.expr_with_cast(node.left, node.right_type, info.elem_type)
2020-03-15 00:46:08 +01:00
g.write(', (')
g.expr(node.right)
g.write('), $tmp, $elem_type_str)')
}
2020-03-07 16:39:15 +01:00
}
else {
2020-03-12 10:07:42 +01:00
// if node.op == .dot {
2020-03-07 16:39:15 +01:00
// println('!! dot')
// }
2020-03-12 10:07:42 +01:00
g.expr(node.left)
g.write(' $node.op.str() ')
g.expr(node.right)
2020-03-07 16:39:15 +01:00
}
}
2020-03-16 03:56:38 +01:00
fn (g mut Gen) match_expr(node ast.MatchExpr) {
// println('match expr typ=$it.expr_type')
// TODO
2020-03-18 12:23:32 +01:00
if node.cond_type == 0 {
2020-03-16 03:56:38 +01:00
g.writeln('// match 0')
return
}
2020-03-18 12:18:48 +01:00
is_expr := node.is_expr && node.return_type != table.void_type
if is_expr {
g.inside_ternary = true
2020-03-18 12:34:27 +01:00
// g.write('/* EM ret type=${g.typ(node.return_type)} expected_type=${g.typ(node.expected_type)} */')
}
2020-03-18 12:23:32 +01:00
type_sym := g.table.get_type_symbol(node.cond_type)
2020-03-16 03:56:38 +01:00
mut tmp := ''
if type_sym.kind != .void {
tmp = g.new_tmp_var()
}
// styp := g.typ(node.expr_type)
// g.write('$styp $tmp = ')
// g.expr(node.cond)
// g.writeln(';') // $it.blocks.len')
2020-03-16 03:56:38 +01:00
// mut sum_type_str = ''
for j, branch in node.branches {
if j == node.branches.len - 1 {
// last block is an `else{}`
if is_expr {
// TODO too many branches. maybe separate ?: matches
g.write(' : ')
}
else {
g.writeln('else {')
}
2020-03-16 03:56:38 +01:00
}
else {
if j > 0 {
if is_expr {
g.write(' : ')
}
else {
g.write('else ')
}
}
if is_expr {
g.write('(')
}
else {
g.write('if (')
2020-03-16 03:56:38 +01:00
}
for i, expr in branch.exprs {
if node.is_sum_type {
g.expr(node.cond)
g.write('.typ == ')
// g.write('${tmp}.typ == ')
2020-03-16 03:56:38 +01:00
// sum_type_str
}
else if type_sym.kind == .string {
g.write('string_eq(')
//
g.expr(node.cond)
g.write(', ')
// g.write('string_eq($tmp, ')
2020-03-16 03:56:38 +01:00
}
else {
g.expr(node.cond)
g.write(' == ')
// g.write('$tmp == ')
2020-03-16 03:56:38 +01:00
}
g.expr(expr)
if type_sym.kind == .string {
g.write(')')
}
if i < branch.exprs.len - 1 {
g.write(' || ')
}
}
if is_expr {
g.write(') ? ')
}
else {
g.writeln(') {')
}
2020-03-16 03:56:38 +01:00
}
// g.writeln('/* M sum_type=$node.is_sum_type is_expr=$node.is_expr exp_type=${g.typ(node.expected_type)}*/')
if node.is_sum_type && branch.exprs.len > 0 && !node.is_expr {
2020-03-16 03:56:38 +01:00
// The first node in expr is an ast.Type
// Use it to generate `it` variable.
first_expr := branch.exprs[0]
match first_expr {
2020-03-16 03:56:38 +01:00
ast.Type {
it_type := g.typ(it.typ)
// g.writeln('$it_type* it = ($it_type*)${tmp}.obj; // ST it')
g.write('$it_type* it = ($it_type*)')
g.expr(node.cond)
g.writeln('.obj; // ST it')
2020-03-16 03:56:38 +01:00
}
else {
verror('match sum type')
}
}
}
g.stmts(branch.stmts)
if !g.inside_ternary {
g.writeln('}')
}
2020-03-16 03:56:38 +01:00
}
g.inside_ternary = false
2020-03-16 03:56:38 +01:00
}
2020-03-13 05:57:51 +01:00
fn (g mut Gen) ident(node ast.Ident) {
name := node.name.replace('.', '__')
2020-03-20 20:46:42 +01:00
if name == 'lld' {
return
}
2020-03-13 05:57:51 +01:00
if name.starts_with('C__') {
g.write(name[3..])
}
else {
// TODO `is`
match node.info {
ast.IdentVar {
2020-03-20 13:03:42 +01:00
// x ?int
// `x = 10` => `x.data = 10` (g.right_is_opt == false)
// `x = new_opt()` => `x = new_opt()` (g.right_is_opt == true)
// `println(x)` => `println(*(int*)x.data)`
if it.is_optional && !(g.is_assign_expr && g.right_is_opt) {
2020-03-13 12:22:36 +01:00
g.write('/*opt*/')
2020-03-13 05:57:51 +01:00
styp := g.typ(it.typ)[7..] // Option_int => int TODO perf?
g.write('(*($styp*)${name}.data)')
return
}
}
else {}
}
g.write(name)
}
}
2020-03-17 16:40:41 +01:00
fn (g mut Gen) if_expr(node ast.IfExpr) {
2020-03-21 11:17:17 +01:00
// println('if_expr pos=$node.pos.line_nr')
2020-03-18 16:47:37 +01:00
// g.writeln('/* if is_expr=$node.is_expr */')
2020-03-17 16:40:41 +01:00
// If expression? Assign the value to a temp var.
// Previously ?: was used, but it's too unreliable.
type_sym := g.table.get_type_symbol(node.typ)
mut tmp := ''
if type_sym.kind != .void {
tmp = g.new_tmp_var()
// g.writeln('$ti.name $tmp;')
}
// one line ?:
// TODO clean this up once `is` is supported
// TODO: make sure only one stmt in each branch
if node.is_expr && node.branches.len >= 2 && node.has_else && type_sym.kind != .void {
g.inside_ternary = true
for i, branch in node.branches {
if i > 0 {
2020-03-17 16:40:41 +01:00
g.write(' : ')
}
if i < node.branches.len - 1 || !node.has_else {
g.expr(branch.cond)
g.write(' ? ')
}
g.stmts(branch.stmts)
}
g.inside_ternary = false
2020-03-17 16:40:41 +01:00
}
else {
guard_ok := g.new_tmp_var()
mut is_guard := false
for i, branch in node.branches {
if i == 0 {
match branch.cond {
ast.IfGuardExpr {
is_guard = true
g.writeln('bool $guard_ok;')
g.write('{ /* if guard */ ${g.typ(it.expr_type)} $it.var_name = ')
g.expr(it.expr)
g.writeln(';')
g.writeln('if (($guard_ok = ${it.var_name}.ok)) {')
}
else {
g.write('if (')
g.expr(branch.cond)
g.writeln(') {')
}
}
2020-03-17 16:40:41 +01:00
}
else if i < node.branches.len - 1 || !node.has_else {
g.writeln('} else if (')
g.expr(branch.cond)
g.write(') {')
}
else if i == node.branches.len - 1 && node.has_else {
if is_guard {
g.writeln('} if (!$guard_ok) { /* else */')
}
else {
g.writeln('} else {')
}
2020-03-17 16:40:41 +01:00
}
// Assign ret value
// if i == node.stmts.len - 1 && type_sym.kind != .void {}
2020-03-17 16:40:41 +01:00
// g.writeln('$tmp =')
g.stmts(branch.stmts)
2020-03-17 16:40:41 +01:00
}
if is_guard {
g.write('}')
}
g.writeln('}')
}
}
2020-02-02 14:31:54 +01:00
fn (g mut Gen) index_expr(node ast.IndexExpr) {
// TODO else doesn't work with sum types
mut is_range := false
match node.index {
ast.RangeExpr {
2020-03-07 05:19:15 +01:00
// TODO should never be 0
if node.container_type != 0 {
sym := g.table.get_type_symbol(node.container_type)
is_range = true
if sym.kind == .string {
g.write('string_substr(')
}
else if sym.kind == .array {
g.write('array_slice(')
}
}
2020-02-02 14:31:54 +01:00
g.expr(node.left)
g.write(', ')
2020-03-06 22:24:39 +01:00
if it.has_low {
g.expr(it.low)
}
else {
g.write('0')
}
2020-02-02 14:31:54 +01:00
g.write(', ')
2020-03-06 22:24:39 +01:00
if it.has_high {
g.expr(it.high)
}
else {
g.expr(node.left)
g.write('.len')
}
2020-02-02 14:31:54 +01:00
g.write(')')
2020-03-06 22:24:39 +01:00
return
2020-02-02 14:31:54 +01:00
}
else {}
}
if !is_range && node.container_type != 0 {
sym := g.table.get_type_symbol(node.container_type)
2020-03-14 13:42:27 +01:00
if table.type_is_variadic(node.container_type) {
g.expr(node.left)
g.write('.args')
g.write('[')
g.expr(node.index)
g.write(']')
}
else if sym.kind == .array {
2020-03-11 21:11:27 +01:00
info := sym.info as table.Array
elem_type_str := g.typ(info.elem_type)
2020-03-20 17:03:41 +01:00
// `vals[i].field = x` is an exception and requires `array_get`:
// `(*(Val*)array_get(vals, i)).field = x ;`
mut is_selector := false
match node.left {
ast.SelectorExpr {
is_selector = true
}
else {}
}
if g.is_assign_expr && !is_selector {
2020-03-07 16:39:15 +01:00
g.is_array_set = true
g.write('array_set(&')
g.expr(node.left)
g.write(', ')
g.expr(node.index)
2020-03-11 21:11:27 +01:00
g.write(', &($elem_type_str[]) { ')
2020-03-07 16:39:15 +01:00
}
else {
2020-03-11 21:11:27 +01:00
g.write('(*($elem_type_str*)array_get(')
2020-03-07 16:39:15 +01:00
g.expr(node.left)
g.write(', ')
g.expr(node.index)
2020-03-11 03:52:01 +01:00
g.write('))')
2020-03-07 16:39:15 +01:00
}
}
2020-03-19 10:07:31 +01:00
else if sym.kind == .map {
info := sym.info as table.Map
elem_type_str := g.typ(info.value_type)
if g.is_assign_expr {
g.is_array_set = true
g.write('map_set(&')
g.expr(node.left)
g.write(', ')
g.expr(node.index)
g.write(', &($elem_type_str[]) { ')
}
else {
g.write('(*($elem_type_str*)map_get2(')
g.expr(node.left)
g.write(', ')
g.expr(node.index)
g.write('))')
}
}
2020-03-18 16:47:37 +01:00
else if sym.kind == .string && !table.type_is_ptr(node.container_type) {
2020-03-06 22:24:39 +01:00
g.write('string_at(')
2020-03-06 20:22:58 +01:00
g.expr(node.left)
g.write(', ')
g.expr(node.index)
g.write(')')
}
2020-03-07 00:19:27 +01:00
else {
g.expr(node.left)
g.write('[')
g.expr(node.index)
g.write(']')
}
2020-02-02 14:31:54 +01:00
}
}
2020-03-13 05:57:51 +01:00
fn (g mut Gen) return_statement(it ast.Return) {
2020-03-19 12:27:47 +01:00
g.write('return')
if g.fn_decl.name == 'main' {
2020-03-19 12:27:47 +01:00
g.writeln(' 0;')
return
}
2020-03-19 12:13:17 +01:00
fn_return_is_optional := table.type_is_optional(g.fn_decl.return_type)
2020-03-13 05:57:51 +01:00
// multiple returns
if it.exprs.len > 1 {
2020-03-19 12:27:47 +01:00
g.write(' ')
2020-03-16 07:42:45 +01:00
typ_sym := g.table.get_type_symbol(g.fn_decl.return_type)
mr_info := typ_sym.info as table.MultiReturn
2020-03-19 12:13:17 +01:00
mut styp := g.typ(g.fn_decl.return_type)
if fn_return_is_optional {
styp = styp[7..] // remove 'Option_'
g.write('opt_ok(& ($styp []) { ')
}
g.write('($styp){')
2020-03-13 05:57:51 +01:00
for i, expr in it.exprs {
g.write('.arg$i=')
g.expr(expr)
if i < it.exprs.len - 1 {
g.write(',')
}
}
g.write('}')
2020-03-19 12:13:17 +01:00
if fn_return_is_optional {
g.writeln(' }, sizeof($styp));')
}
2020-03-13 05:57:51 +01:00
}
// normal return
else if it.exprs.len == 1 {
2020-03-19 12:27:47 +01:00
g.write(' ')
2020-03-13 05:57:51 +01:00
// `return opt_ok(expr)` for functions that expect an optional
2020-03-19 12:13:17 +01:00
if fn_return_is_optional && !table.type_is_optional(it.types[0]) {
2020-03-13 05:57:51 +01:00
mut is_none := false
mut is_error := false
2020-03-18 12:23:32 +01:00
expr0 := it.exprs[0]
match expr0 {
2020-03-13 05:57:51 +01:00
ast.None {
is_none = true
}
ast.CallExpr {
is_error = true // TODO check name 'error'
}
else {}
}
if !is_none && !is_error {
styp := g.typ(g.fn_decl.return_type)[7..] // remove 'Option_'
2020-03-13 12:22:36 +01:00
g.write('opt_ok(& ($styp []) { ')
g.expr(it.exprs[0])
g.writeln(' }, sizeof($styp));')
2020-03-13 05:57:51 +01:00
return
}
// g.write('/*OPTIONAL*/')
}
if !table.type_is_ptr(g.fn_decl.return_type) && table.type_is_ptr(it.types[0]) {
// Automatic Dereference
g.write('*')
}
2020-03-19 09:40:21 +01:00
g.expr_with_cast(it.exprs[0], it.types[0], g.fn_decl.return_type)
2020-03-13 05:57:51 +01:00
}
g.writeln(';')
}
2020-03-06 14:03:35 +01:00
fn (g mut Gen) const_decl(node ast.ConstDecl) {
for i, field in node.fields {
name := field.name.replace('.', '__')
expr := node.exprs[i]
2020-03-21 09:29:16 +01:00
// TODO hack. Cut the generated value and paste it into definitions.
pos := g.out.len
g.expr(expr)
val := g.out.after(pos)
g.out.go_back(val.len)
2020-03-06 14:03:35 +01:00
match expr {
ast.CharLiteral, ast.IntegerLiteral {
2020-03-21 09:29:16 +01:00
// Simple expressions should use a #define
// so that we don't pollute the binary with unnecessary global vars
// Do not do this when building a module, otherwise the consts
// will not be accessible.
g.definitions.write('#define $name ')
g.definitions.writeln(val)
2020-03-06 14:03:35 +01:00
}
else {
// Initialize more complex consts in `void _vinit(){}`
2020-03-21 09:29:16 +01:00
// (C doesn't allow init expressions that can't be resolved at compile time).
2020-03-06 22:36:51 +01:00
styp := g.typ(field.typ)
2020-03-06 16:31:40 +01:00
g.definitions.writeln('$styp $name; // inited later') // = ')
2020-03-21 09:29:16 +01:00
g.inits.write('$name = ')
g.inits.write(val)
g.inits.writeln(';')
2020-03-06 14:03:35 +01:00
}
}
}
}
2020-03-19 07:59:01 +01:00
// { user | name: 'new name' }
2020-03-19 08:14:09 +01:00
fn (g mut Gen) assoc(node ast.Assoc) {
2020-03-19 08:49:47 +01:00
g.writeln('// assoc')
2020-03-19 08:14:09 +01:00
if node.typ == 0 {
return
}
styp := g.typ(node.typ)
g.writeln('($styp){')
for i, field in node.fields {
g.write('\t.$field = ')
g.expr(node.exprs[i])
g.writeln(', ')
}
// Copy the rest of the fields.
sym := g.table.get_type_symbol(node.typ)
info := sym.info as table.Struct
for field in info.fields {
if field.name in node.fields {
continue
}
2020-03-19 08:14:09 +01:00
g.writeln('\t.$field.name = ${node.var_name}.$field.name,')
}
g.write('}')
if g.is_amp {
g.write(', sizeof($styp))')
}
}
2020-03-19 07:59:01 +01:00
fn (g mut Gen) call_args(args []ast.CallArg) {
for i, arg in args {
2020-03-14 13:15:07 +01:00
if table.type_is_variadic(arg.expected_type) {
struct_name := 'varg_' + g.typ(arg.expected_type).replace('*', '_ptr')
2020-03-15 00:46:08 +01:00
len := args.len - i
2020-03-14 13:42:27 +01:00
type_str := int(arg.expected_type).str()
if len > g.varaidic_args[type_str] {
g.varaidic_args[type_str] = len
}
2020-03-14 13:15:07 +01:00
g.write('($struct_name){.len=$len,.args={')
2020-03-15 00:46:08 +01:00
for j in i .. args.len {
2020-03-14 13:15:07 +01:00
g.ref_or_deref_arg(args[j])
g.expr(args[j].expr)
2020-03-15 00:46:08 +01:00
if j < args.len - 1 {
2020-03-14 13:15:07 +01:00
g.write(', ')
}
}
2020-03-14 13:15:07 +01:00
g.write('}}')
break
}
if arg.expected_type != 0 {
g.ref_or_deref_arg(arg)
g.expr_with_cast(arg.expr, arg.typ, arg.expected_type)
}
else {
g.expr(arg.expr)
2020-03-10 23:21:26 +01:00
}
if i != args.len - 1 {
g.write(', ')
}
}
}
2020-03-14 13:15:07 +01:00
[inline]
fn (g mut Gen) ref_or_deref_arg(arg ast.CallArg) {
arg_is_ptr := table.type_is_ptr(arg.expected_type) || arg.expected_type == table.voidptr_type_idx
expr_is_ptr := table.type_is_ptr(arg.typ)
if arg.is_mut && !arg_is_ptr {
g.write('&/*mut*/')
}
2020-03-21 10:22:16 +01:00
else if arg_is_ptr && !expr_is_ptr && arg.typ != table.byteptr_type {
2020-03-14 13:15:07 +01:00
g.write('&/*q*/')
}
else if !arg_is_ptr && expr_is_ptr {
// Dereference a pointer if a value is required
g.write('*/*d*/')
}
}
fn verror(s string) {
println('cgen error: $s')
// exit(1)
2019-12-24 18:54:43 +01:00
}
2020-03-10 23:21:26 +01:00
2020-03-21 09:29:16 +01:00
fn (g mut Gen) write_init_function() {
g.writeln('void _vinit() {')
2020-03-21 10:22:16 +01:00
g.writeln(g.inits.str())
2020-03-21 09:29:16 +01:00
g.writeln('}')
2020-03-21 19:52:19 +01:00
if g.autofree {
g.writeln('void _vcleanup() {')
g.writeln('puts("cleaning up...");')
g.writeln('free(os__args.data);')
g.writeln('free(strconv__ftoa__powers_of_10.data);')
g.writeln('}')
}
2020-03-21 09:29:16 +01:00
}
2020-03-21 07:10:53 +01:00
fn (g mut Gen) write_str_definitions() {
// _STR function can't be defined in vlib
g.writeln('
string _STR(const char *fmt, ...) {
va_list argptr;
va_start(argptr, fmt);
size_t len = vsnprintf(0, 0, fmt, argptr) + 1;
va_end(argptr);
byte* buf = malloc(len);
va_start(argptr, fmt);
vsprintf((char *)buf, fmt, argptr);
va_end(argptr);
#ifdef DEBUG_ALLOC
puts("_STR:");
puts(buf);
#endif
return tos2(buf);
}
string _STR_TMP(const char *fmt, ...) {
va_list argptr;
va_start(argptr, fmt);
//size_t len = vsnprintf(0, 0, fmt, argptr) + 1;
va_end(argptr);
va_start(argptr, fmt);
vsprintf((char *)g_str_buf, fmt, argptr);
va_end(argptr);
#ifdef DEBUG_ALLOC
//puts("_STR_TMP:");
//puts(g_str_buf);
#endif
return tos2(g_str_buf);
2020-03-21 11:47:23 +01:00
} // endof _STR_TMP
2020-03-21 07:10:53 +01:00
')
}
2020-03-10 23:21:26 +01:00
const (
builtins = ['string', 'array', 'KeyValue', 'DenseArray', 'map', 'Option']
2020-03-10 23:21:26 +01:00
)
fn (g mut Gen) write_builtin_types() {
2020-03-05 23:27:21 +01:00
mut builtin_types := []table.TypeSymbol // builtin types
// builtin types need to be on top
// everything except builtin will get sorted
2020-03-06 16:57:27 +01:00
for builtin_name in builtins {
builtin_types << g.table.types[g.table.type_idxs[builtin_name]]
}
2020-03-10 23:21:26 +01:00
g.write_types(builtin_types)
}
// C struct definitions, ordered
// Sort the types, make sure types that are referenced by other types
// are added before them.
fn (g mut Gen) write_sorted_types() {
mut types := []table.TypeSymbol // structs that need to be sorted
2020-03-06 12:01:56 +01:00
for typ in g.table.types {
2020-03-06 16:57:27 +01:00
if !(typ.name in builtins) {
types << typ
2020-03-05 23:27:21 +01:00
}
}
// sort structs
types_sorted := g.sort_structs(types)
// Generate C code
g.definitions.writeln('// builtin types:')
2020-03-06 20:22:58 +01:00
g.definitions.writeln('//------------------ #endbuiltin')
2020-03-05 23:27:21 +01:00
g.write_types(types_sorted)
}
fn (g mut Gen) write_types(types []table.TypeSymbol) {
2020-03-16 03:19:26 +01:00
for i, typ in types {
if typ.name.starts_with('C.') {
continue
}
2020-03-05 23:27:21 +01:00
// sym := g.table.get_type_symbol(typ)
name := typ.name.replace('.', '__')
2020-03-05 23:27:21 +01:00
match typ.info {
table.Struct {
info := typ.info as table.Struct
// g.definitions.writeln('typedef struct {')
g.definitions.writeln('struct $name {')
for field in info.fields {
type_name := g.typ(field.typ)
2020-03-05 23:27:21 +01:00
g.definitions.writeln('\t$type_name $field.name;')
}
// g.definitions.writeln('} $name;\n')
//
g.definitions.writeln('};\n')
2020-03-16 03:19:26 +01:00
g.typedefs.writeln('#define _type_idx_$name $i')
2020-03-05 23:27:21 +01:00
}
2020-03-18 19:56:59 +01:00
// table.Alias, table.SumType { TODO
table.Alias {
g.typedefs.writeln('#define _type_idx_$name $i')
}
table.Enum {
g.definitions.writeln('typedef enum {')
2020-03-16 03:19:26 +01:00
for j, val in it.vals {
g.definitions.writeln('\t${name}_$val, // $j')
}
g.definitions.writeln('} $name;\n')
}
table.SumType {
2020-03-18 19:56:59 +01:00
g.typedefs.writeln('#define _type_idx_$name $i')
g.definitions.writeln('// Sum type')
g.definitions.writeln('
typedef struct {
void* obj;
int typ;
} $name;')
}
else {
g.typedefs.writeln('#define _type_idx_$name $i')
}
2020-03-05 23:27:21 +01:00
}
}
}
// sort structs by dependant fields
fn (g &Gen) sort_structs(types []table.TypeSymbol) []table.TypeSymbol {
mut dep_graph := depgraph.new_dep_graph()
// types name list
mut type_names := []string
for typ in types {
type_names << typ.name
}
// loop over types
for t in types {
2020-03-06 12:01:56 +01:00
// create list of deps
mut field_deps := []string
2020-03-05 23:27:21 +01:00
match t.info {
table.Struct {
info := t.info as table.Struct
for field in info.fields {
// Need to handle fixed size arrays as well (`[10]Point`)
// ft := if field.typ.starts_with('[') { field.typ.all_after(']') } else { field.typ }
2020-03-06 12:01:56 +01:00
dep := g.table.get_type_symbol(field.typ).name
2020-03-05 23:27:21 +01:00
// skip if not in types list or already in deps
2020-03-06 20:22:58 +01:00
if !(dep in type_names) || dep in field_deps || table.type_is_ptr(field.typ) {
2020-03-06 12:01:56 +01:00
continue
}
field_deps << dep
2020-03-05 23:27:21 +01:00
}
}
else {}
2020-03-06 14:03:35 +01:00
}
2020-03-06 12:01:56 +01:00
// add type and dependant types to graph
dep_graph.add(t.name, field_deps)
2020-03-05 23:27:21 +01:00
}
// sort graph
dep_graph_sorted := dep_graph.resolve()
if !dep_graph_sorted.acyclic {
verror('cgen.sort_structs(): the following structs form a dependency cycle:\n' + dep_graph_sorted.display_cycles() + '\nyou can solve this by making one or both of the dependant struct fields references, eg: field &MyStruct' + '\nif you feel this is an error, please create a new issue here: https://github.com/vlang/v/issues and tag @joe-conigliaro')
}
// sort types
mut types_sorted := []table.TypeSymbol
for node in dep_graph_sorted.nodes {
2020-03-06 16:57:27 +01:00
types_sorted << g.table.types[g.table.type_idxs[node.name]]
2020-03-05 23:27:21 +01:00
}
return types_sorted
}
2020-03-21 07:01:06 +01:00
fn (g mut Gen) string_inter_literal(node ast.StringInterLiteral) {
g.write('_STR("')
// Build the string with %
for i, val in node.vals {
2020-03-21 07:10:53 +01:00
escaped_val := val.replace_each(['"', '\\"',
'\r\n', '\\n',
'\n', '\\n'])
g.write(escaped_val)
2020-03-21 07:01:06 +01:00
if i >= node.exprs.len {
continue
}
// TODO: fix match, sum type false positive
// match node.expr_types[i] {
2020-03-21 19:52:19 +01:00
// table.string_type {
// g.write('%.*s')
// }
// table.int_type {
// g.write('%d')
// }
// else {}
// }
if node.expr_types[i] == table.string_type {
g.write('%.*s')
}
else if node.expr_types[i] == table.int_type {
g.write('%d')
}
2020-03-21 07:01:06 +01:00
}
g.write('", ')
// Build args
for i, expr in node.exprs {
if node.expr_types[i] == table.string_type {
// `name.str, name.len,`
2020-03-21 07:04:53 +01:00
g.expr(expr)
2020-03-21 07:01:06 +01:00
g.write('.len, ')
2020-03-21 07:04:53 +01:00
g.expr(expr)
2020-03-21 07:01:06 +01:00
g.write('.str')
}
else {
2020-03-21 07:04:53 +01:00
g.expr(expr)
2020-03-21 07:01:06 +01:00
}
if i < node.exprs.len - 1 {
g.write(', ')
}
}
g.write(')')
}
// `nums.filter(it % 2 == 0)`
2020-03-19 15:18:29 +01:00
fn (g mut Gen) gen_filter(node ast.MethodCallExpr) {
tmp := g.new_tmp_var()
buf := g.out.buf[g.stmt_start_pos..]
s := string(buf.clone()) // the already generated part of current statement
g.out.go_back(s.len)
// println('filter s="$s"')
sym := g.table.get_type_symbol(node.return_type)
if sym.kind != .array {
verror('filter() requires an array')
}
info := sym.info as table.Array
styp := g.typ(node.return_type)
elem_type_str := g.typ(info.elem_type)
g.write('\nint ${tmp}_len = ')
g.expr(node.expr)
g.writeln('.len;')
g.writeln('$styp $tmp = new_array(0, ${tmp}_len, sizeof($elem_type_str));')
g.writeln('for (int i = 0; i < ${tmp}_len; i++) {')
g.write(' $elem_type_str it = (($elem_type_str*) ')
g.expr(node.expr)
g.writeln('.data)[i];')
g.write('if (')
g.expr(node.args[0].expr) // the first arg is the filter condition
g.writeln(') array_push(&$tmp, &it); \n }')
g.write(s)
g.write(' ')
g.write(tmp)
}
2020-03-21 19:52:19 +01:00
fn (g mut Gen) call_expr(it ast.CallExpr) {
mut name := it.name.replace('.', '__')
if name == 'exit' {
name = 'v_exit'
}
if name == 'free' {
name = 'v_free'
}
is_print := name == 'println'
if it.is_c {
// Skip "C__"
g.is_c_call = true
name = name[3..]
}
// Generate tmp vars for values that have to be freed.
/*
2020-03-21 20:02:37 +01:00
mut tmps := []string
2020-03-21 19:52:19 +01:00
for arg in it.args {
if arg.typ == table.string_type_idx || is_print {
tmp := g.new_tmp_var()
tmps << tmp
g.write('string $tmp = ')
g.expr(arg.expr)
g.writeln('; //memory')
}
}
*/
if is_print && it.args[0].typ != table.string_type_idx {
styp := g.typ(it.args[0].typ)
if g.autofree {
tmp := g.new_tmp_var()
// tmps << tmp
g.write('string $tmp = ${styp}_str(')
g.expr(it.args[0].expr)
g.writeln('); println($tmp); string_free($tmp); //MEM2')
}
else {
// `println(int_str(10))`
// sym := g.table.get_type_symbol(it.args[0].typ)
g.write('println(${styp}_str(')
g.expr(it.args[0].expr)
g.write('))')
}
}
else {
g.write('${name}(')
g.call_args(it.args)
g.write(')')
}
g.is_c_call = false
}
2020-03-19 16:12:46 +01:00
// `a in [1,2,3]` => `a == 1 || a == 2 || a == 3`
fn (g mut Gen) in_optimization(left ast.Expr, right ast.ArrayInit) {
is_str := right.elem_type == table.string_type
for i, array_expr in right.exprs {
if is_str {
g.write('string_eq(')
}
g.expr(left)
if is_str {
g.write(', ')
}
else {
g.write(' == ')
}
g.expr(array_expr)
if is_str {
g.write(')')
}
if i < right.exprs.len - 1 {
g.write(' || ')
}
}
}
fn op_to_fn_name(name string) string {
return match name {
'+'{
'_op_plus'
}
'-'{
'_op_minus'
}
'*'{
'_op_mul'
}
'/'{
'_op_div'
}
'%'{
'_op_mod'
}
else {
'bad op $name'}
}
}