1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

[Tolk] AST-based semantic analysis, get rid of Expr

This is a huge refactoring focusing on untangling compiler internals
(previously forked from FunC).
The goal is to convert AST directly to Op (a kind of IR representation),
doing all code analysis at AST level.

Noteable changes:
- AST-based semantic kernel includes: registering global symbols,
  scope handling and resolving local/global identifiers,
  lvalue/rvalue calc and check, implicit return detection,
  mutability analysis, pure/impure validity checks,
  simple constant folding
- values of `const` variables are calculated NOT based on CodeBlob,
  but via a newly-introduced AST-based constant evaluator
- AST vertices are now inherited from expression/statement/other;
  expression vertices have common properties (TypeExpr, lvalue/rvalue)
- symbol table is rewritten completely, SymDef/SymVal no longer exist,
  lexer now doesn't need to register identifiers
- AST vertices have references to symbols, filled at different
  stages of pipeline
- the remaining "FunC legacy part" is almost unchanged besides Expr
  which was fully dropped; AST is converted to Ops (IR) directly
This commit is contained in:
tolk-vm 2024-12-16 21:19:45 +03:00
parent ea0dc16163
commit 3540424aa1
No known key found for this signature in database
GPG key ID: 7905DD7FE0324B12
71 changed files with 4270 additions and 3060 deletions

View file

@ -19,6 +19,7 @@
#include "src-file.h"
#include "symtable.h"
#include "td/utils/Status.h"
#include <functional>
#include <set>
#include <string>
@ -64,6 +65,26 @@ struct CompilerSettings {
void parse_experimental_options_cmd_arg(const std::string& cmd_arg);
};
// AST nodes contain std::string_view referencing to contents of .tolk files (kept in memory after reading).
// It's more than enough, except a situation when we create new AST nodes inside the compiler
// and want some "persistent place" for std::string_view to point to.
// This class copies strings to heap, so that they remain valid after closing scope.
class PersistentHeapAllocator {
struct ChunkInHeap {
const char* allocated;
std::unique_ptr<ChunkInHeap> next;
ChunkInHeap(const char* allocated, std::unique_ptr<ChunkInHeap>&& next)
: allocated(allocated), next(std::move(next)) {}
};
std::unique_ptr<ChunkInHeap> head = nullptr;
public:
std::string_view copy_string_to_persistent_memory(std::string_view str_in_tmp_memory);
void clear();
};
// CompilerState contains a mutable state that is changed while the compilation is going on.
// It's a "global state" of all compilation.
// Historically, in FunC, this global state was spread along many global C++ variables.
@ -71,14 +92,13 @@ struct CompilerSettings {
struct CompilerState {
CompilerSettings settings;
SymTable symbols;
int scope_level = 0;
SymDef* sym_def[SymTable::SIZE_PRIME + 1]{};
SymDef* global_sym_def[SymTable::SIZE_PRIME + 1]{};
std::vector<std::pair<int, SymDef>> symbol_stack;
std::vector<SrcLocation> scope_opened_at;
GlobalSymbolTable symtable;
PersistentHeapAllocator persistent_mem;
std::vector<SymDef*> all_code_functions, all_global_vars, all_get_methods, all_constants;
std::vector<const FunctionData*> all_code_functions;
std::vector<const FunctionData*> all_get_methods;
std::vector<const GlobalVarData*> all_global_vars;
std::vector<const GlobalConstData*> all_constants;
AllRegisteredSrcFiles all_src_files;
bool is_verbosity(int gt_eq) const { return settings.verbosity >= gt_eq; }