v/vlib/v/gen/cgen.v

1459 lines
33 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)
table &table.Table
mut:
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
2019-12-24 18:54:43 +01:00
}
pub fn cgen(files []ast.File, table &table.Table) string {
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)
table: table
fn_decl: 0
2019-12-28 11:02:06 +01:00
}
g.init()
2019-12-30 12:10:46 +01:00
for file in files {
2020-02-17 22:50:04 +01:00
g.stmts(file.stmts)
2019-12-24 18:54:43 +01:00
}
2020-03-14 13:15:07 +01:00
g.write_variadic_types()
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-10 23:21:26 +01:00
g.write_builtin_types()
g.write_typedef_types()
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-15 00:46:08 +01:00
if styp in ['stat', 'dirent*', 'tm'] {
// 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 {
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) {
g.out.write(s)
}
pub fn (g mut Gen) writeln(s string) {
g.out.writeln(s)
}
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) {
for stmt in stmts {
g.stmt(stmt)
g.writeln('')
}
}
2019-12-28 14:11:05 +01:00
fn (g mut Gen) stmt(node ast.Stmt) {
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 {
// TODO
2020-03-05 00:43:02 +01:00
g.writeln('//#ifdef ')
2020-03-02 18:43:41 +01:00
g.expr(it.cond)
g.stmts(it.stmts)
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)
match it.expr {
// no ; after an if expression
ast.IfExpr {}
else {
g.writeln(';')
}
}
}
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)
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(') {')
for stmt in it.stmts {
g.stmt(stmt)
}
g.writeln('}')
}
ast.ForInStmt {
2020-03-05 00:43:02 +01:00
if it.is_range {
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.stmts(it.stmts) TODO
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(') {')
2020-03-02 18:43:41 +01:00
for stmt in it.stmts {
g.stmt(stmt)
}
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-16 07:42:45 +01:00
fn (g &Gen) is_sum_cast(got_type table.Type, exp_type table.Type) bool {
if exp_type != table.void_type && exp_type != 0 && got_type != 0{
exp_sym := g.table.get_type_symbol(exp_type)
// got_sym := g.table.get_type_symbol(got_type)
if exp_sym.kind == .sum_type {
sum_info := exp_sym.info as table.SumType
if got_type in sum_info.variants {
return true
}
}
}
return false
}
fn (g mut Gen) sum_cast(got_type table.Type, exp_type table.Type, expr ast.Expr) {
got_styp := g.typ(got_type)
exp_styp := g.typ(exp_type)
got_idx := table.type_idx(got_type)
g.write('/* SUM TYPE CAST */ ($exp_styp) {.obj = memdup(&(${got_styp}[]) {')
g.expr(expr)
g.writeln('}, sizeof($got_styp)), .typ = $got_idx};')
}
fn (g mut Gen) gen_assign_stmt(assign_stmt ast.AssignStmt) {
// multi return
// g.write('/*assign*/')
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-10 23:21:26 +01:00
mr_typ_str := g.typ(return_type)
g.write('$mr_typ_str $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 {
is_call := match val {
2020-03-10 23:21:26 +01:00
ast.CallExpr{
true
}
ast.MethodCallExpr{
true
}
else {
false}
}
if is_call {
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)
2020-03-10 23:21:26 +01:00
g.write('}')
}
}
else {
2020-03-12 10:07:42 +01:00
mut is_fixed_array_init := false
match val {
ast.ArrayInit {
is_fixed_array_init = g.table.get_type_symbol(it.typ).kind == .array_fixed
}
else {}
}
2020-03-16 07:42:45 +01:00
mut is_sum_cast := false
if assign_stmt.op == .decl_assign {
g.write('$styp ')
2020-03-16 07:42:45 +01:00
} else {
is_sum_cast = g.is_sum_cast(assign_stmt.right_types[i], assign_stmt.left_types[i])
}
g.expr(ident)
2020-03-12 10:07:42 +01:00
if !is_fixed_array_init {
g.write(' = ')
2020-03-16 07:42:45 +01:00
if is_sum_cast {
g.sum_cast(ident_var_info.typ, assign_stmt.left_types[i], val)
} else {
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 {
g.write('int ${it.name}(')
}
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'
}
// 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(');')
}
for stmt in it.stmts {
// g.write('\t')
g.stmt(stmt)
}
if is_main {
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)
g.write('new_array_from_c_array($it.exprs.len, $it.exprs.len, sizeof($elem_type_str), ')
g.writeln('($elem_type_str[]){\t')
2020-03-12 09:29:52 +01:00
for expr in it.exprs {
g.expr(expr)
g.write(', ')
}
g.write('\n})')
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 {
g.write('/* as */')
}
2020-01-06 16:13:12 +01:00
ast.AssignExpr {
2020-03-11 03:52:01 +01:00
g.is_assign_expr = true
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
}
2020-03-11 04:10:42 +01:00
g.expr(it.left)
2020-03-07 16:39:15 +01:00
// arr[i] = val => `array_set(arr, i, val)`, not `array_get(arr, i) = val`
if !g.is_array_set && !str_add {
2020-03-07 16:39:15 +01:00
g.write(' $it.op.str() ')
}
else if str_add {
g.write(', ')
}
2020-03-11 23:22:40 +01:00
g.is_assign_expr = false
2020-03-16 07:42:45 +01:00
if g.is_sum_cast(it.left_type, it.right_type) {
g.sum_cast(it.left_type, it.right_type, it.val)
} else {
g.expr(it.val)
}
2020-03-07 16:39:15 +01:00
if g.is_array_set {
2020-03-11 21:11:27 +01:00
g.write(' })')
2020-03-07 16:39:15 +01:00
g.is_array_set = false
}
else if str_add {
g.write(')')
}
2020-01-06 16:13:12 +01:00
}
ast.Assoc {
g.write('/* assoc */')
}
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-05 00:43:02 +01:00
mut name := it.name.replace('.', '__')
if name == 'exit' {
name = 'v_exit'
}
2020-03-05 00:43:02 +01:00
if it.is_c {
// Skip "C__"
g.is_c_call = true
2020-03-05 00:43:02 +01:00
name = name[3..]
}
2020-03-01 21:56:07 +01:00
g.write('${name}(')
if name == 'println' && it.args[0].typ != table.string_type_idx {
2020-03-11 23:22:40 +01:00
// `println(int_str(10))`
sym := g.table.get_type_symbol(it.args[0].typ)
2020-03-11 23:22:40 +01:00
g.write('${sym.name}_str(')
g.expr(it.args[0].expr)
2020-03-11 23:22:40 +01:00
g.write('))')
}
else {
g.call_args(it.args)
2020-03-11 23:22:40 +01:00
g.write(')')
}
g.is_c_call = false
}
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')
2020-03-15 02:51:31 +01:00
g.write(g.typ(it.typ))
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 {
// If expression? Assign the value to a temp var.
// Previously ?: was used, but it's too unreliable.
type_sym := g.table.get_type_symbol(it.typ)
mut tmp := ''
if type_sym.kind != .void {
tmp = g.new_tmp_var()
// g.writeln('$ti.name $tmp;')
}
2020-03-05 00:43:02 +01:00
// one line ?:
// TODO clean this up once `is` is supported
if it.stmts.len == 1 && it.else_stmts.len == 1 && type_sym.kind != .void {
cond := it.cond
stmt1 := it.stmts[0]
else_stmt1 := it.else_stmts[0]
match stmt1 {
ast.ExprStmt {
g.expr(cond)
g.write(' ? ')
expr_stmt := stmt1 as ast.ExprStmt
g.expr(expr_stmt.expr)
g.write(' : ')
g.stmt(else_stmt1)
}
else {}
}
}
2020-03-05 00:43:02 +01:00
else {
g.write('if (')
g.expr(it.cond)
g.writeln(') {')
for i, stmt in it.stmts {
// Assign ret value
if i == it.stmts.len - 1 && type_sym.kind != .void {}
// g.writeln('$tmp =')
2019-12-31 19:42:16 +01:00
g.stmt(stmt)
}
g.writeln('}')
2020-03-05 00:43:02 +01:00
if it.else_stmts.len > 0 {
g.writeln('else { ')
for stmt in it.else_stmts {
g.stmt(stmt)
}
g.writeln('}')
}
2019-12-31 19:42:16 +01:00
}
}
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.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)
size := it.vals.len
2020-03-07 14:31:40 +01:00
if size > 0 {
2020-03-07 08:13:00 +01:00
g.write('new_map_init($size, sizeof($value_typ_sym.name), (${key_typ_sym.name}[$size]){')
for expr in it.keys {
g.expr(expr)
g.write(', ')
}
g.write('}, (${value_typ_sym.name}[$size]){')
for expr in it.vals {
g.expr(expr)
g.write(', ')
}
g.write('})')
}
else {
g.write('new_map(1, sizeof($value_typ_sym.name))')
}
}
ast.MethodCallExpr {
mut receiver_name := 'TODO'
// TODO: there are still due to unchecked exprs (opt/some fn arg)
2020-03-10 23:21:26 +01:00
if it.expr_type != 0 {
typ_sym := g.table.get_type_symbol(it.expr_type)
2020-03-11 23:22:40 +01:00
// rec_sym := g.table.get_type_symbol(it.receiver_type)
receiver_name = typ_sym.name
2020-03-11 23:22:40 +01:00
if typ_sym.kind == .array && it.name in
// TODO performance, detect `array` method differently
2020-03-11 23:43:01 +01:00
['repeat', 'sort_with_compare', 'free', 'push_many', 'trim', 'first', 'clone'] {
2020-03-11 23:22:40 +01:00
// && rec_sym.name == 'array' {
// && rec_sym.name == 'array' && receiver_name.starts_with('array') {
// `array_byte_clone` => `array_clone`
2020-03-10 23:21:26 +01:00
receiver_name = 'array'
}
}
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 {
g.write('sizeof($it.type_name)')
}
ast.StringLiteral {
2020-03-08 22:11:56 +01:00
// In C calls we have to generate C strings
// `C.printf("hi")` => `printf("hi");`
escaped_val := it.val.replace_each(['"', '\\"',
'\r\n', '\\n',
'\n', '\\n'])
if g.is_c_call {
g.write('"$escaped_val"')
}
else {
g.write('tos3("$escaped_val")')
}
}
// `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 = ')
g.expr(it.exprs[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))
}
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 {
styp := g.typ(node.left_type)
2020-03-10 23:21:26 +01:00
g.write('_IN($styp, ')
2020-03-12 10:07:42 +01:00
g.expr(node.left)
2020-03-10 23:21:26 +01:00
g.write(', ')
2020-03-12 10:07:42 +01:00
g.expr(node.right)
2020-03-10 23:21:26 +01:00
g.write(')')
}
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(&')
g.expr(node.left)
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(&')
g.expr(node.left)
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
if node.expr_type == 0 {
g.writeln('// match 0')
return
}
type_sym := g.table.get_type_symbol(node.expr_type)
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')
// mut sum_type_str = ''
for j, branch in node.branches {
if j == node.branches.len - 1 {
// last block is an `else{}`
g.writeln('else {')
}
else {
if j > 0 {
g.write('else ')
}
g.write('if (')
for i, expr in branch.exprs {
if node.is_sum_type {
g.write('${tmp}.typ == ')
// sum_type_str
}
else if type_sym.kind == .string {
g.write('string_eq($tmp, ')
}
else {
g.write('$tmp == ')
}
g.expr(expr)
if type_sym.kind == .string {
g.write(')')
}
if i < branch.exprs.len - 1 {
g.write(' || ')
}
}
g.writeln(') {')
}
if node.is_sum_type && branch.exprs.len > 0 {
// The first node in expr is an ast.Type
// Use it to generate `it` variable.
fe := branch.exprs[0]
match fe {
ast.Type {
it_type := g.typ(it.typ)
2020-03-16 05:02:41 +01:00
g.writeln('$it_type* it = ($it_type*)${tmp}.obj; // ST it')
2020-03-16 03:56:38 +01:00
}
else {
verror('match sum type')
}
}
}
g.stmts(branch.stmts)
g.writeln('}')
}
}
2020-03-13 05:57:51 +01:00
fn (g mut Gen) ident(node ast.Ident) {
name := node.name.replace('.', '__')
if name.starts_with('C__') {
g.write(name[3..])
}
else {
// TODO `is`
match node.info {
ast.IdentVar {
if it.is_optional {
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-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 {
// }
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-07 16:39:15 +01:00
if g.is_assign_expr {
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-06 20:22:58 +01:00
else if sym.kind == .string {
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) {
g.write('return')
// multiple returns
if it.exprs.len > 1 {
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-13 05:57:51 +01:00
styp := g.typ(g.fn_decl.return_type)
g.write(' ($styp){')
for i, expr in it.exprs {
g.write('.arg$i=')
g.expr(expr)
if i < it.exprs.len - 1 {
g.write(',')
}
}
g.write('}')
}
// normal return
else if it.exprs.len == 1 {
g.write(' ')
// `return opt_ok(expr)` for functions that expect an optional
if table.type_is_optional(g.fn_decl.return_type) {
mut is_none := false
mut is_error := false
match it.exprs[0] {
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*/')
}
2020-03-16 07:42:45 +01:00
if g.is_sum_cast(it.types[0], g.fn_decl.return_type) {
g.sum_cast(it.types[0], g.fn_decl.return_type, it.exprs[0])
}
else {
g.expr(it.exprs[0])
}
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]
match expr {
// 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.
ast.CharLiteral, ast.IntegerLiteral {
g.definitions.write('#define $name ')
// TODO hack. Cut the generated value and paste it into definitions.
g.write('//')
pos := g.out.len
2020-03-06 14:03:35 +01:00
g.expr(expr)
mut b := g.out.buf[pos..g.out.buf.len].clone()
b << `\0`
val := string(b)
// val += '\0'
// g.out.go_back(val.len)
// println('pos=$pos buf.len=$g.out.buf.len len=$g.out.len val.len=$val.len val="$val"\n')
g.writeln('')
g.definitions.writeln(val)
2020-03-06 14:03:35 +01:00
}
else {
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-06 14:03:35 +01:00
// TODO
// g.expr(node.exprs[i])
}
}
}
}
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)
2020-03-10 23:21:26 +01:00
}
g.expr(arg.expr)
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*/')
}
else if arg_is_ptr && !expr_is_ptr {
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
const (
2020-03-11 21:11:27 +01:00
// TODO all builtin types must be lowercase
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-10 23:21:26 +01:00
// g.write_types(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
}
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 {
g.definitions.writeln('// Sum type')
g.definitions.writeln('
typedef struct {
void* obj;
int typ;
} $name;')
}
2020-03-05 23:27:21 +01:00
else {}
}
}
}
// 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
}
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'}
}
}