1 | // Copyright (C) 2017 The Qt Company Ltd. |
---|---|
2 | // SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only |
3 | #ifndef QV4CODEGEN_P_H |
4 | #define QV4CODEGEN_P_H |
5 | |
6 | // |
7 | // W A R N I N G |
8 | // ------------- |
9 | // |
10 | // This file is not part of the Qt API. It exists purely as an |
11 | // implementation detail. This header file may change from version to |
12 | // version without notice, or even be removed. |
13 | // |
14 | // We mean it. |
15 | // |
16 | |
17 | #include <private/qqmljsastvisitor_p.h> |
18 | #include <private/qqmljsengine_p.h> |
19 | #include <private/qqmljsast_p.h> |
20 | #include <private/qqmljsdiagnosticmessage_p.h> |
21 | #include <private/qv4compiler_p.h> |
22 | #include <private/qv4compilercontext_p.h> |
23 | #include <private/qv4util_p.h> |
24 | #include <private/qv4bytecodegenerator_p.h> |
25 | #include <private/qv4calldata_p.h> |
26 | |
27 | #include <QtCore/qsharedpointer.h> |
28 | #include <stack> |
29 | |
30 | QT_BEGIN_NAMESPACE |
31 | |
32 | namespace QV4 { |
33 | |
34 | namespace Moth { |
35 | struct Instruction; |
36 | } |
37 | |
38 | namespace CompiledData { |
39 | struct CompilationUnit; |
40 | } |
41 | |
42 | namespace Compiler { |
43 | |
44 | struct ControlFlow; |
45 | struct ControlFlowCatch; |
46 | struct ControlFlowFinally; |
47 | |
48 | class Q_QML_COMPILER_EXPORT CodegenWarningInterface |
49 | { |
50 | public: |
51 | virtual void reportVarUsedBeforeDeclaration(const QString &name, const QString &fileName, |
52 | QQmlJS::SourceLocation declarationLocation, |
53 | QQmlJS::SourceLocation accessLocation); |
54 | virtual ~CodegenWarningInterface() = default; |
55 | }; |
56 | |
57 | inline CodegenWarningInterface *defaultCodegenWarningInterface() |
58 | { |
59 | static CodegenWarningInterface iface; |
60 | return &iface; |
61 | } |
62 | |
63 | class Q_QML_COMPILER_EXPORT Codegen: protected QQmlJS::AST::Visitor |
64 | { |
65 | protected: |
66 | using BytecodeGenerator = QV4::Moth::BytecodeGenerator; |
67 | using Instruction = QV4::Moth::Instruction; |
68 | public: |
69 | Codegen(QV4::Compiler::JSUnitGenerator *jsUnitGenerator, bool strict, |
70 | CodegenWarningInterface *iface = defaultCodegenWarningInterface(), |
71 | bool storeSourceLocations = false); |
72 | |
73 | void generateFromProgram(const QString &fileName, |
74 | const QString &finalUrl, |
75 | const QString &sourceCode, |
76 | QQmlJS::AST::Program *ast, |
77 | Module *module, |
78 | ContextType contextType = ContextType::Global); |
79 | |
80 | void generateFromModule(const QString &fileName, |
81 | const QString &finalUrl, |
82 | const QString &sourceCode, |
83 | QQmlJS::AST::ESModule *ast, |
84 | Module *module); |
85 | |
86 | public: |
87 | class VolatileMemoryLocationScanner; |
88 | class VolatileMemoryLocations { |
89 | friend VolatileMemoryLocationScanner; |
90 | bool allVolatile = false; |
91 | QList<QStringView> specificLocations; |
92 | public: |
93 | bool isVolatile(QStringView name) { |
94 | if (allVolatile) |
95 | return true; |
96 | return specificLocations.contains(t: name); |
97 | } |
98 | |
99 | void add(QStringView name) { if (!allVolatile) specificLocations.append(t: name); } |
100 | void setAllVolatile() { allVolatile = true; } |
101 | }; |
102 | class RValue { |
103 | Codegen *codegen; |
104 | enum Type { |
105 | Invalid, |
106 | Accumulator, |
107 | StackSlot, |
108 | Const |
109 | } type; |
110 | union { |
111 | Moth::StackSlot theStackSlot; |
112 | QV4::ReturnedValue constant; |
113 | }; |
114 | |
115 | public: |
116 | static RValue fromStackSlot(Codegen *codegen, Moth::StackSlot stackSlot) { |
117 | RValue r; |
118 | r.codegen = codegen; |
119 | r.type = StackSlot; |
120 | r.theStackSlot = stackSlot; |
121 | return r; |
122 | } |
123 | static RValue fromAccumulator(Codegen *codegen) { |
124 | RValue r; |
125 | r.codegen = codegen; |
126 | r.type = Accumulator; |
127 | return r; |
128 | } |
129 | static RValue fromConst(Codegen *codegen, QV4::ReturnedValue value) { |
130 | RValue r; |
131 | r.codegen = codegen; |
132 | r.type = Const; |
133 | r.constant = value; |
134 | return r; |
135 | } |
136 | |
137 | bool operator==(const RValue &other) const; |
138 | |
139 | bool isValid() const { return type != Invalid; } |
140 | bool isAccumulator() const { return type == Accumulator; } |
141 | bool isStackSlot() const { return type == StackSlot; } |
142 | bool isConst() const { return type == Const; } |
143 | |
144 | Moth::StackSlot stackSlot() const { |
145 | Q_ASSERT(isStackSlot()); |
146 | return theStackSlot; |
147 | } |
148 | |
149 | QV4::ReturnedValue constantValue() const { |
150 | Q_ASSERT(isConst()); |
151 | return constant; |
152 | } |
153 | |
154 | Q_REQUIRED_RESULT RValue storeOnStack() const; |
155 | void loadInAccumulator() const; |
156 | }; |
157 | struct Reference { |
158 | enum Type { |
159 | Invalid, |
160 | Accumulator, |
161 | Super, |
162 | SuperProperty, |
163 | StackSlot, |
164 | ScopedLocal, |
165 | Name, |
166 | Member, |
167 | Subscript, |
168 | Import, |
169 | LastLValue = Import, |
170 | Const |
171 | } type = Invalid; |
172 | |
173 | bool isLValue() const { return !isReadonly && type > Accumulator; } |
174 | |
175 | Reference(Codegen *cg, Type t = Invalid) : Reference() |
176 | { |
177 | type = t; |
178 | codegen = cg; |
179 | } |
180 | |
181 | Reference(const QString &name = QString()) : |
182 | constant(0), |
183 | name(name), |
184 | isArgOrEval(false), |
185 | isReadonly(false), |
186 | isReferenceToConst(false), |
187 | requiresTDZCheck(false), |
188 | subscriptRequiresTDZCheck(false), |
189 | stackSlotIsLocalOrArgument(false), |
190 | isVolatile(false), |
191 | global(false), |
192 | qmlGlobal(false), |
193 | throwsReferenceError(false), |
194 | subscriptLoadedForCall(false), |
195 | isOptional(false), |
196 | hasSavedCallBaseSlot(false) |
197 | {} |
198 | |
199 | Reference(const Reference &) = default; |
200 | Reference(Reference &&) = default; |
201 | Reference &operator =(const Reference &) = default; |
202 | Reference &operator =(Reference &&) = default; |
203 | |
204 | bool operator==(const Reference &other) const; |
205 | bool operator!=(const Reference &other) const |
206 | { return !(*this == other); } |
207 | |
208 | bool isValid() const { return type != Invalid; } |
209 | bool loadTriggersSideEffect() const { |
210 | switch (type) { |
211 | case Name: |
212 | case Member: |
213 | case Subscript: |
214 | case SuperProperty: |
215 | return true; |
216 | default: |
217 | return requiresTDZCheck; |
218 | } |
219 | } |
220 | bool isConstant() const { return type == Const; } |
221 | bool isAccumulator() const { return type == Accumulator; } |
222 | bool isSuper() const { return type == Super; } |
223 | bool isSuperProperty() const { return type == SuperProperty; } |
224 | bool isStackSlot() const { return type == StackSlot; } |
225 | bool isRegister() const { |
226 | return isStackSlot(); |
227 | } |
228 | |
229 | static Reference fromAccumulator(Codegen *cg) { |
230 | return Reference(cg, Accumulator); |
231 | } |
232 | static Reference fromSuper(Codegen *cg) { |
233 | return Reference(cg, Super); |
234 | } |
235 | static Reference fromStackSlot(Codegen *cg, int tempIndex = -1, bool isLocal = false) { |
236 | Reference r(cg, StackSlot); |
237 | if (tempIndex == -1) |
238 | tempIndex = cg->bytecodeGenerator->newRegister(); |
239 | r.theStackSlot = Moth::StackSlot::createRegister(index: tempIndex); |
240 | r.stackSlotIsLocalOrArgument = isLocal; |
241 | return r; |
242 | } |
243 | static Reference fromScopedLocal(Codegen *cg, int index, int scope) { |
244 | Reference r(cg, ScopedLocal); |
245 | r.index = index; |
246 | r.scope = scope; |
247 | return r; |
248 | } |
249 | static Reference fromImport(Codegen *cg, int index) { |
250 | Reference r(cg, Import); |
251 | r.index = index; |
252 | return r; |
253 | } |
254 | static Reference fromName(Codegen *cg, const QString &name) { |
255 | Reference r(cg, Name); |
256 | r.name = name; |
257 | return r; |
258 | } |
259 | static Reference |
260 | fromMember(const Reference &baseRef, const QString &name, |
261 | QQmlJS::SourceLocation sourceLocation = QQmlJS::SourceLocation(), |
262 | bool isOptional = false, |
263 | std::vector<Moth::BytecodeGenerator::Jump> *optionalChainJumpsToPatch = nullptr) |
264 | { |
265 | Q_ASSERT(baseRef.isValid()); |
266 | Reference r(baseRef.codegen, Member); |
267 | r.propertyBase = baseRef.asRValue(); |
268 | r.propertyNameIndex = r.codegen->registerString(name); |
269 | r.requiresTDZCheck = baseRef.requiresTDZCheck; |
270 | r.sourceLocation = sourceLocation; |
271 | r.optionalChainJumpsToPatch = optionalChainJumpsToPatch; |
272 | r.isOptional = isOptional; |
273 | return r; |
274 | } |
275 | static Reference fromSuperProperty(const Reference &property) { |
276 | Q_ASSERT(property.isStackSlot()); |
277 | Reference r(property.codegen, SuperProperty); |
278 | r.property = property.stackSlot(); |
279 | r.subscriptRequiresTDZCheck = property.requiresTDZCheck; |
280 | return r; |
281 | } |
282 | static Reference fromSubscript(const Reference &baseRef, const Reference &subscript) { |
283 | Q_ASSERT(baseRef.isStackSlot()); |
284 | Reference r(baseRef.codegen, Subscript); |
285 | r.elementBase = baseRef.stackSlot(); |
286 | r.elementSubscript = subscript.asRValue(); |
287 | r.requiresTDZCheck = baseRef.requiresTDZCheck; |
288 | r.subscriptRequiresTDZCheck = subscript.requiresTDZCheck; |
289 | return r; |
290 | } |
291 | static Reference fromConst(Codegen *cg, QV4::ReturnedValue constant) { |
292 | Reference r(cg, Const); |
293 | r.constant = constant; |
294 | r.isReadonly = true; |
295 | return r; |
296 | } |
297 | static Reference fromThis(Codegen *cg) { |
298 | Reference r = fromStackSlot(cg, tempIndex: CallData::This); |
299 | r.isReadonly = true; |
300 | // ### Optimize this. Functions that are not derived constructors or arrow functions can't have an |
301 | // empty this object |
302 | r.requiresTDZCheck = true; |
303 | return r; |
304 | } |
305 | |
306 | RValue asRValue() const; |
307 | Reference asLValue() const; |
308 | |
309 | Q_REQUIRED_RESULT static Reference storeConstOnStack(Codegen *cg, QV4::ReturnedValue constant) |
310 | { return Reference::fromConst(cg, constant).storeOnStack(); } |
311 | |
312 | static void storeConstOnStack(Codegen *cg, QV4::ReturnedValue constant, int stackSlot) |
313 | { Reference::fromConst(cg, constant).storeOnStack(tempIndex: stackSlot); } |
314 | |
315 | Q_REQUIRED_RESULT Reference storeOnStack() const; |
316 | void storeOnStack(int tempIndex) const; |
317 | Q_REQUIRED_RESULT Reference storeRetainAccumulator() const; |
318 | Reference storeConsumeAccumulator() const; |
319 | |
320 | Q_REQUIRED_RESULT Reference baseObject() const; |
321 | |
322 | bool storeWipesAccumulator() const; |
323 | void loadInAccumulator() const; |
324 | |
325 | int nameAsIndex() const { |
326 | Q_ASSERT(type == Name); |
327 | return codegen->registerString(name); |
328 | } |
329 | |
330 | Moth::StackSlot stackSlot() const { |
331 | if (Q_UNLIKELY(!isStackSlot())) |
332 | Q_UNREACHABLE(); |
333 | return theStackSlot; |
334 | } |
335 | |
336 | void tdzCheck() const |
337 | { |
338 | if (isAccumulator()) |
339 | tdzCheck(requiresCheck: requiresTDZCheck, throwsReferenceError); |
340 | else if (isStackSlot()) |
341 | tdzCheckStackSlot(slot: stackSlot(), requiresCheck: requiresTDZCheck, throwsReferenceError); |
342 | } |
343 | |
344 | union { |
345 | Moth::StackSlot theStackSlot; |
346 | QV4::ReturnedValue constant; |
347 | struct { // Scoped arguments/Local |
348 | int index; |
349 | int scope; |
350 | }; |
351 | struct { |
352 | RValue propertyBase; |
353 | int propertyNameIndex; |
354 | }; |
355 | struct { |
356 | Moth::StackSlot elementBase; |
357 | union { |
358 | RValue elementSubscript; |
359 | Moth::StackSlot element; |
360 | }; |
361 | }; |
362 | Moth::StackSlot property; // super property |
363 | }; |
364 | QString name; |
365 | Codegen *codegen = nullptr; |
366 | |
367 | quint32 isArgOrEval:1; |
368 | quint32 isReadonly:1; |
369 | quint32 isReferenceToConst:1; |
370 | quint32 requiresTDZCheck:1; |
371 | quint32 subscriptRequiresTDZCheck:1; |
372 | quint32 stackSlotIsLocalOrArgument:1; |
373 | quint32 isVolatile:1; |
374 | quint32 global:1; |
375 | quint32 qmlGlobal:1; |
376 | quint32 throwsReferenceError:1; |
377 | quint32 subscriptLoadedForCall:1; |
378 | quint32 isOptional: 1; |
379 | quint32 hasSavedCallBaseSlot: 1; |
380 | QQmlJS::SourceLocation sourceLocation = QQmlJS::SourceLocation(); |
381 | std::vector<Moth::BytecodeGenerator::Jump> *optionalChainJumpsToPatch = nullptr; |
382 | int savedCallBaseSlot = -1; |
383 | int savedCallPropertyNameIndex = -1; |
384 | |
385 | private: |
386 | void storeAccumulator() const; |
387 | Reference doStoreOnStack(int tempIndex) const; |
388 | void tdzCheck(bool requiresCheck, bool throwsReferenceError) const; |
389 | void tdzCheckStackSlot( |
390 | Moth::StackSlot slot, bool requiresCheck, bool throwsReferenceError) const; |
391 | }; |
392 | |
393 | struct RegisterScope { |
394 | RegisterScope(Codegen *cg) |
395 | : generator(cg->bytecodeGenerator), |
396 | regCountForScope(generator->currentReg) {} |
397 | ~RegisterScope() { |
398 | generator->currentReg = regCountForScope; |
399 | } |
400 | BytecodeGenerator *generator; |
401 | int regCountForScope; |
402 | }; |
403 | |
404 | struct ObjectPropertyValue { |
405 | ObjectPropertyValue() {} |
406 | |
407 | Reference rvalue; |
408 | int getter = -1; // index in _module->functions or -1 if not set |
409 | int setter = -1; |
410 | uint keyAsIndex = UINT_MAX; |
411 | |
412 | bool hasGetter() const { return getter >= 0; } |
413 | bool hasSetter() const { return setter >= 0; } |
414 | }; |
415 | protected: |
416 | |
417 | enum Format { ex, cx, nx }; |
418 | class Result { |
419 | Reference _result; |
420 | |
421 | const BytecodeGenerator::Label *_iftrue = nullptr; |
422 | const BytecodeGenerator::Label *_iffalse = nullptr; |
423 | Format _format = ex; |
424 | Format _requested; |
425 | bool _trueBlockFollowsCondition = false; |
426 | |
427 | public: |
428 | explicit Result(const QString &name) |
429 | : _result(name) |
430 | , _requested(ex) |
431 | {} |
432 | |
433 | explicit Result(const Reference &lrvalue) |
434 | : _result(lrvalue) |
435 | , _requested(ex) |
436 | {} |
437 | |
438 | explicit Result(Format requested = ex) |
439 | : _requested(requested) {} |
440 | |
441 | explicit Result(const BytecodeGenerator::Label *iftrue, |
442 | const BytecodeGenerator::Label *iffalse, |
443 | bool trueBlockFollowsCondition) |
444 | : _iftrue(iftrue) |
445 | , _iffalse(iffalse) |
446 | , _requested(cx) |
447 | , _trueBlockFollowsCondition(trueBlockFollowsCondition) |
448 | { |
449 | Q_ASSERT(iftrue); |
450 | Q_ASSERT(iffalse); |
451 | } |
452 | |
453 | const BytecodeGenerator::Label *iftrue() const { |
454 | Q_ASSERT(_requested == cx); |
455 | return _iftrue; |
456 | } |
457 | |
458 | const BytecodeGenerator::Label *iffalse() const { |
459 | Q_ASSERT(_requested == cx); |
460 | return _iffalse; |
461 | } |
462 | |
463 | Format format() const { |
464 | return _format; |
465 | } |
466 | |
467 | bool accept(Format f) |
468 | { |
469 | if (_requested == f) { |
470 | _format = f; |
471 | return true; |
472 | } |
473 | return false; |
474 | } |
475 | |
476 | bool trueBlockFollowsCondition() const { |
477 | return _trueBlockFollowsCondition; |
478 | } |
479 | |
480 | const Reference &result() const { |
481 | return _result; |
482 | } |
483 | |
484 | void setResult(const Reference &result) { |
485 | _result = result; |
486 | } |
487 | |
488 | void setResult(Reference &&result) { |
489 | _result = std::move(result); |
490 | } |
491 | |
492 | void clearResultName() { |
493 | _result.name.clear(); |
494 | } |
495 | }; |
496 | |
497 | void enterContext(QQmlJS::AST::Node *node); |
498 | int leaveContext(); |
499 | public: |
500 | Context *enterBlock(QQmlJS::AST::Node *node); |
501 | int leaveBlock() { return leaveContext(); } |
502 | protected: |
503 | void leaveLoop(); |
504 | |
505 | enum UnaryOperation { |
506 | UPlus, |
507 | UMinus, |
508 | PreIncrement, |
509 | PreDecrement, |
510 | PostIncrement, |
511 | PostDecrement, |
512 | Not, |
513 | Compl |
514 | }; |
515 | |
516 | Reference unop(UnaryOperation op, const Reference &expr); |
517 | |
518 | void addCJump(); |
519 | |
520 | public: |
521 | int registerString(const QString &name) { |
522 | return jsUnitGenerator->registerString(str: name); |
523 | } |
524 | int registerConstant(QV4::ReturnedValue v) |
525 | { |
526 | return jsUnitGenerator->registerConstant(v); |
527 | } |
528 | int registerGetterLookup(int nameIndex, JSUnitGenerator::LookupMode mode) |
529 | { |
530 | return jsUnitGenerator->registerGetterLookup(nameIndex, mode); |
531 | } |
532 | int registerSetterLookup(int nameIndex) |
533 | { |
534 | return jsUnitGenerator->registerSetterLookup(nameIndex); |
535 | } |
536 | int registerGlobalGetterLookup(int nameIndex, JSUnitGenerator::LookupMode mode) |
537 | { |
538 | return jsUnitGenerator->registerGlobalGetterLookup(nameIndex, mode); |
539 | } |
540 | int registerQmlContextPropertyGetterLookup(int nameIndex, JSUnitGenerator::LookupMode mode) |
541 | { |
542 | return jsUnitGenerator->registerQmlContextPropertyGetterLookup(nameIndex, mode); |
543 | } |
544 | |
545 | // Returns index in _module->functions |
546 | virtual int defineFunction(const QString &name, QQmlJS::AST::Node *ast, |
547 | QQmlJS::AST::FormalParameterList *formals, |
548 | QQmlJS::AST::StatementList *body); |
549 | |
550 | protected: |
551 | void statement(QQmlJS::AST::Statement *ast); |
552 | void statement(QQmlJS::AST::ExpressionNode *ast); |
553 | void condition(QQmlJS::AST::ExpressionNode *ast, const BytecodeGenerator::Label *iftrue, |
554 | const BytecodeGenerator::Label *iffalse, |
555 | bool trueBlockFollowsCondition); |
556 | |
557 | inline Reference expression(QQmlJS::AST::ExpressionNode *ast, const QString &name = QString()) |
558 | { |
559 | if (!ast || hasError()) |
560 | return Reference(); |
561 | |
562 | pushExpr(name); |
563 | ast->accept(visitor: this); |
564 | return popResult(); |
565 | } |
566 | |
567 | inline void accept(QQmlJS::AST::Node *node) |
568 | { |
569 | if (!hasError() && node) |
570 | node->accept(visitor: this); |
571 | } |
572 | |
573 | void program(QQmlJS::AST::Program *ast); |
574 | void statementList(QQmlJS::AST::StatementList *ast); |
575 | void variableDeclaration(QQmlJS::AST::PatternElement *ast); |
576 | void variableDeclarationList(QQmlJS::AST::VariableDeclarationList *ast); |
577 | |
578 | Reference targetForPatternElement(QQmlJS::AST::PatternElement *p); |
579 | void initializeAndDestructureBindingElement(QQmlJS::AST::PatternElement *e, const Reference &baseRef = Reference(), bool isDefinition = false); |
580 | void destructurePropertyList(const Reference &object, QQmlJS::AST::PatternPropertyList *bindingList, bool isDefinition = false); |
581 | void destructureElementList(const Reference &array, QQmlJS::AST::PatternElementList *bindingList, bool isDefinition = false); |
582 | void destructurePattern(QQmlJS::AST::Pattern *p, const Reference &rhs); |
583 | |
584 | Reference referenceForPropertyName(const Codegen::Reference &object, QQmlJS::AST::PropertyName *name); |
585 | |
586 | void emitReturn(const Reference &expr); |
587 | |
588 | // nodes |
589 | bool visit(QQmlJS::AST::ArgumentList *ast) override; |
590 | bool visit(QQmlJS::AST::CaseBlock *ast) override; |
591 | bool visit(QQmlJS::AST::CaseClause *ast) override; |
592 | bool visit(QQmlJS::AST::CaseClauses *ast) override; |
593 | bool visit(QQmlJS::AST::Catch *ast) override; |
594 | bool visit(QQmlJS::AST::DefaultClause *ast) override; |
595 | bool visit(QQmlJS::AST::Elision *ast) override; |
596 | bool visit(QQmlJS::AST::Finally *ast) override; |
597 | bool visit(QQmlJS::AST::FormalParameterList *ast) override; |
598 | bool visit(QQmlJS::AST::Program *ast) override; |
599 | bool visit(QQmlJS::AST::StatementList *ast) override; |
600 | bool visit(QQmlJS::AST::UiArrayMemberList *ast) override; |
601 | bool visit(QQmlJS::AST::UiImport *ast) override; |
602 | bool visit(QQmlJS::AST::UiHeaderItemList *ast) override; |
603 | bool visit(QQmlJS::AST::UiPragmaValueList *ast) override; |
604 | bool visit(QQmlJS::AST::UiPragma *ast) override; |
605 | bool visit(QQmlJS::AST::UiObjectInitializer *ast) override; |
606 | bool visit(QQmlJS::AST::UiObjectMemberList *ast) override; |
607 | bool visit(QQmlJS::AST::UiParameterList *ast) override; |
608 | bool visit(QQmlJS::AST::UiProgram *ast) override; |
609 | bool visit(QQmlJS::AST::UiQualifiedId *ast) override; |
610 | bool visit(QQmlJS::AST::VariableDeclarationList *ast) override; |
611 | |
612 | bool visit(QQmlJS::AST::PatternElement *ast) override; |
613 | bool visit(QQmlJS::AST::PatternElementList *ast) override; |
614 | bool visit(QQmlJS::AST::PatternProperty *ast) override; |
615 | bool visit(QQmlJS::AST::PatternPropertyList *ast) override; |
616 | |
617 | bool visit(QQmlJS::AST::ExportDeclaration *ast) override; |
618 | |
619 | bool visit(QQmlJS::AST::TypeAnnotation *ast) override; |
620 | |
621 | // expressions |
622 | bool visit(QQmlJS::AST::Expression *ast) override; |
623 | bool visit(QQmlJS::AST::ArrayPattern *ast) override; |
624 | bool visit(QQmlJS::AST::ArrayMemberExpression *ast) override; |
625 | bool visit(QQmlJS::AST::BinaryExpression *ast) override; |
626 | bool visit(QQmlJS::AST::CallExpression *ast) override; |
627 | void endVisit(QQmlJS::AST::CallExpression *ast) override; |
628 | bool visit(QQmlJS::AST::ConditionalExpression *ast) override; |
629 | bool visit(QQmlJS::AST::DeleteExpression *ast) override; |
630 | void endVisit(QQmlJS::AST::DeleteExpression *ast) override; |
631 | bool visit(QQmlJS::AST::FalseLiteral *ast) override; |
632 | bool visit(QQmlJS::AST::SuperLiteral *ast) override; |
633 | bool visit(QQmlJS::AST::FieldMemberExpression *ast) override; |
634 | void endVisit(QQmlJS::AST::FieldMemberExpression *ast) override; |
635 | bool visit(QQmlJS::AST::TaggedTemplate *ast) override; |
636 | bool visit(QQmlJS::AST::FunctionExpression *ast) override; |
637 | bool visit(QQmlJS::AST::IdentifierExpression *ast) override; |
638 | bool visit(QQmlJS::AST::NestedExpression *ast) override; |
639 | bool visit(QQmlJS::AST::NewExpression *ast) override; |
640 | bool visit(QQmlJS::AST::NewMemberExpression *ast) override; |
641 | bool visit(QQmlJS::AST::NotExpression *ast) override; |
642 | bool visit(QQmlJS::AST::NullExpression *ast) override; |
643 | bool visit(QQmlJS::AST::NumericLiteral *ast) override; |
644 | bool visit(QQmlJS::AST::ObjectPattern *ast) override; |
645 | bool visit(QQmlJS::AST::PostDecrementExpression *ast) override; |
646 | bool visit(QQmlJS::AST::PostIncrementExpression *ast) override; |
647 | bool visit(QQmlJS::AST::PreDecrementExpression *ast) override; |
648 | bool visit(QQmlJS::AST::PreIncrementExpression *ast) override; |
649 | bool visit(QQmlJS::AST::RegExpLiteral *ast) override; |
650 | bool visit(QQmlJS::AST::StringLiteral *ast) override; |
651 | bool visit(QQmlJS::AST::TemplateLiteral *ast) override; |
652 | bool visit(QQmlJS::AST::ThisExpression *ast) override; |
653 | bool visit(QQmlJS::AST::TildeExpression *ast) override; |
654 | bool visit(QQmlJS::AST::TrueLiteral *ast) override; |
655 | bool visit(QQmlJS::AST::TypeOfExpression *ast) override; |
656 | bool visit(QQmlJS::AST::UnaryMinusExpression *ast) override; |
657 | bool visit(QQmlJS::AST::UnaryPlusExpression *ast) override; |
658 | bool visit(QQmlJS::AST::VoidExpression *ast) override; |
659 | bool visit(QQmlJS::AST::FunctionDeclaration *ast) override; |
660 | bool visit(QQmlJS::AST::YieldExpression *ast) override; |
661 | bool visit(QQmlJS::AST::ClassExpression *ast) override; |
662 | bool visit(QQmlJS::AST::ClassDeclaration *ast) override; |
663 | |
664 | // statements |
665 | bool visit(QQmlJS::AST::Block *ast) override; |
666 | bool visit(QQmlJS::AST::BreakStatement *ast) override; |
667 | bool visit(QQmlJS::AST::ContinueStatement *ast) override; |
668 | bool visit(QQmlJS::AST::DebuggerStatement *ast) override; |
669 | bool visit(QQmlJS::AST::DoWhileStatement *ast) override; |
670 | bool visit(QQmlJS::AST::EmptyStatement *ast) override; |
671 | bool visit(QQmlJS::AST::ExpressionStatement *ast) override; |
672 | bool visit(QQmlJS::AST::ForEachStatement *ast) override; |
673 | bool visit(QQmlJS::AST::ForStatement *ast) override; |
674 | bool visit(QQmlJS::AST::IfStatement *ast) override; |
675 | bool visit(QQmlJS::AST::LabelledStatement *ast) override; |
676 | bool visit(QQmlJS::AST::ReturnStatement *ast) override; |
677 | bool visit(QQmlJS::AST::SwitchStatement *ast) override; |
678 | bool visit(QQmlJS::AST::ThrowStatement *ast) override; |
679 | bool visit(QQmlJS::AST::TryStatement *ast) override; |
680 | bool visit(QQmlJS::AST::VariableStatement *ast) override; |
681 | bool visit(QQmlJS::AST::WhileStatement *ast) override; |
682 | bool visit(QQmlJS::AST::WithStatement *ast) override; |
683 | |
684 | // ui object members |
685 | bool visit(QQmlJS::AST::UiArrayBinding *ast) override; |
686 | bool visit(QQmlJS::AST::UiObjectBinding *ast) override; |
687 | bool visit(QQmlJS::AST::UiObjectDefinition *ast) override; |
688 | bool visit(QQmlJS::AST::UiPublicMember *ast) override; |
689 | bool visit(QQmlJS::AST::UiScriptBinding *ast) override; |
690 | bool visit(QQmlJS::AST::UiSourceElement *ast) override; |
691 | |
692 | bool throwSyntaxErrorOnEvalOrArgumentsInStrictMode(const Reference &r, |
693 | const QQmlJS::SourceLocation &loc); |
694 | virtual void throwSyntaxError(const QQmlJS::SourceLocation &loc, const QString &detail); |
695 | virtual void throwReferenceError(const QQmlJS::SourceLocation &loc, const QString &detail); |
696 | void throwRecursionDepthError() override |
697 | { |
698 | throwSyntaxError(loc: QQmlJS::SourceLocation(), |
699 | QStringLiteral("Maximum statement or expression depth exceeded")); |
700 | } |
701 | |
702 | public: |
703 | enum ErrorType { |
704 | NoError, |
705 | SyntaxError, |
706 | ReferenceError |
707 | }; |
708 | |
709 | ErrorType errorType() const { return _errorType; } |
710 | bool hasError() const { return _errorType != NoError; } |
711 | QQmlJS::DiagnosticMessage error() const; |
712 | QUrl url() const; |
713 | |
714 | Reference binopHelper(QQmlJS::AST::BinaryExpression *ast, QSOperator::Op oper, Reference &left, |
715 | Reference &right); |
716 | Reference jumpBinop(QSOperator::Op oper, Reference &left, Reference &right); |
717 | struct Arguments { int argc; int argv; bool hasSpread; }; |
718 | Arguments pushArgs(QQmlJS::AST::ArgumentList *args); |
719 | void handleCall(Reference &base, Arguments calldata, int slotForFunction, int slotForThisObject, bool optional = false); |
720 | |
721 | Arguments pushTemplateArgs(QQmlJS::AST::TemplateLiteral *args); |
722 | bool handleTaggedTemplate(Reference base, QQmlJS::AST::TaggedTemplate *ast); |
723 | void createTemplateObject(QQmlJS::AST::TemplateLiteral *t); |
724 | |
725 | void setUseFastLookups(bool b) { useFastLookups = b; } |
726 | |
727 | void handleTryCatch(QQmlJS::AST::TryStatement *ast); |
728 | void handleTryFinally(QQmlJS::AST::TryStatement *ast); |
729 | |
730 | |
731 | Reference referenceForName( |
732 | const QString &name, bool lhs, |
733 | const QQmlJS::SourceLocation &accessLocation = QQmlJS::SourceLocation()); |
734 | |
735 | QQmlRefPointer<QV4::CompiledData::CompilationUnit> generateCompilationUnit( |
736 | bool generateUnitData = true); |
737 | static QQmlRefPointer<QV4::CompiledData::CompilationUnit> compileModule( |
738 | bool debugMode, const QString &url, const QString &sourceCode, |
739 | const QDateTime &sourceTimeStamp, QList<QQmlJS::DiagnosticMessage> *diagnostics); |
740 | |
741 | Context *currentContext() const { return _context; } |
742 | BytecodeGenerator *generator() const { return bytecodeGenerator; } |
743 | |
744 | void loadClosure(int index); |
745 | |
746 | Module *module() const { return _module; } |
747 | |
748 | BytecodeGenerator::Label returnLabel() { |
749 | if (!_returnLabel) |
750 | _returnLabel = new BytecodeGenerator::Label(bytecodeGenerator->newLabel()); |
751 | return *_returnLabel; |
752 | } |
753 | |
754 | void setGlobalNames(const QSet<QString>& globalNames) { |
755 | m_globalNames = globalNames; |
756 | } |
757 | |
758 | static const char *s_globalNames[]; |
759 | |
760 | protected: |
761 | friend class ScanFunctions; |
762 | friend struct ControlFlow; |
763 | friend struct ControlFlowCatch; |
764 | friend struct ControlFlowFinally; |
765 | |
766 | inline void setExprResult(const Reference &result) { m_expressions.back().setResult(result); } |
767 | inline void setExprResult(Reference &&result) { m_expressions.back().setResult(std::move(result)); } |
768 | inline Reference exprResult() const { return m_expressions.back().result(); } |
769 | inline void clearExprResultName() { m_expressions.back().clearResultName(); } |
770 | |
771 | inline bool exprAccept(Format f) { return m_expressions.back().accept(f); } |
772 | |
773 | inline const Result ¤tExpr() const { return m_expressions.back(); } |
774 | |
775 | inline void pushExpr(Result &&expr) { m_expressions.push_back(x: std::move(expr)); } |
776 | inline void pushExpr(const Result &expr) { m_expressions.push_back(x: expr); } |
777 | inline void pushExpr(const QString &name = QString()) { m_expressions.emplace_back(args: name); } |
778 | |
779 | inline Result popExpr() |
780 | { |
781 | const Result result = m_expressions.back(); |
782 | m_expressions.pop_back(); |
783 | return result; |
784 | } |
785 | |
786 | inline Reference popResult() { |
787 | const Reference result = m_expressions.back().result(); |
788 | m_expressions.pop_back(); |
789 | return result; |
790 | } |
791 | |
792 | std::vector<Result> m_expressions; |
793 | VolatileMemoryLocations _volatileMemoryLocations; |
794 | Module *_module; |
795 | int _returnAddress; |
796 | Context *_context; |
797 | Context *_functionContext = nullptr; |
798 | QQmlJS::AST::LabelledStatement *_labelledStatement; |
799 | QV4::Compiler::JSUnitGenerator *jsUnitGenerator; |
800 | BytecodeGenerator *bytecodeGenerator = nullptr; |
801 | Moth::BytecodeGenerator::Label *_returnLabel = nullptr; |
802 | bool _strictMode; |
803 | bool useFastLookups = true; |
804 | bool requiresReturnValue = false; |
805 | bool insideSwitch = false; |
806 | bool inFormalParameterList = false; |
807 | bool functionEndsWithReturn = false; |
808 | bool _tailCallsAreAllowed = true; |
809 | bool storeSourceLocations = false; |
810 | QSet<QString> m_globalNames; |
811 | |
812 | struct OptionalChainState |
813 | { |
814 | QQmlJS::AST::Node *tailNodeOfChain = nullptr; |
815 | std::vector<Moth::BytecodeGenerator::Jump> jumpsToPatch; |
816 | bool actuallyHasOptionals = false; |
817 | }; |
818 | QSet<QQmlJS::AST::Node*> m_seenOptionalChainNodes; |
819 | std::stack<OptionalChainState> m_optionalChainsStates; |
820 | |
821 | ControlFlow *controlFlow = nullptr; |
822 | |
823 | bool _fileNameIsUrl; |
824 | ErrorType _errorType = NoError; |
825 | QQmlJS::DiagnosticMessage _error; |
826 | CodegenWarningInterface *_interface; |
827 | |
828 | class TailCallBlocker |
829 | { |
830 | public: |
831 | TailCallBlocker(Codegen *cg, bool onoff = false) |
832 | : _cg(cg) |
833 | , _saved(_cg->_tailCallsAreAllowed) |
834 | , _onoff(onoff) |
835 | { _cg->_tailCallsAreAllowed = onoff; } |
836 | |
837 | ~TailCallBlocker() |
838 | { _cg->_tailCallsAreAllowed = _saved; } |
839 | |
840 | void unblock() const |
841 | { _cg->_tailCallsAreAllowed = _saved; } |
842 | |
843 | void reblock() const |
844 | { _cg->_tailCallsAreAllowed = _onoff; } |
845 | |
846 | private: |
847 | Codegen *_cg; |
848 | bool _saved; |
849 | bool _onoff; |
850 | }; |
851 | |
852 | private: |
853 | Q_DISABLE_COPY(Codegen) |
854 | VolatileMemoryLocations scanVolatileMemoryLocations(QQmlJS::AST::Node *ast); |
855 | void handleConstruct(const Reference &base, QQmlJS::AST::ArgumentList *args); |
856 | void throwError(ErrorType errorType, const QQmlJS::SourceLocation &loc, |
857 | const QString &detail); |
858 | bool traverseOptionalChain(QQmlJS::AST::Node *node); |
859 | void optionalChainFinalizer(const Reference &expressionResult, bool tailOfChain, |
860 | bool isDeleteExpression = false); |
861 | Reference loadSubscriptForCall(const Reference &base); |
862 | void generateThrowException(const QString &type, const QString &text = QString()); |
863 | }; |
864 | |
865 | } |
866 | |
867 | } |
868 | |
869 | QT_END_NAMESPACE |
870 | |
871 | #endif // QV4CODEGEN_P_H |
872 |
Definitions
- CodegenWarningInterface
- ~CodegenWarningInterface
- defaultCodegenWarningInterface
- Codegen
- VolatileMemoryLocations
- isVolatile
- add
- setAllVolatile
- RValue
- Type
- fromStackSlot
- fromAccumulator
- fromConst
- isValid
- isAccumulator
- isStackSlot
- isConst
- stackSlot
- constantValue
- Reference
- Type
- isLValue
- Reference
- Reference
- Reference
- Reference
- operator =
- operator =
- operator!=
- isValid
- loadTriggersSideEffect
- isConstant
- isAccumulator
- isSuper
- isSuperProperty
- isStackSlot
- isRegister
- fromAccumulator
- fromSuper
- fromStackSlot
- fromScopedLocal
- fromImport
- fromName
- fromMember
- fromSuperProperty
- fromSubscript
- fromConst
- fromThis
- storeConstOnStack
- storeConstOnStack
- nameAsIndex
- stackSlot
- tdzCheck
- RegisterScope
- RegisterScope
- ~RegisterScope
- ObjectPropertyValue
- ObjectPropertyValue
- hasGetter
- hasSetter
- Format
- Result
- Result
- Result
- Result
- Result
- iftrue
- iffalse
- format
- accept
- trueBlockFollowsCondition
- result
- setResult
- setResult
- clearResultName
- leaveBlock
- UnaryOperation
- registerString
- registerConstant
- registerGetterLookup
- registerSetterLookup
- registerGlobalGetterLookup
- registerQmlContextPropertyGetterLookup
- expression
- accept
- throwRecursionDepthError
- ErrorType
- errorType
- hasError
- Arguments
- setUseFastLookups
- currentContext
- generator
- module
- returnLabel
- setGlobalNames
- setExprResult
- setExprResult
- exprResult
- clearExprResultName
- exprAccept
- currentExpr
- pushExpr
- pushExpr
- pushExpr
- popExpr
- popResult
- OptionalChainState
- TailCallBlocker
- TailCallBlocker
- ~TailCallBlocker
- unblock
- reblock
Learn to use CMake with our Intro Training
Find out more