-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathprecompile.ts
77 lines (61 loc) · 3.02 KB
/
precompile.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
import type { CompilerContext } from "@/context/context";
import { resolveDescriptors } from "@/types/resolveDescriptors";
import { resolveAllocations } from "@/storage/resolveAllocation";
import { openContext, parseModules } from "@/context/store";
import { resolveStatements } from "@/types/resolveStatements";
import { resolveErrors } from "@/types/resolveErrors";
import { resolveSignatures } from "@/types/resolveSignatures";
import { resolveImports } from "@/imports/resolveImports";
import type { VirtualFileSystem } from "@/vfs/VirtualFileSystem";
import type * as Ast from "@/ast/ast";
import type { FactoryAst } from "@/ast/ast-helpers";
import type { Parser } from "@/grammar";
import { evalComptimeExpressions } from "@/types/evalComptimeExpressions";
import { computeReceiversEffects } from "@/types/effects";
export function precompile(
ctx: CompilerContext,
project: VirtualFileSystem,
stdlib: VirtualFileSystem,
entrypoint: string,
parser: Parser,
ast: FactoryAst,
parsedModules?: Ast.Module[],
) {
// Load all sources
const imported = resolveImports({ entrypoint, project, stdlib, parser });
// Parse the sources and attach the given parsed modules
const finalModules = [
...parseModules(imported.tact, parser),
...(parsedModules ?? []),
];
// Add information about all the source code entries to the context
ctx = openContext(ctx, imported.tact, imported.func, finalModules);
// First load type descriptors and check that
// they all have valid signatures
ctx = resolveDescriptors(ctx, ast);
// This checks and resolves all statements
ctx = resolveStatements(ctx);
// From this point onwards, it is safe to call evalConstantExpression.
/* Evaluate all comp-time expressions:
constants, default contract fields, default struct fields, method Ids
The original code inside constant, field and method id initialization actually mutated the CompilerContext object,
while the rest of the typechecker's code built a new CompilerContext every time it changed something.
Hence the reason of why this line is not written as:
ctx = evalComptimeExpressions(ctx, ast);
The code mutates fields in ConstantDescription, FieldDescription and FunctionDescription.
Evaluation of Message op-codes is done later in resolveSignatures. It was left there because
the computation of those op-codes is more involved than the computation of method ids, and so
it is hard to extract the call to evalConstantExpression in resolveSignatures.
*/
evalComptimeExpressions(ctx, ast);
// This creates TLB-style type definitions
ctx = resolveSignatures(ctx, ast);
// This extracts error messages
ctx = resolveErrors(ctx, ast);
// This creates allocations for all defined types
ctx = resolveAllocations(ctx);
// To use in code generation to decide if a receiver needs to call the contract storage function
computeReceiversEffects(ctx);
// Prepared context
return ctx;
}