aboutsummaryrefslogtreecommitdiffstats
path: root/src/qml/compiler/qv4instr_moth_p.h
Commit message (Expand)AuthorAgeFilesLines
...
* | Call iterator.return when required in destructuring assignmentsLars Knoll2018-05-141-0/+2
* | Refactor InteratorNext instructionLars Knoll2018-05-141-1/+1
* | Implement support for destructuring of rest elementsLars Knoll2018-05-141-0/+2
* | Fix array destructuringLars Knoll2018-05-131-1/+1
* | Add instructions to simplify for-of loopsLars Knoll2018-05-131-0/+4
* | Give for loops a per-iteration context as wellLars Knoll2018-05-111-0/+2
* | Ensure we have a lexical scope for global codeLars Knoll2018-05-111-0/+4
* | Add some basic support for for-of loopsLars Knoll2018-05-091-4/+2
* | Add Generator supportLars Knoll2018-05-031-0/+4
* | Rework catch context handlingLars Knoll2018-05-021-1/+1
* | Add support for proper lexical scopingLars Knoll2018-05-021-0/+2
* | Implement support for the ** and **= operatorsLars Knoll2018-04-261-0/+2
* | Fix some bugs in binding destructuringLars Knoll2018-04-261-0/+2
* | Add support for ES6 rest parametersLars Knoll2018-04-251-0/+2
* | ES6: add support for default arguments for function parametersLars Knoll2018-04-251-0/+2
|/
* Fix lookup of enums declared in QML singletonsSimon Hausmann2018-03-161-4/+2
* Correctly set this object when calling scope/context functionsErik Verbruggen2018-02-201-0/+4
* Fix build without QML debuggingUlf Hermann2018-01-161-7/+0
* Drop the qml-interpreter featureUlf Hermann2018-01-101-4/+0
* Prospective fix for big endian and AOTSimon Hausmann2018-01-071-1/+3
* Fix decoding of bytecode instructions on ARM generated on x86-64Simon Hausmann2018-01-051-8/+8
* V4: Do not use computed goto's with iccErik Verbruggen2017-12-081-1/+4
* V4: Change CallValue to have the value on the stackErik Verbruggen2017-11-231-1/+1
* V4: Collapse LoadRegExp+StoreReg into MoveRegExpErik Verbruggen2017-11-231-2/+2
* Merge remote-tracking branch 'origin/wip/new-backend' into devSimon Hausmann2017-11-211-809/+417
|\
| * Refactor Call/Construct instructionsLars Knoll2017-11-071-8/+8
| * Remove Binop/BinopContext instructions and implement missing binopsErik Verbruggen2017-10-231-6/+12
| * Work around different GCC versions' idea of uninitializedErik Verbruggen2017-09-131-0/+1
| * Fix wide instruction dispatchErik Verbruggen2017-09-131-5/+4
| * Fix building for QNX with buggy GCCErik Verbruggen2017-09-131-3/+5
| * Make msvc2015 happyErik Verbruggen2017-09-131-3/+6
| * Fix invalid condition inversion for conditional jumpsErik Verbruggen2017-09-011-28/+28
| * Move CallContext construction into a interpreter instructionLars Knoll2017-09-011-0/+2
| * Unify JSStackFrame and CallDataLars Knoll2017-09-011-30/+0
| * Add dumping of the raw hex values to the bytecode dumperLars Knoll2017-09-011-0/+15
| * Fix stack-buffer-overflow reported by ASANErik Verbruggen2017-08-291-1/+1
| * Fix line number mapping to work with non increasing line numbersLars Knoll2017-08-291-2/+9
| * Fix compilation failures on Ubuntu 16.10 (gcc 6.2.0)Erik Verbruggen2017-08-291-2/+2
| * Remove unused UnwindException instructionLars Knoll2017-08-281-2/+0
| * Add a load/storeLocal instructionLars Knoll2017-08-281-0/+4
| * Remove the distinction between wide and xwide instructionsLars Knoll2017-08-281-34/+8
| * Simplify handling of compilers without computed gotoLars Knoll2017-08-281-26/+54
| * Some cleanups to instruction decodingLars Knoll2017-08-281-33/+29
| * Compress all non jump instructionsLars Knoll2017-08-281-0/+7
| * Introduce the wide/xwide instruction prefixesLars Knoll2017-08-281-0/+41
| * Start compressing the byte codeLars Knoll2017-08-281-10/+6
| * Make the offset the last part of any jump instructionLars Knoll2017-08-281-12/+13
| * Rename the Common instruction to NopLars Knoll2017-08-281-5/+9
| * Decode instructions into registersLars Knoll2017-08-281-1/+33
| * Define instructions through a new formatLars Knoll2017-08-281-567/+157