Sung-Jae Lee
|
e2bbd6f9de
|
Fix prerequisites setup error on Mac OS X
JerryScript-DCO-1.0-Signed-off-by: Sung-Jae Lee sjlee@mail.com
|
2015-08-31 11:20:02 +09:00 |
|
Ruben Ayrapetyan
|
a00079e8ff
|
Reduce number of operand type handling conditional blocks in byte-code dumper, by extracting them to several separate routines that can be used for most cases, remove getop_* routines from vm.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-28 16:19:49 +03:00 |
|
Ruben Ayrapetyan
|
cbdc48a1fc
|
Remove raw_instr.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-28 16:19:19 +03:00 |
|
Ruben Ayrapetyan
|
173becc3ac
|
Rename idx_t -> vm_idx_t, opcode_special_reg_t -> vm_reg_t, INVALID_VALUE -> VM_IDX_EMPTY / VM_IDX_REWRITE_GENERAL_CASE, LITERAL_TO_REWRITE -> VM_IDX_REWRITE_LITERAL_UID.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-28 16:18:58 +03:00 |
|
Ruben Ayrapetyan
|
0111a73702
|
Convert parser operand structure to jsp_operand_t class, move operand types to enum defined in the class.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-28 15:35:06 +03:00 |
|
Ruben Ayrapetyan
|
b0276b3e46
|
Fix print of a 'number' literal.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-28 15:35:06 +03:00 |
|
Ruben Ayrapetyan
|
10e5f3530d
|
Remove heap allocator's block headers, replacing them with bitmap at start of heap.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 21:42:26 +03:00 |
|
Ruben Ayrapetyan
|
4c67403f15
|
Fix collection of memory statistics in pool allocator.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 18:51:30 +03:00 |
|
Ruben Ayrapetyan
|
589ebb1802
|
Remove comparison of unused instruction operands fields (the fields could be uninitialized).
Related issue: #585
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 18:41:04 +03:00 |
|
Ruben Ayrapetyan
|
5b9ce05491
|
Introduce parser-time optimization that replaces a function's local variables with registers.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 17:42:45 +03:00 |
|
Ruben Ayrapetyan
|
91aecc3bd0
|
Introduce parser scope types, add scope flags, indicating whether scope contains a function declaration, a 'try' statement, 'with' statement or 'delete' operator.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 17:42:45 +03:00 |
|
Ruben Ayrapetyan
|
c3d8cfd73c
|
Add suppression of 'duplicateExpression' cppcheck rule, as it leads to false positives in expressions like static_assert (ENUM_VALUE == 0, "");.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 17:42:45 +03:00 |
|
Ruben Ayrapetyan
|
2e13c29331
|
Switch to cppcheck v1.69.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 17:08:10 +03:00 |
|
Ruben Ayrapetyan
|
264a832cc4
|
Implement prerequisites auto-update.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 17:08:10 +03:00 |
|
Ruben Ayrapetyan
|
2ed18491df
|
Fix JERRY_UNIMPLEMENTED_REF_UNUSED_VARS so that call to jerry_unimplemented is placed after if (false) { ... } block.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 17:03:56 +03:00 |
|
Ruben Ayrapetyan
|
845b0d5006
|
Clarify calculation precedence for & and ?.
(a & b ? c : d)-like expressions are changed to ((a & b) ? c : d).
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-27 16:32:08 +03:00 |
|
Zoltan Herczeg
|
bf780ad3dc
|
Global object escape routine.
JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg@inf.u-szeged.hu
|
2015-08-26 01:44:18 -07:00 |
|
SaeHie Park
|
8f239d0b90
|
Add external libs include path for jerry-core
JerryScript-DCO-1.0-Signed-off-by: SaeHie Park saehie.park@samsung.com
|
2015-08-26 14:00:36 +09:00 |
|
SaeHie Park
|
f7b370ba42
|
Disable warning messages of fdlibm for mips
JerryScript-DCO-1.0-Signed-off-by: SaeHie Park saehie.park@samsung.com
|
2015-08-26 14:00:36 +09:00 |
|
Szilard Ledan
|
bafc9551a9
|
Implement substr function in String object
JerryScript-DCO-1.0-Signed-off-by: Szilard Ledan szledan.u-szeged@partner.samsung.com
|
2015-08-25 13:52:40 +02:00 |
|
Andrey Shitov
|
e4843ece76
|
Fix processing of elision in array literal.
JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
|
2015-08-24 14:51:24 +03:00 |
|
Andrey Shitov
|
01604974e3
|
Free eval's code and literal hash-table after its execution if it does not contain functions.
JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
|
2015-08-24 14:44:16 +03:00 |
|
Dániel Bátyai
|
13941df8dd
|
Implement RegExp.prototype.compile()
JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai dbatyai.u-szeged@partner.samsung.com
|
2015-08-24 10:10:09 +02:00 |
|
SaeHie Park
|
63d3e02b59
|
Fix 'control reaches end of non-void function' compile error for 'noreturn'
JerryScript-DCO-1.0-Signed-off-by: SaeHie Park saehie.park@samsung.com
|
2015-08-24 16:43:28 +09:00 |
|
Andrey Shitov
|
b3b87add02
|
Fix parsing of string literals which contain zero character.
JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
|
2015-08-20 22:23:57 +03:00 |
|
Evgeny Gavrin
|
e0dee65a36
|
Improve performance of lit_utf8_string_calc_hash_last_bytes.
JerryScript-DCO-1.0-Signed-off-by: Evgeny Gavrin e.gavrin@samsung.com
|
2015-08-19 22:38:29 +03:00 |
|
Evgeny Gavrin
|
ccfe1f1cd6
|
Remove 'if engine is executable' check.
JerryScript-DCO-1.0-Signed-off-by: Evgeny Gavrin e.gavrin@samsung.com
|
2015-08-19 15:41:33 +03:00 |
|
Evgeny Gavrin
|
59ce413df5
|
Enable ./tools/perf.sh to accept arguments with quotes.
JerryScript-DCO-1.0-Signed-off-by: Evgeny Gavrin e.gavrin@samsung.com
|
2015-08-19 15:41:33 +03:00 |
|
Andrey Shitov
|
0938211f63
|
Fix parsing of comments which contain zero character.
JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
|
2015-08-19 14:34:31 +03:00 |
|
Andrey Shitov
|
a870a07972
|
Remove preparser lexer pass and pass for searching of "eval" and "arguments" literals.
JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
|
2015-08-19 14:16:04 +03:00 |
|
Roland Takacs
|
cc4283b945
|
Fix assertion 'mem_pools == NULL' fail in JSON.stringify
JerryScript-DCO-1.0-Signed-off-by: Roland Takacs rtakacs.u-szeged@partner.samsung.com
|
2015-08-19 08:32:25 +02:00 |
|
Ruben Ayrapetyan
|
ab47365b71
|
Switch heap GC start limit check to consider number of allocated heap chunks instead of bytes.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-17 20:33:41 +03:00 |
|
Ruben Ayrapetyan
|
4667d3078b
|
Introduce GC start heuristics on low-severity try-give-memory-back requests.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-17 20:10:26 +03:00 |
|
Zoltan Herczeg
|
4dcbdb44ff
|
Cross-build fix after 5e301a1d71a23e8141c4427ae2444c223a1c4c42
JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg@inf.u-szeged.hu
|
2015-08-17 09:53:24 -07:00 |
|
Zoltan Herczeg
|
5e301a1d71
|
Refactor the remaining date string conversion helpers.
JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg@inf.u-szeged.hu
|
2015-08-17 00:21:50 -07:00 |
|
Hanjoung Lee
|
99ff8018bd
|
Fix show-opcodes not showing last argument
JerryScript-DCO-1.0-Signed-off-by: Hanjoung Lee hanjoung.lee@samsung.com
|
2015-08-17 12:10:55 +09:00 |
|
Ruben Ayrapetyan
|
38fa391cd8
|
Replace ecma_create_object with high-level Object and Array construction interfaces in JSON built-in implementation.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-14 12:29:31 +03:00 |
|
Kristof Kosztyo
|
9ffa6a39d3
|
Fix undefined initialValue handling in Array.prototype.reduce and reduceRight function.
JerryScript-DCO-1.0-Signed-off-by: Kristof Kosztyo kkosztyo.u-szeged@partner.samsung.com
|
2015-08-14 10:51:44 +02:00 |
|
Dániel Bátyai
|
5bb56643aa
|
Fix undefined fromIndex in Array.prototype.lastIndexOf()
JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai dbatyai.u-szeged@partner.samsung.com
|
2015-08-14 10:15:27 +02:00 |
|
Kristof Kosztyo
|
c8884a4561
|
Fix assert in the Date prototype
JerryScript-DCO-1.0-Signed-off-by: Kristof Kosztyo kkosztyo.u-szeged@partner.samsung.com
|
2015-08-13 22:09:07 +02:00 |
|
Ruben Ayrapetyan
|
8f594aebfa
|
Improvement of pool allocator.
JerryScript-DCO-1.0-Signed-off-by: Ruben Ayrapetyan r.ayrapetyan@samsung.com
|
2015-08-13 19:06:53 +03:00 |
|
Zoltan Herczeg
|
5be41b44bb
|
Date toString methods follow the date format used by other JS engines:
new Date(0).toString () == "Thu Jan 01 1970 00:00:00 GMT+0000"
new Date(0).toUTCString () == "Thu, 01 Jan 1970 00:00:00 GMT"
new Date(0).toISOString () == "1970-01-01T00:00:00.000Z"
Fixes S15.5.4.7_A1_T11.js test case.
JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg@inf.u-szeged.hu
|
2015-08-13 06:25:17 -07:00 |
|
Dániel Bátyai
|
4ee30cba5d
|
Fix RegExp literal parsing
JerryScript-DCO-1.0-Signed-off-by: László Langó llango.u-szeged@partner.samsung.com
JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai dbatyai.u-szeged@partner.samsung.com
|
2015-08-12 11:49:05 +02:00 |
|
Dániel Bátyai
|
d2ac7c320d
|
Fix invalid control escapes during RegExp parsing.
JerryScript-DCO-1.0-Signed-off-by: Dániel Bátyai dbatyai.u-szeged@partner.samsung.com
|
2015-08-12 11:33:15 +02:00 |
|
Roland Takacs
|
c4b1f02947
|
Fix assertion 'ret_value == ecma_make_empty_completion_value ()' fail in JSON.stringify()
JerryScript-DCO-1.0-Signed-off-by: Roland Takacs rtakacs.u-szeged@partner.samsung.com
|
2015-08-11 18:29:11 +02:00 |
|
Zoltan Herczeg
|
f2c846d960
|
Fix the this argument passed to string replace callbacks.
JerryScript-DCO-1.0-Signed-off-by: Zoltan Herczeg zherczeg@inf.u-szeged.hu
|
2015-08-11 06:23:43 -07:00 |
|
Evgeny Gavrin
|
c6b4510c9a
|
Add script for performance testing.
JerryScript-DCO-1.0-Signed-off-by: Evgeny Gavrin e.gavrin@samsung.com
|
2015-08-11 16:14:35 +03:00 |
|
Andrey Shitov
|
0d855e898d
|
Fix hoisting of function declaration from function expressions.
JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
|
2015-08-11 15:01:45 +03:00 |
|
Andrey Shitov
|
531a9d3352
|
Fix invalid preparsing of variable declarations which are not splitted by comma.
JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
|
2015-08-11 14:39:02 +03:00 |
|
Andrey Shitov
|
d6ad1c467e
|
Fix semicolon check after variable declaration list.
JerryScript-DCO-1.0-Signed-off-by: Andrey Shitov a.shitov@samsung.com
|
2015-08-11 14:23:11 +03:00 |
|