-
Notifications
You must be signed in to change notification settings - Fork 91
/
Copy patheval-compile.cpp
350 lines (320 loc) · 17.2 KB
/
eval-compile.cpp
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
/* -*- Mode: C++; c-basic-offset: 4; indent-tabs-mode: nil; tab-width: 4 -*- */
/* vi: set ts=4 sw=4 expandtab: (add to ~/.vimrc: set modeline modelines=5) */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#include "avmplus.h"
#ifdef VMCFG_EVAL
#include "eval.h"
namespace avmplus
{
namespace RTC
{
// Syntax error strings. When these include formats they are to be interpreted as printf style
// formats for now, notably %s means utf8 or latin1 string. Note that a string may be used
// more than one place, so if you add or remove or change a format be sure to look for all
// occurrences of the string. Note also that order matters crucially, see the enum in eval.h.
static const char* const syntax_errors[] = {
/* SYNTAXERR_EOT_IN_REGEXP */ "Unexpected end of program in regexp literal",
/* SYNTAXERR_NEWLINE_IN_REGEXP */ "Illegal newline in regexp literal",
/* SYNTAXERR_XML_UNEXPECTED_TOKEN */ "Unexpected token in XML parsing",
/* SYNTAXERR_NATIVE_NOT_SUPPORTED */ "'native' functions are not supported",
/* SYNTAXERR_DEFAULT_NOT_EXPECTED */ "'default' not expected here",
/* SYNTAXERR_ILLEGAL_QNAME */ "Illegal qualified name",
/* SYNTAXERR_IMPOSSIBLE_DEFAULT */ "Unsupported default value (ABC restriction)",
/* SYNTAXERR_ILLEGAL_TYPENAME */ "Illegal type name",
/* SYNTAXERR_ILLEGAL_FIELDNAME */ "Illegal field name: String, number, or identifier is required",
/* SYNTAXERR_ILLEGAL_PROPNAME */ "Illegal property identifier",
/* SYNTAXERR_QUALIFIER_NOT_ALLOWED */"Qualifier not allowed here",
/* SYNTAXERR_ILLEGAL_INCLUDE */ "Illegal 'include' directive",
/* SYNTAXERR_ILLEGAL_NAMESPACE */ "Illegal 'namespace' directive",
/* SYNTAXERR_ILLEGAL_IN_INTERFACE */ "Variable or constant definition not allowed in interface",
/* SYNTAXERR_ONE_ARGUMENT_REQUIRED */"Exactly one argument required",
/* SYNTAXERR_NO_FUNCTIONS_IN_BLOCKS*/"Function definitions cannot be block-local",
/* SYNTAXERR_SEMICOLON_OR_NEWLINE */ "Expecting semicolon or newline",
/* SYNTAXERR_CONST_INIT_REQD */ "'const' bindings must be initialized",
/* SYNTAXERR_ILLEGAL_USE */ "Illegal 'use' directive",
/* SYNTAXERR_RETURN_OUTSIDE_FN */ "'return' statement only allowed inside a function",
/* SYNTAXERR_VOIDFN_RETURNS_VALUE */ "'void' function cannot return a value",
/* SYNTAXERR_EXPECT_DXNS */ "Expected 'default xml namespace'",
/* SYNTAXERR_FOR_IN_ONEBINDING */ "Only one variable binding allowed in for-in",
/* SYNTAXERR_FOR_EACH_REQS_IN */ "'for each' requires use of the 'in' form",
/* SYNTAXERR_DUPLICATE_DEFAULT */ "Duplicate 'default' clause",
/* SYNTAXERR_EXPECT_CASE_OR_DEFAULT*/"Expecting 'case' or 'default'",
/* SYNTAXERR_CLASS_NOT_ALLOWED */ "Class not allowed here",
/* SYNTAXERR_PROPERTY_OPERATOR_REQUIRED */ "Property operator required",
/* SYNTAXERR_INTERFACE_NOT_ALLOWED */"Interface not allowed here",
/* SYNTAXERR_XML_ILLEGAL_CHARS */ "Illegal embedded characters in XML literal",
/* SYNTAXERR_STMT_IN_INTERFACE */ "Statements not allowed in interface",
/* SYNTAXERR_ILLEGAL_STMT */ "Illegal statement",
/* SYNTAXERR_KWD_NOT_ALLOWED */ "'%s' not allowed here",
/* SYNTAXERR_INCLUDE_ORIGIN */ "The 'include' directive is only allowed in programs whose origin is a file",
/* SYNTAXERR_INCLUDE_INACCESSIBLE */ "An include file could not be opened or read",
/* SYNTAXERR_REDEFINITION */ "Conflicting binding of name",
/* SYNTAXERR_REDEFINITION_TYPE */ "Conflicting binding of names: mismatching types",
/* SYNTAXERR_REDUNDANT_CONST */ "Redundant constant binding",
/* SYNTAXERR_REDUNDANT_METHOD */ "Redundant method binding",
/* SYNTAXERR_REDUNDANT_NAMESPACE */ "Redundant namespace binding",
/* SYNTAXERR_DEFAULT_VALUE_REQD */ "Default value required",
#ifdef DEBUG
/* SYNTAXERR_WRONG_TOKEN */ "Wrong token - expected %d got %d",
#else
/* SYNTAXERR_WRONG_TOKEN */ "Wrong token",
#endif
/* SYNTAXERR_EXPECTED_IDENT */ "Expected identifier",
/* SYNTAXERR_ILLEGALCHAR_NUL */ "Illegal character in input: NUL",
/* SYNTAXERR_ILLEGAL_NUMBER */ "Illegal numeric literal: no digits",
/* SYNTAXERR_ILLEGALCHAR_POSTNUMBER*/"Illegal character following numeric literal: %c",
/* SYNTAXERR_EOI_IN_COMMENT */ "End of input in block comment",
/* SYNTAXERR_ILLEGALCHAR */ "Illegal character in input: %c",
/* SYNTAXERR_UNTERMINATED_STRING */ "Unterminated string literal (newline or end of input)",
/* SYNTAXERR_EOI_IN_ESC */ "End of input in escape sequence",
/* SYNTAXERR_XML_UNTERMINATED */ "Unterminated XML token",
/* SYNTAXERR_XML_INVALID_SLASH */ "Invalid sequence starting with '/'",
/* SYNTAXERR_XML_INVALID_LEFTBANG */ "Invalid sequence starting with '<!'",
/* SYNTAXERR_IDENT_IS_KWD */ "Illegal identifier: escape sequence makes it look like a keyword",
/* SYNTAXERR_EOL_IN_ESC */ "Illegal line terminator in escape sequence",
/* SYNTAXERR_INVALID_VAR_ESC */ "Invalid variable-length unicode escape",
/* SYNTAXERR_ILLEGAL_BREAK */ "No 'break' allowed here",
/* SYNTAXERR_BREAK_LABEL_UNDEF */ "'break' to undefined label",
/* SYNTAXERR_ILLEGAL_CONTINUE */ "No 'continue' allowed here",
/* SYNTAXERR_CONTINUE_LABEL_UNDEF */ "'continue' to undefined label",
/* SYNTAXERR_XML_EOI_IN_MARKUP */ "End of input in XML markup",
/* SYNTAXERR_UNBOUND_CONST_NAME */ "Unbound name in constant expression",
/* SYNTAXERR_ILLEGAL_OP_IN_CONSTEXPR */ "Illegal operator in constant expression",
/* SYNTAXERR_CONFIG_NAMESPACE_SHADOWING */ "Definition shadows a configuration namespace",
/* SYNTAXERR_ILLEGAL_METADATA */ "Bad or redundant metadata",
/* SYNTAXERR_KWD_NAMESPACE_REQUIRED */ "'namespace' is required here",
/* SYNTAXERR_CONFIG_NAMESPACE_NOT_ALLOWED */ "A 'config' namespace may not be defined here",
/* SYNTAXERR_CONFIG_NAMESPACE_MUST_BE_UNQUALIFIED */ "'config namespace' must not have a qualifier",
/* SYNTAXERR_DUPLICATE_CONFIG */ "Redundant program configuration expression",
/* SYNTAXERR_DIRECTIVE_REQUIRED */ "Directive required",
/* SYNTAXERR_METADATA_NOT_ALLOWED */ "Metadata not allowed",
/* SYNTAXERR_NEWLINE_NOT_ALLOWED */ "Newline not allowed",
/* SYNTAXERR_DUPLICATE_QUALIFIER */ "Duplicated qualifier",
/* SYNTAXERR_CONFIG_REQUIRED */ "Configuration name reference required",
/* SYNTAXERR_CONFIG_PROHIBITED */ "Configuration name reference prohibited",
/* SYNTAXERR_GOTO_LABEL_UNDEFINED */ "Undefined label in 'goto' statement",
/* SYNTAXERR_GOTO_LABEL_AMBIGUOUS */ "Ambiguous label in 'goto' statement",
/* SYNTAXERR_MISSING_BASE_CLASS */ "Base class not found",
/* SYNTAXERR_CIRCULAR_TYPE_HIERARCHY */ "Cycle in the inheritance hierarchy",
};
// Assume that the number of unique identifiers in a program is roughly the square root
// of the raw length of the program. Needs experimental verification. May only be
// true for programs above a certain size; may want a lower limit on the table size.
//
// Using this "arbitrary" value for k we have to use mod when computing the hash bucket
// when interning. Faster would be to round k up to a power of 2, then use k-1 as a
// mask in intern().
static Str** makeStrTable(Allocator* allocator, uint32_t tableSize)
{
Str** strTable = (Str**)allocator->alloc(sizeof(Str*) * tableSize);
for ( uint32_t i=0 ; i < tableSize ; i++ )
strTable[i] = NULL;
return strTable;
}
static const wchar default_filename[] = { '(', 'e', 'v', 'a', 'l', ' ', 's', 't', 'r', 'i', 'n', 'g', ')', 0 };
Compiler::Compiler(HostContext* context, const wchar* filename, const wchar* src, uint32_t srclen, bool public_by_default)
: context(context)
, allocator(new Allocator(this))
, filename(filename != NULL ? filename : default_filename)
, tableSize(uint32_t(sqrt((double)srclen)))
, es3_keywords(false) // ActionScript 3: false
, standard_regex(false) // ActionScript 3: false
, liberal_idents(true) // ActionScript 3: true
, local_functions(true) // ActionScript 3: true
, octal_literals(false) // ActionScript 3: false
, origin_is_file(filename != NULL)
, debugging(true)
, namespace_counter(1)
, strTable(makeStrTable(allocator, tableSize))
, lexer(this, src, srclen)
, parser(this, &lexer, public_by_default)
, abc(this)
, SYM_(intern(""))
, SYM_AS3(intern("AS3"))
, SYM_AS3_vec(intern("__AS3__.vec"))
, SYM_Array(intern("Array"))
, SYM_CONFIG(intern("CONFIG"))
, SYM_Namespace(intern("Namespace"))
, SYM_Number(intern("Number"))
, SYM_Object(intern("Object"))
, SYM_RegExp(intern("RegExp"))
, SYM_Vector(intern("Vector"))
, SYM_XML(intern("XML"))
, SYM_XMLList(intern("XMLList"))
, SYM_anonymous(intern("anonymous"))
, SYM_arguments(intern("arguments"))
, SYM_children(intern("children"))
, SYM_config(intern("config"))
, SYM_each(intern("each"))
, SYM_extends(intern("extends"))
, SYM_get(intern("get"))
, SYM_implements(intern("implements"))
, SYM_int(intern("int"))
, SYM_length(intern("length"))
, SYM_namespace(intern("namespace"))
#ifdef DEBUG
, SYM_print(intern("print"))
#endif
, SYM_set(intern("set"))
, SYM_use(intern("use"))
, SYM_xml(intern("xml"))
, str_filename(intern(this->filename, 0))
, NS_public(abc.addNamespace(CONSTANT_Namespace, abc.addString(SYM_)))
, NS_private(abc.addNamespace(CONSTANT_PrivateNs, abc.addString(SYM_)))
, NS_internal(NS_private)
, NS_AS3_vec(abc.addNamespace(CONSTANT_Namespace, abc.addString(SYM_AS3_vec)))
, ID_Array(abc.addQName(NS_public, abc.addString(SYM_Array)))
, ID_Namespace(abc.addQName(NS_public, abc.addString(SYM_Namespace)))
, ID_Number(abc.addQName(NS_public, abc.addString(SYM_Number)))
, ID_Object(abc.addQName(NS_public, abc.addString(SYM_Object)))
, ID_RegExp(abc.addQName(NS_public, abc.addString(SYM_RegExp)))
, ID_Vector(abc.addQName(NS_AS3_vec, abc.addString(SYM_Vector)))
, ID_XML(abc.addQName(NS_public, abc.addString(SYM_XML)))
, ID_XMLList(abc.addQName(NS_public, abc.addString(SYM_XMLList)))
, ID_children(abc.addQName(NS_public, abc.addString(SYM_children)))
, ID_int(abc.addQName(NS_public, abc.addString(SYM_int)))
, ID_length(abc.addQName(NS_public, abc.addString(SYM_length)))
#ifdef DEBUG
, ID_print(abc.addQName(NS_public, abc.addString(SYM_print)))
#endif
, NSS_public(abc.addNsset(ALLOC(Seq<uint32_t>, (NS_public, ALLOC(Seq<uint32_t>, (NS_internal))))))
, MNL_public(abc.addMultinameL(NSS_public, false))
, MNL_public_attr(abc.addMultinameL(NSS_public, true))
{
}
void Compiler::destroy()
{
delete allocator;
}
void Compiler::compile()
{
#if 0 && defined DEBUG
lexer.trace();
#endif
Program* program = parser.parse();
if (context->stopAfterParse)
return;
ABCTraitsTable* global_traits = ALLOC(ABCTraitsTable, (this));
ABCMethodInfo* global_info = ALLOC(ABCMethodInfo, (this, abc.addString("script$init"), 0, NULL, 0, NULL, 0));
ABCMethodBodyInfo* global_body = ALLOC(ABCMethodBodyInfo, (this, global_info, global_traits, 1, false));
uint32_t nsset = 0;
nsset = global_body->cogen.buildNssetWithPublic(program->openNamespaces);
ProgramCtx ctx(global_body->cogen.allocator, nsset, program->openNamespaces, global_body->cogen.getTemp());
program->cogenTypes(&global_body->cogen, &ctx, global_traits, program->classes);
program->cogen(&global_body->cogen, &ctx);
global_info->setFlags(global_body->getFlags() | abcMethod_SETS_DXNS);
ALLOC(ABCScriptInfo, (this, global_info, global_traits));
global_body->clearTraits(); // the traits belong to the script, so don't emit them with the body too
abc.serialize(context->obtainStorageForResult(abc.size()));
}
void Compiler::internalError(uint32_t lineno, const char* fmt, ...)
{
va_list args;
va_start(args,fmt);
internalWarningOrError(true, lineno, fmt, args);
va_end(args);
}
void Compiler::internalWarning(uint32_t lineno, const char* fmt, ...)
{
va_list args;
va_start(args,fmt);
internalWarningOrError(false, lineno, fmt, args);
va_end(args);
}
void Compiler::internalWarningOrError(bool error, uint32_t lineno, const char* fmt, va_list args)
{
char buf[500];
char lbuf[12];
if (lineno != 0)
VMPI_sprintf(lbuf, "%d", lineno);
else
VMPI_strcpy(lbuf, "Unknown");
{
char fbuf[500];
formatUtf8(fbuf, sizeof(fbuf), filename);
VMPI_snprintf(buf, sizeof(buf), "%s:%s: Internal %s: ", fbuf, lbuf, (error ? "error" : "warning"));
buf[sizeof(buf)-1] = 0;
}
int k = int(VMPI_strlen(buf));
VMPI_vsnprintf(buf+k, sizeof(buf)-k, fmt, args);
if (error)
context->throwInternalError(buf);
}
void Compiler::syntaxError(uint32_t lineno, SyntaxError fmt, ...)
{
const char* fmtstring = syntax_errors[(int)fmt];
char buf[500];
char lbuf[12];
if (lineno != 0)
VMPI_sprintf(lbuf, "%d", lineno);
else
VMPI_strcpy(lbuf, "Unknown");
{
char fbuf[500];
formatUtf8(fbuf, sizeof(fbuf), filename);
VMPI_snprintf(buf, sizeof(buf), "%s:%s: Syntax error: ", fbuf, lbuf);
buf[sizeof(buf)-1] = 0;
}
int k = int(VMPI_strlen(buf));
va_list args;
va_start(args,fmt);
VMPI_vsnprintf(buf+k, sizeof(buf)-k, fmtstring, args);
va_end(args);
context->throwSyntaxError(buf);
}
Str* Compiler::intern(const char* s)
{
StringBuilder b(this);
b.append(s);
return b.str();
}
Str* Compiler::intern(uint32_t u)
{
wchar buf[12];
uint32_t i = 0;
if (u == 0)
buf[i++] = '0';
else {
while (u != 0) {
buf[i++] = '0' + (u % 10);
u /= 10;
}
for ( uint32_t j=0, k=i-1 ; j < k ; j++, k-- ) {
wchar c = buf[j];
buf[j] = buf[k];
buf[k] = c;
}
}
return intern(buf, i);
}
Str* Compiler::intern(const wchar* chars, uint32_t nchars)
{
// '%' may not be the best here, see comment above about how to speed it up
// if it turns out to be a bottleneck.
uint32_t h = hashString(chars, nchars) % tableSize;
for ( Str* p = strTable[h] ; p != NULL ; p = p->next ) {
if (p->hash == h)
if (p->length == nchars)
if (VMPI_memcmp(p->s, chars, sizeof(wchar)*nchars) == 0)
return p;
}
// The string is not known yet
Str* str = (Str*)allocator->alloc(sizeof(Str) + sizeof(wchar)*(nchars - 1 + 1)); // -1 for the elt in Str, +1 for the NUL
VMPI_memcpy(str->s, chars, sizeof(wchar)*nchars);
str->s[nchars] = 0;
str->hash = h;
str->ident = ~0U;
str->next = strTable[h];
str->length = nchars;
strTable[h] = str;
#if 0 && defined DEBUG
char buf[200];
printf(">>> Interning: %s\n", getn(buf, str, sizeof(buf)));
#endif
return str;
}
}
}
#endif // VMCFG_EVAL