mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
cgen: generate init()
This commit is contained in:
parent
c93f515a54
commit
e57804e6c2
@ -72,7 +72,9 @@ pub fn (b &Builder) after(n int) string {
|
|||||||
return ''
|
return ''
|
||||||
}
|
}
|
||||||
buf := b.buf[n..]
|
buf := b.buf[n..]
|
||||||
return string(buf.clone())
|
mut copy := buf.clone()
|
||||||
|
copy << `\0`
|
||||||
|
return string(copy)
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn (b mut Builder) str() string {
|
pub fn (b mut Builder) str() string {
|
||||||
|
@ -12,6 +12,7 @@ struct Gen {
|
|||||||
out strings.Builder
|
out strings.Builder
|
||||||
typedefs strings.Builder
|
typedefs strings.Builder
|
||||||
definitions strings.Builder // typedefs, defines etc (everything that goes to the top of the file)
|
definitions strings.Builder // typedefs, defines etc (everything that goes to the top of the file)
|
||||||
|
inits strings.Builder // contents of `void _init(){}`
|
||||||
table &table.Table
|
table &table.Table
|
||||||
mut:
|
mut:
|
||||||
fn_decl &ast.FnDecl // pointer to the FnDecl we are currently inside otherwise 0
|
fn_decl &ast.FnDecl // pointer to the FnDecl we are currently inside otherwise 0
|
||||||
@ -33,6 +34,7 @@ pub fn cgen(files []ast.File, table &table.Table) string {
|
|||||||
out: strings.new_builder(100)
|
out: strings.new_builder(100)
|
||||||
typedefs: strings.new_builder(100)
|
typedefs: strings.new_builder(100)
|
||||||
definitions: strings.new_builder(100)
|
definitions: strings.new_builder(100)
|
||||||
|
inits: strings.new_builder(100)
|
||||||
table: table
|
table: table
|
||||||
fn_decl: 0
|
fn_decl: 0
|
||||||
}
|
}
|
||||||
@ -42,6 +44,9 @@ pub fn cgen(files []ast.File, table &table.Table) string {
|
|||||||
}
|
}
|
||||||
g.write_variadic_types()
|
g.write_variadic_types()
|
||||||
g.write_str_definitions()
|
g.write_str_definitions()
|
||||||
|
g.writeln('void _init() {')
|
||||||
|
g.writeln(g.inits.str())
|
||||||
|
g.writeln('}')
|
||||||
return g.typedefs.str() + g.definitions.str() + g.out.str()
|
return g.typedefs.str() + g.definitions.str() + g.out.str()
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1425,31 +1430,28 @@ fn (g mut Gen) const_decl(node ast.ConstDecl) {
|
|||||||
for i, field in node.fields {
|
for i, field in node.fields {
|
||||||
name := field.name.replace('.', '__')
|
name := field.name.replace('.', '__')
|
||||||
expr := node.exprs[i]
|
expr := node.exprs[i]
|
||||||
|
// 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)
|
||||||
match expr {
|
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 {
|
ast.CharLiteral, ast.IntegerLiteral {
|
||||||
|
// 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.write('#define $name ')
|
||||||
// TODO hack. Cut the generated value and paste it into definitions.
|
|
||||||
g.write('//')
|
|
||||||
pos := g.out.len
|
|
||||||
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)
|
g.definitions.writeln(val)
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
// Initialize more complex consts in `void _init(){}`
|
||||||
|
// (C doesn't allow init expressions that can't be resolved at compile time).
|
||||||
styp := g.typ(field.typ)
|
styp := g.typ(field.typ)
|
||||||
g.definitions.writeln('$styp $name; // inited later') // = ')
|
g.definitions.writeln('$styp $name; // inited later') // = ')
|
||||||
// TODO
|
g.inits.write('$name = ')
|
||||||
// g.expr(node.exprs[i])
|
g.inits.write(val)
|
||||||
|
g.inits.writeln(';')
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -1534,6 +1536,11 @@ fn verror(s string) {
|
|||||||
// exit(1)
|
// exit(1)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
fn (g mut Gen) write_init_function() {
|
||||||
|
g.writeln('void _init() {')
|
||||||
|
g.writeln('}')
|
||||||
|
}
|
||||||
|
|
||||||
fn (g mut Gen) write_str_definitions() {
|
fn (g mut Gen) write_str_definitions() {
|
||||||
// _STR function can't be defined in vlib
|
// _STR function can't be defined in vlib
|
||||||
g.writeln('
|
g.writeln('
|
||||||
|
@ -48,6 +48,7 @@ fn compare_texts(a, b, path string) bool {
|
|||||||
|
|
||||||
for i, line_a in lines_a {
|
for i, line_a in lines_a {
|
||||||
if i >= lines_b.len {
|
if i >= lines_b.len {
|
||||||
|
println(line_a)
|
||||||
return false
|
return false
|
||||||
}
|
}
|
||||||
line_b := lines_b[i]
|
line_b := lines_b[i]
|
||||||
|
@ -188,9 +188,10 @@ extern wchar_t **_wenviron;
|
|||||||
byte g_str_buf[1024];
|
byte g_str_buf[1024];
|
||||||
int load_so(byteptr);
|
int load_so(byteptr);
|
||||||
void reload_so();
|
void reload_so();
|
||||||
|
void _init();
|
||||||
|
|
||||||
// ============== wyhash ==============
|
// ============== wyhash ==============
|
||||||
// Author: Wang Yi <godspeed_china@yeah.net>
|
// Author: Wang Yi
|
||||||
#ifndef wyhash_version_4
|
#ifndef wyhash_version_4
|
||||||
#define wyhash_version_4
|
#define wyhash_version_4
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
|
Loading…
Reference in New Issue
Block a user