From 56262f5e8e521c782629aa18ed3d294c26f45011 Mon Sep 17 00:00:00 2001 From: Kyle Gunger Date: Thu, 24 Aug 2023 20:12:24 -0400 Subject: change in_csv to return an index --- tnslc/compiler.tnsl | 104 ++++++++++++++++++++++++++++++++++++++++++++++++--- tnslc/tokenizer.tnsl | 6 +-- tnslc/utils.tnsl | 13 +++++-- tnslc/vector.tnsl | 1 + 4 files changed, 112 insertions(+), 12 deletions(-) diff --git a/tnslc/compiler.tnsl b/tnslc/compiler.tnsl index bac32ae..4291783 100644 --- a/tnslc/compiler.tnsl +++ b/tnslc/compiler.tnsl @@ -190,26 +190,57 @@ struct Type { /; method Type /; start self.ptr_chain.start(1) - # 136 is the size of one Variable struct - self.members.start(136) + # 112 is the size of one Variable struct + self.members.start(112) + self.s = -1 + ;/ + + /; copy [Type] + Type out + out.start() + out.name = self.name + out.mod = self.mod + out.s = self.s + return out ;/ /; _del self.ptr_chain._del() self.members._del() - ;/ ;/ +{}uint8 CSV_PRIMITIVES = "uint8,uint16,uint32,uint64,uint,int8,int16,int32,int64,int,float32,float64,float,comp32,comp64,comp,vect,bool,type,void" +{}uint8 sizes = {1, 2, 4, 8, 8, 1, 2, 4, 8, 8, 4, 8, 8, 4, 8, 8, 0, 1, 0, 0} +{}uint8 NONE = "NONE\0" +/; get_primitive (~Token tok) [Type] + int idx = in_csv(~CSV_PRIMITIVES, tok`.data) + + Type out + out.start() + + /; if (idx !< 0) + out.s = sizes{idx} + out.name = tok.data + out.mod = 0 + return out + ;/ + + out.s = 0 - 1 + out.name = ~NONE{0} + out.mod = 0 + + return out +;/ ############# # Variables # ############# -# 136 bytes long +# 112 bytes long struct Variable { - Vector name, + ~uint name, Type data_type, @@ -218,7 +249,22 @@ struct Variable { } /; method Variable + /; start (Type t) + self.data_type = t + ;/ + + /; copy [Variable] + Variable out + Type cpy = self.data_type.copy() + out.start(cpy) + out.location = self.location + out.loc_type = self.loc_type + return out + ;/ + /; _del + self.data_type._del() + ;/ ;/ @@ -227,21 +273,67 @@ struct Variable { # Modules # ########### +# 145 bytes long struct Module { - int i + ~Module + parent, + ~uint8 + name, + bool + exp, # Export or not + Vector + typ, # Types + fnc, # Functions + def, # Variable definitions (lables) + sub # Sub modules (pointers) } /; method Module /; start + self.typ.start(88) + self.fnc.start(1) # not impl yet + self.def.start(112) + self.sub.start(145) + ;/ + + /; find_type (~Token name) [~Type] + /; + + ;/ + + return 0 ;/ /; _del + /; loop (int i = 0; i < self.typ.num_el) [i++] + ~Type t = self.typ.get(i) + t`._del() + ;/ + self.typ._del() + self.fnc._del() + /; loop (int i = 0; i < self.typ.num_el) [i++] + ~Type t = self.typ.get(i) + t`._del() + ;/ + + self.def._del() + self.sub._del() ;/ ;/ +/; + +;/ + /; base_loop_1 (Path in, Vector tokens, ~Module mod) + ~Token curr + + /; loop (int i = 0; i < tokens.num_el) [i++] + curr = tokens.get(i) + + ;/ ;/ diff --git a/tnslc/tokenizer.tnsl b/tnslc/tokenizer.tnsl index 62acd4a..09509f8 100644 --- a/tnslc/tokenizer.tnsl +++ b/tnslc/tokenizer.tnsl @@ -113,7 +113,7 @@ struct Token { ;/ ;/ - return in_csv(~CSV_AUGMENTS, tok.data) + return in_csv(~CSV_AUGMENTS, tok.data) !< 0 ;/ # True if the token is a valid number (integer or float) @@ -157,9 +157,9 @@ struct Token { ;; else if (contains_char(~AUGMENTS, tok.data{0}) == true) return TOKEN_TYPE.AUGMENT ;/ - ;; else if (in_csv(~CSV_KEYWORDS, tok.data) == true) + ;; else if (in_csv(~CSV_KEYWORDS, tok.data) !< 0) return TOKEN_TYPE.KEYWORD - ;; else if (in_csv(~CSV_KEYTYPES, tok.data) == true) + ;; else if (in_csv(~CSV_KEYTYPES, tok.data) !< 0) return TOKEN_TYPE.KEYTYPE ;; else if (is_numeric_literal(tok) == true) return TOKEN_TYPE.LITERAL diff --git a/tnslc/utils.tnsl b/tnslc/utils.tnsl index 54f01aa..91e8d2e 100644 --- a/tnslc/utils.tnsl +++ b/tnslc/utils.tnsl @@ -21,23 +21,25 @@ {}uint8 csv_pr = "\0\0" -/; in_csv ({}uint8 csv, ~uint8 cstr) [bool] +/; in_csv ({}uint8 csv, ~uint8 cstr) [int] int sl = cstr_len(cstr) int cl = len csv int seen = 0 + int idx = 0 /; loop (int i = 0; i < cl) [i++] /; if (seen < 0) /; if (csv{i} == ',') seen = 0 + idx++ ;/ continue ;/ /; if (seen !< sl) /; if (csv{i} == ',') - return true + return idx ;/ seen = -1 ;; else if (cstr{seen} == csv{i}) @@ -45,13 +47,18 @@ # _printf(~csv_pr{0}) seen++ ;; else if (csv{i} == ',') + idx++ seen = 0 ;; else seen = -1 ;/ ;/ - return seen == sl + /; if (seen == sl) + return idx + ;/ + + return 0 - 1 ;/ /; cstr_copy (~uint8 from, to) diff --git a/tnslc/vector.tnsl b/tnslc/vector.tnsl index cab2ead..9401508 100644 --- a/tnslc/vector.tnsl +++ b/tnslc/vector.tnsl @@ -1,3 +1,4 @@ +# 32 bytes long struct Vector { uint el_size, -- cgit v1.2.3