issue_owner_repo
listlengths
2
2
issue_body
stringlengths
0
261k
issue_title
stringlengths
1
925
issue_comments_url
stringlengths
56
81
issue_comments_count
int64
0
2.5k
issue_created_at
stringlengths
20
20
issue_updated_at
stringlengths
20
20
issue_html_url
stringlengths
37
62
issue_github_id
int64
387k
2.46B
issue_number
int64
1
127k
[ "jerryscript-project", "jerryscript" ]
While working with ESP8266(Xtensa chip) I got a odd exception error that I want to share and ask. Error: ``` Fatal exception (9): epc1=0x402803a2 epc2=0x00000000 epc3=0x00000000 epcvaddr=0x3fff2862 depc=0x00000000 rtn_add=0x40275c55 ``` `rtn_add=0x40275c55` seems to be return address which is, from the memory map, `...
ecma_collection_chunk_t memory alignment
https://api.github.com/repos/jerryscript-project/jerryscript/issues/675/comments
1
2015-10-20T11:36:23Z
2016-11-25T06:26:39Z
https://github.com/jerryscript-project/jerryscript/issues/675
112,347,958
675
[ "jerryscript-project", "jerryscript" ]
How about adding `void jerry_api_gc (void)` API for triggering GC.
Jerry API for triggering GC.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/672/comments
3
2015-10-19T02:12:50Z
2016-02-09T18:44:35Z
https://github.com/jerryscript-project/jerryscript/issues/672
112,059,296
672
[ "jerryscript-project", "jerryscript" ]
What version of ecmascript is supported in JerryScript?
https://api.github.com/repos/jerryscript-project/jerryscript/issues/671/comments
3
2015-10-16T18:47:25Z
2016-07-28T09:51:05Z
https://github.com/jerryscript-project/jerryscript/issues/671
111,889,590
671
[ "jerryscript-project", "jerryscript" ]
<b>Jerry revision:</b> <pre>08c618e</pre> <b>Test case:</b> ``` javascript function f(){return} ``` It returns with <b>'ERROR: Ln 1, Col 20: Unknown token }'</b> however it is a valid JavaScript code. <b>Expected behaviour:</b> The functions should be parsed correctly that does nothing.
Unknown token error in the return statement
https://api.github.com/repos/jerryscript-project/jerryscript/issues/669/comments
1
2015-10-14T09:15:22Z
2015-10-29T12:26:09Z
https://github.com/jerryscript-project/jerryscript/issues/669
111,356,215
669
[ "jerryscript-project", "jerryscript" ]
jerry_api_get_object_native_handle jerry_api_get_array_index_value jerry_api_get_object_field_value jerry_api_get_object_field_value_sz these functions are get operation but functions need non constant object pointer. I think constant pointer is better if it can. for example: ``` cpp auto cb = [] (const jerry_api_...
does get operation really need non constant object?
https://api.github.com/repos/jerryscript-project/jerryscript/issues/668/comments
0
2015-10-14T05:12:40Z
2016-07-14T11:33:24Z
https://github.com/jerryscript-project/jerryscript/issues/668
111,324,937
668
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 08c618e Build: debug.linux ``` ###### OS: ``` Ubuntu 14.04, x86_64 ``` ###### Test case: ``` javascript switch (1) { case 0: assert(false); break; } ``` Output: ``` Script assertion failed ``` The output shows that it executes `case 0:` body. From m...
switch statement jumps to incorrect case body
https://api.github.com/repos/jerryscript-project/jerryscript/issues/667/comments
1
2015-10-13T11:54:54Z
2015-10-30T02:24:33Z
https://github.com/jerryscript-project/jerryscript/issues/667
111,164,477
667
[ "jerryscript-project", "jerryscript" ]
It looks like from `ecma_lcache_insert()`, adding a property of an object increases RC for the object. This sometimes could prevent GC. I'm not sure I'm right about it, but I've reached tentative conclusion by exploring this for a while that this could be significant . For example, if we have a function only called o...
Property lookup cache prevents GC
https://api.github.com/repos/jerryscript-project/jerryscript/issues/665/comments
2
2015-10-13T04:20:28Z
2016-07-28T09:50:50Z
https://github.com/jerryscript-project/jerryscript/issues/665
111,101,842
665
[ "jerryscript-project", "jerryscript" ]
On linux host machine, `CONFIG_MEM_HEAP_AREA_SIZE` would be set 256KB by default. I cannot find the way to set the configuration from CMake build system. I would be useful to set the heap size for host machine so that we can test with memory consumption problem on host without flashing binary into target device.
Enabling setting MEM_HEAP_AREA_SIZE for linux host.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/664/comments
3
2015-10-13T03:50:26Z
2016-08-29T18:10:02Z
https://github.com/jerryscript-project/jerryscript/issues/664
111,098,432
664
[ "jerryscript-project", "jerryscript" ]
HI I build the "jerry" with the steps in http://samsung.github.io/jerryscript/how-to/ ``` make release.linux ``` But when I type ``` ./jerry --mem-stats xxx.js ``` it shows ``` Ignoring memory statistics option because of '!MEM_STATS' build configuration. ``` 1, How can I set the MEM_STATS when building? 2, Is t...
how to set "MEM_STATS" build configuration
https://api.github.com/repos/jerryscript-project/jerryscript/issues/662/comments
2
2015-10-10T04:54:22Z
2015-11-30T12:00:09Z
https://github.com/jerryscript-project/jerryscript/issues/662
110,768,462
662
[ "jerryscript-project", "jerryscript" ]
Hi Web page http://samsung.github.io/jerryscript/benchmark/benchmark.html shows the performance of jerryscripts. But I have some questions about the page. 1, What is jerry-snapshot and how to build it? 2, Which cases in sunspider and ubench are run during the performance test? How can we reproduce the whole test? Tha...
question about jerry benchmark and jerry snapshot
https://api.github.com/repos/jerryscript-project/jerryscript/issues/661/comments
4
2015-10-10T04:45:50Z
2016-02-11T13:35:22Z
https://github.com/jerryscript-project/jerryscript/issues/661
110,768,216
661
[ "jerryscript-project", "jerryscript" ]
``` ./jerry-core/ecma/builtin-objects/ecma-builtin-global.cpp: In function ‘ecma_builtin_global_object_decode_uri_helper’: ./jerry-core/ecma/builtin-objects/ecma-builtin-global.cpp:908:56: error: ‘decoded_byte’ may be used uninitialized in this function [-Werror=maybe-uninitialized] *output_char_p = (lit_utf8_...
Build failed with -O3
https://api.github.com/repos/jerryscript-project/jerryscript/issues/657/comments
1
2015-10-02T19:56:33Z
2016-02-12T10:42:25Z
https://github.com/jerryscript-project/jerryscript/issues/657
109,561,520
657
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 98fc409 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript switch(null) { case "foo": for(v_0 in v_1) } case "bar": ``` Backtrace: ``` Program received signal SIGSEGV, Segmentation fault. 0x0000000000417a31 in cas...
Segmentation fault in case_clauses_stack_element
https://api.github.com/repos/jerryscript-project/jerryscript/issues/656/comments
1
2015-10-02T18:02:54Z
2016-11-25T06:26:38Z
https://github.com/jerryscript-project/jerryscript/issues/656
109,541,321
656
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 98fc409 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript if (true) {} /a/; ``` Output: ``` /a/; ^ ERROR: Ln 2, Col 1: Unknown token / ```
if statement followed by a regex literal throws parse error
https://api.github.com/repos/jerryscript-project/jerryscript/issues/655/comments
1
2015-10-02T15:29:12Z
2015-10-22T11:07:08Z
https://github.com/jerryscript-project/jerryscript/issues/655
109,514,995
655
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 98fc409 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript switch (true) { case {"foo": "bar"}: break; } ``` Output: ``` break; ^ ERROR: Ln 3, Col 14: No corresponding statement for the break `...
Object literals in case selectors are not supported
https://api.github.com/repos/jerryscript-project/jerryscript/issues/654/comments
2
2015-10-02T12:33:20Z
2015-11-19T10:59:05Z
https://github.com/jerryscript-project/jerryscript/issues/654
109,482,129
654
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 98fc409 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript var a = "foo"; switch(a) { case true ? "foo" : "bar": print("OK"); break; } ``` Output: ``` case true ? "foo" : "bar": ...
Conditional operator is not supported in case clauses
https://api.github.com/repos/jerryscript-project/jerryscript/issues/653/comments
2
2015-10-02T11:18:31Z
2015-11-19T11:01:17Z
https://github.com/jerryscript-project/jerryscript/issues/653
109,473,829
653
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 98fc409 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript this / 10 ``` Output: ``` this / 10 ^ ERROR: Ln 1, Col 6: Unterminated RegExp literal ```
Divisions are not parsed correctly
https://api.github.com/repos/jerryscript-project/jerryscript/issues/652/comments
1
2015-10-02T09:44:54Z
2015-10-22T11:02:17Z
https://github.com/jerryscript-project/jerryscript/issues/652
109,461,834
652
[ "jerryscript-project", "jerryscript" ]
I get this error when mem_stats is turned on with iotjs ``` ICE: Assertion 'lit_ids != NULL' failed at /.../harmony/iotjs/deps/jerry /jerry-core/vm/pretty-printer.cpp(var_to_str):102. ``` ##### How to reproduce 1) get latest iotjs 2) build iotjs with mem_stats on ``` ./tools/build.py --jerry-memstats --no-checktest ...
ICE: Assertion 'lit_ids != NULL' failed error with mem_stats
https://api.github.com/repos/jerryscript-project/jerryscript/issues/649/comments
2
2015-09-30T10:59:45Z
2016-02-15T01:20:08Z
https://github.com/jerryscript-project/jerryscript/issues/649
109,063,330
649
[ "jerryscript-project", "jerryscript" ]
Hello. Pull request #635 removed special representation of concatenated strings. While the change reduced memory usage and significantly improved performance for many cases, it also significantly increased memory consumption for other cases. For example: ``` js var i = '0123456789ABCDEF'; for (j = 0; j < 12; j++) {...
Investigation of possible reprentations of concatenated strings
https://api.github.com/repos/jerryscript-project/jerryscript/issues/648/comments
2
2015-09-29T16:05:31Z
2016-11-25T06:26:38Z
https://github.com/jerryscript-project/jerryscript/issues/648
108,902,249
648
[ "jerryscript-project", "jerryscript" ]
``` b (b) = c ``` The CBC parser correctly handles this, so it might not worth fix it at all. But I leave it here as a note.
Invalid left-hand-side expression
https://api.github.com/repos/jerryscript-project/jerryscript/issues/646/comments
2
2015-09-24T07:36:31Z
2016-11-25T06:26:38Z
https://github.com/jerryscript-project/jerryscript/issues/646
108,075,132
646
[ "jerryscript-project", "jerryscript" ]
For some embed device with discontinued RAM area it would be good to set Jerry Heap to be configured as several segments, say 2 or 4, where currently we can set only one. For example, some STM32F4 has two address of RAM, one is normal RAM from 0x20000000 size 128K and special RAM called CCM from 0x10000000 size 64K. I...
Supporting discontinued segment of RAM for Heap
https://api.github.com/repos/jerryscript-project/jerryscript/issues/645/comments
3
2015-09-24T00:55:38Z
2017-01-31T13:29:30Z
https://github.com/jerryscript-project/jerryscript/issues/645
108,035,526
645
[ "jerryscript-project", "jerryscript" ]
<b>Jerry version:</b> ``` Checked revision: 6697523 ``` <b>Test case:</b> ``` js function a() { for (i = 1; i < 5; i++) if (i) { 5; } } ``` It returns with <b>'ERROR: Ln 8, Col 1: Unexpected token'</b> however it is a valid JavaScript code. <b> Expected behaviour: </b> ``` For loop should be pa...
Unexpected token error when using for loop without block
https://api.github.com/repos/jerryscript-project/jerryscript/issues/644/comments
3
2015-09-23T12:59:44Z
2016-02-25T08:00:05Z
https://github.com/jerryscript-project/jerryscript/issues/644
107,913,607
644
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 6697523 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript Function.prototype.length = function() { }; Function.prototype.bind(0); ``` ###### Backtrace: ``` ICE: Assertion 'ecma_is_value_number (len_value)' failed at jerryscrip...
Assertion 'ecma_is_value_number (len_value)' failed in ecma_builtin_function_prototype_object_bind
https://api.github.com/repos/jerryscript-project/jerryscript/issues/642/comments
0
2015-09-21T09:55:34Z
2015-10-20T15:11:02Z
https://github.com/jerryscript-project/jerryscript/issues/642
107,479,237
642
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 6697523 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript Object.freeze(RegExp.prototype.compile)(); ``` ###### Backtrace: ``` ICE: Assertion 'ecma_get_value_type_field (value) == ECMA_TYPE_OBJECT' failed at jerryscript/jerry-...
Assertion 'ecma_get_value_type_field (value) == ECMA_TYPE_OBJECT' failed in ecma_get_object_from_value
https://api.github.com/repos/jerryscript-project/jerryscript/issues/641/comments
2
2015-09-21T09:51:19Z
2016-11-25T06:26:38Z
https://github.com/jerryscript-project/jerryscript/issues/641
107,478,739
641
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 6697523 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript function f_0() { var f_0 = 10; } ``` Note: although the test case looks similar to #639 but since the traces are different it might need a distinct solution. ###### ...
Assertion 'table_p->buckets[block_id] != NULL' failed in lit_id_hash_table_lookup
https://api.github.com/repos/jerryscript-project/jerryscript/issues/640/comments
1
2015-09-21T09:48:03Z
2015-11-19T11:05:58Z
https://github.com/jerryscript-project/jerryscript/issues/640
107,478,039
640
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 6697523 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript Math.min(10); function f_0() {}; function f_1() { var f_1 = Date.prototype.getMilliseconds(Date.prototype.setUTCMonth); } ``` ###### Backtrace: ``` ICE: Assertion 'l...
Assertion 'lit_literal_exists (lit)' failed in lit_get_literal_by_cp
https://api.github.com/repos/jerryscript-project/jerryscript/issues/639/comments
2
2015-09-21T09:32:09Z
2015-11-19T11:06:45Z
https://github.com/jerryscript-project/jerryscript/issues/639
107,475,462
639
[ "jerryscript-project", "jerryscript" ]
JerryScript provides a feature for reporting memory usage but we can only check it after program finishes. How about adding a API `jerry_api_mem_stats()` for reporting memory stats so that we can see it in middle of program execution. This will helpful to check how memory usage is changing during execution. I'm fine ...
Jerry API for reporting memory stats.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/637/comments
1
2015-09-21T01:48:15Z
2016-02-11T13:48:01Z
https://github.com/jerryscript-project/jerryscript/issues/637
107,430,435
637
[ "jerryscript-project", "jerryscript" ]
Adding this issue as a task to support for NuttX.
Support NuttX platform as an interpreter
https://api.github.com/repos/jerryscript-project/jerryscript/issues/636/comments
2
2015-09-21T00:11:53Z
2016-08-16T10:37:00Z
https://github.com/jerryscript-project/jerryscript/issues/636
107,425,982
636
[ "jerryscript-project", "jerryscript" ]
recent PR about snapshot introduces bit field assignment code. `header.is_run_global = is_for_global;` at 1605 in jerry.cpp `tree->strict_mode = strict_mode;` at parser/js/scopes-tree.cpp When cross-compiling jerry(inside IoT.js), it exits with the following msg : /home/twoflower/usr/dev/harmony/iotjs_github/deps/je...
arm build fail for assignment to bit field
https://api.github.com/repos/jerryscript-project/jerryscript/issues/634/comments
2
2015-09-17T00:23:32Z
2015-11-19T12:21:16Z
https://github.com/jerryscript-project/jerryscript/issues/634
106,889,733
634
[ "jerryscript-project", "jerryscript" ]
Compact byte code (CBC) is the next generation of byte code for Jerry, which can reduce the byte code size around 50%. It also solves parser memory issues, left-hand-side issues, etc. The project is in its early phase, but the following examples shows the idea. All values are stored on a stack, all operations happen th...
Implement compact byte code (CBC) support in Jerry
https://api.github.com/repos/jerryscript-project/jerryscript/issues/630/comments
10
2015-09-16T11:03:37Z
2016-02-09T09:23:12Z
https://github.com/jerryscript-project/jerryscript/issues/630
106,750,346
630
[ "jerryscript-project", "jerryscript" ]
Current snapshot exploits `sizeof(lit_magic_string_id_t)` function in `jrt_read_from_buffer_by_offset`. In NUTTX OS, size of `enum` is 1 byte instead of 4 bytes. Due to this, iotjs(snapshot-dev branch) does not work in NUTTX on STM32F4. We need to figure out a way to run snapshot on various platforms.
Snapshot does not work on nuttx(STM32F4)
https://api.github.com/repos/jerryscript-project/jerryscript/issues/627/comments
1
2015-09-14T08:11:32Z
2016-11-25T06:26:38Z
https://github.com/jerryscript-project/jerryscript/issues/627
106,291,497
627
[ "jerryscript-project", "jerryscript" ]
Hi, I've made an all-in-one build for jerryscript. With this method we can reach smaller binary size. You can see the details below. If you want to try it you can download it from here: https://github.com/tczene/jerryscript/tree/all_in_one This patch is only an example, not ready yet. Do you think this is a good idea? ...
all-in-one build
https://api.github.com/repos/jerryscript-project/jerryscript/issues/626/comments
14
2015-09-11T08:45:46Z
2015-12-16T09:55:07Z
https://github.com/jerryscript-project/jerryscript/issues/626
105,969,046
626
[ "jerryscript-project", "jerryscript" ]
Hello. Some GC stress testing mode should be introduced to help revealing issues like #251 and #599, as @zherczeg suggested in https://github.com/Samsung/jerryscript/pull/251#issuecomment-117557989.
GC stress testing
https://api.github.com/repos/jerryscript-project/jerryscript/issues/619/comments
0
2015-09-07T12:56:20Z
2015-09-09T17:51:48Z
https://github.com/jerryscript-project/jerryscript/issues/619
105,211,197
619
[ "jerryscript-project", "jerryscript" ]
@ruben-ayrapetyan , regarding issue comment https://github.com/Samsung/iotjs/issues/212#issuecomment-137080946 can it be possible to extend or add a new function besides jerry_api_eval() so that ``` jerry_api_eval(wrapper[0], ...); jerry_api_eval(source, ...); jerry_api_eval(wrapper[1], ...); ``` may work ? This may...
Partial jerry_api_eval()
https://api.github.com/repos/jerryscript-project/jerryscript/issues/615/comments
5
2015-09-03T07:57:44Z
2016-07-27T06:23:36Z
https://github.com/jerryscript-project/jerryscript/issues/615
104,642,567
615
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: a26c454 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript JSON.stringify & (Date = 1) ``` ###### Backtrace: ``` javascript ICE: Assertion '!ecma_is_value_empty (reg_value)' failed at jerryscript/jerry-core/vm/opcodes-helpers-...
Assertion '!ecma_is_value_empty (reg_value)' failed in get_variable_value
https://api.github.com/repos/jerryscript-project/jerryscript/issues/614/comments
2
2015-09-03T07:47:39Z
2016-11-25T06:26:37Z
https://github.com/jerryscript-project/jerryscript/issues/614
104,640,363
614
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: a26c454 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript a = "é" ``` ###### Output: ``` ERROR: Ln 1, Col 1: Invalid source encoding ```
Invalid source encoding error when using Hungarian characters
https://api.github.com/repos/jerryscript-project/jerryscript/issues/613/comments
1
2015-09-02T19:45:40Z
2015-11-19T11:07:59Z
https://github.com/jerryscript-project/jerryscript/issues/613
104,557,753
613
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: a26c454 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript RegExp.prototype.compile([]); ``` ###### Backtrace: ``` javascript ICE: Assertion 'compressed_pointer != MEM_CP_NULL' failed at jerryscript/jerry-core/mem/mem-heap.cpp(...
Assertion 'compressed_pointer != MEM_CP_NULL' failed in mem_heap_decompress_pointer
https://api.github.com/repos/jerryscript-project/jerryscript/issues/612/comments
0
2015-09-02T18:33:38Z
2016-11-25T06:26:37Z
https://github.com/jerryscript-project/jerryscript/issues/612
104,544,902
612
[ "jerryscript-project", "jerryscript" ]
On Mac OS X, during `make precommit`, full testing with `run-test-pass.sh` was failed. ``` > make precommit . . . ./tools/runners/run-unittests.sh ./build/bin/unittests || \ (echo "Unit tests run failed. See ./build/bin/unittests/unit_tests_run.log for details."; exit 1;) Runnin...
Full testing failed on Mac OS X build
https://api.github.com/repos/jerryscript-project/jerryscript/issues/610/comments
1
2015-08-31T08:37:32Z
2016-08-29T11:24:59Z
https://github.com/jerryscript-project/jerryscript/issues/610
104,010,892
610
[ "jerryscript-project", "jerryscript" ]
I can't build JerryScript on Mac OS X Mavericks (10.9.5), I get the following error : ``` ❯ make Setting up prerequisites... (log file: ./build/prerequisites/prerequisites.log) Prerequisites setup failed. See ./build/prerequisites/prerequisites.log for details. make: *** [build/prerequisites/.prerequisites] Error 1 ``...
Could not build on OSX
https://api.github.com/repos/jerryscript-project/jerryscript/issues/598/comments
6
2015-08-26T09:50:57Z
2016-11-25T06:26:37Z
https://github.com/jerryscript-project/jerryscript/issues/598
103,226,573
598
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: ab47365 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript JSON.stringify([], [1, 1]); ``` ###### Note: The values in the array must be the same to reproduce this issue. ###### Backtrace: ``` javascript ICE: Assertion 'mem_fre...
Assertion 'mem_free_chunks_number == 0' failed in mem_pools_finalize
https://api.github.com/repos/jerryscript-project/jerryscript/issues/590/comments
2
2015-08-18T23:35:54Z
2016-11-25T06:26:37Z
https://github.com/jerryscript-project/jerryscript/issues/590
101,772,982
590
[ "jerryscript-project", "jerryscript" ]
Current JerryScript supports mem_stats to print memory statistics during execution. It would be nice that JerryScript provides a way to heap statistics depending on object types. Especially, I want to measure how much heap space is occupied by iotjs native(js) functions, which is required at iotjs startup.
mem_stats classified by object types
https://api.github.com/repos/jerryscript-project/jerryscript/issues/587/comments
1
2015-08-18T01:20:27Z
2017-01-31T13:33:51Z
https://github.com/jerryscript-project/jerryscript/issues/587
101,544,643
587
[ "jerryscript-project", "jerryscript" ]
I get below error with `make precommit` on Ubuntu Linux 32bit ``` LITERALS: 0x8083514 [ 8] a : STRING 0x808351c [ 36] : EMPTY RECORD 0: meta 12 6 255 // [no 'arguments'] [no 'eval'] 1: reg_var_decl 128 130 // var tmp128 .. tmp130; 2: var_decl 0 ...
Assertion 'instrs_equal (instrs_p, instrs, 5)' failed with 32bit Linux
https://api.github.com/repos/jerryscript-project/jerryscript/issues/585/comments
0
2015-08-18T00:48:27Z
2016-11-25T06:26:37Z
https://github.com/jerryscript-project/jerryscript/issues/585
101,540,156
585
[ "jerryscript-project", "jerryscript" ]
Seams that issue in this line: ``` cpp JERRY_ASSERT (dest_p - character_buffer == result_string_length); ```
Cross build is broken after #574
https://api.github.com/repos/jerryscript-project/jerryscript/issues/577/comments
10
2015-08-17T12:16:11Z
2016-11-25T06:26:37Z
https://github.com/jerryscript-project/jerryscript/issues/577
101,407,562
577
[ "jerryscript-project", "jerryscript" ]
Some functions like `lit_get_magic_string_utf8()` ends with ``` JERRY_UNREACHABLE (); } ``` and does not return value. In this case without `-Wno-return-type` mips compiler fails with an `error: control reaches end of non-void function`. Should I use this option `-Wno-return-type` or should I add something like t...
error: control reaches end of non-void function
https://api.github.com/repos/jerryscript-project/jerryscript/issues/572/comments
7
2015-08-13T22:06:58Z
2015-08-28T00:19:28Z
https://github.com/jerryscript-project/jerryscript/issues/572
100,880,717
572
[ "jerryscript-project", "jerryscript" ]
The current implementation of the Date object has some performance flaws. According to this https://github.com/Samsung/jerryscript/pull/459#issuecomment-130806960 it cause pretty high performance impact during test262 running. Possible optimizations: - Use `int64_t` to represent the raw Date value - currently it is u...
Optimize Date builtin
https://api.github.com/repos/jerryscript-project/jerryscript/issues/570/comments
0
2015-08-13T19:34:14Z
2016-07-28T09:56:00Z
https://github.com/jerryscript-project/jerryscript/issues/570
100,850,074
570
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 4ee30cb Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript ({"setTime": Date.prototype.setTime}).setTime(-61); ``` ###### Backtrace: ``` javascript ICE: Assertion 'property_p != NULL' failed at jerryscript/jerry-core/ecma/base/...
Assertion 'property_p != NULL' failed in ecma_get_internal_property
https://api.github.com/repos/jerryscript-project/jerryscript/issues/566/comments
1
2015-08-13T09:04:11Z
2016-11-25T06:26:36Z
https://github.com/jerryscript-project/jerryscript/issues/566
100,720,190
566
[ "jerryscript-project", "jerryscript" ]
Currently we fail to parse RegExp literals in some places, where they should be allowed. For example ``` if (true) /abc/.exec("abc"); if (true) {} /abc/.exec("abc"); var a /abc/.exec("abc"); ``` should all be valid.
Correctly parse RegExp literals in places where they should be allowed.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/563/comments
1
2015-08-12T09:29:45Z
2015-10-22T11:07:36Z
https://github.com/jerryscript-project/jerryscript/issues/563
100,503,660
563
[ "jerryscript-project", "jerryscript" ]
Although S15.5.4.11_A5_T1.js has a bad error message (backslashes should be doubled), it passes on other JS engines because they accept octal escape sequences. E.g: "\1" === "\u0001" "\11" === "\u0009" However, they fail on Jerry with ERROR: Ln *, Col *: Illegal escape sequence. I think we should fix this.
Octal escape sequences in string literals.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/561/comments
0
2015-08-11T08:50:20Z
2016-02-24T08:45:52Z
https://github.com/jerryscript-project/jerryscript/issues/561
100,260,994
561
[ "jerryscript-project", "jerryscript" ]
According to the standard ([15.5.5](http://www.ecma-international.org/ecma-262/5.1/#sec-15.5.5)) the `String` object has an enumerable set of properties with the index names. You can try it with the following test: ``` str = new String("abc"); str[5] = 'ef'; for ( c in str ) { print(c, str[c]); } print(str); ``` ...
The ecma_get_property_list doesn't handle the String index properties
https://api.github.com/repos/jerryscript-project/jerryscript/issues/560/comments
1
2015-08-11T08:11:42Z
2016-11-25T06:26:36Z
https://github.com/jerryscript-project/jerryscript/issues/560
100,253,477
560
[ "jerryscript-project", "jerryscript" ]
Patch #536 causes some performance degradation on sunspider-0.9.1/math-partial-sums.js (instable, as before one of rebases degradation appeared also on sunspider-0.9.1/bitops-bitwise-and.js). Cause of the performance degradation and its instability should be investigated.
Investigate performance degradation on PR #536
https://api.github.com/repos/jerryscript-project/jerryscript/issues/555/comments
1
2015-08-10T17:50:54Z
2016-02-12T11:56:58Z
https://github.com/jerryscript-project/jerryscript/issues/555
100,128,445
555
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 58851bc Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript JSON.stringify([], [ 'foo', 'foo' ]); ``` ###### Note: Although the assertion and the backtrace look similar to the issue will be fixed by #542 but this problem seems u...
Assertion 'mem_pools == NULL' failed in mem_pools_finalize
https://api.github.com/repos/jerryscript-project/jerryscript/issues/551/comments
2
2015-08-10T09:03:43Z
2015-08-19T06:41:03Z
https://github.com/jerryscript-project/jerryscript/issues/551
100,013,902
551
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: ff580ca Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Description: Running the test below gets quite slow. The first cca. 100 concatenations take about 1 sec each but later on this rises to several seconds. Finishing the test required about 15 minut...
String concatenation gets quite slow when concating several float values
https://api.github.com/repos/jerryscript-project/jerryscript/issues/548/comments
1
2015-08-07T13:16:15Z
2016-11-25T06:26:36Z
https://github.com/jerryscript-project/jerryscript/issues/548
99,645,295
548
[ "jerryscript-project", "jerryscript" ]
The [ESP8266 by Espressif-Systems](http://espressif.com/en/products/esp8266/) is currently the (by far) cheapest System-on-chip for IoT-purposes with around 40k of available RAM and usually >500kB of flash-memory. With [nodeMCU](http://www.nodemcu.com/) there already exists a firmware that sports a LUA-Interpreter so I...
Is there any plan to support the ESP8266?
https://api.github.com/repos/jerryscript-project/jerryscript/issues/546/comments
18
2015-08-07T08:45:19Z
2016-11-25T06:26:36Z
https://github.com/jerryscript-project/jerryscript/issues/546
99,607,401
546
[ "jerryscript-project", "jerryscript" ]
Why isn't JerryScript based on existing minimal open source ECMAScript engines: [Espruino](https://github.com/espruino/Espruino) or [Duktape](https://github.com/svaarala/duktape) (#494)? Is it a NIH syndrome which makes you reinvent the wheel? Or is JerryScript superior to them? Thanks!
JerryScript based on Espruino or Duktape?
https://api.github.com/repos/jerryscript-project/jerryscript/issues/544/comments
3
2015-08-06T19:18:42Z
2015-12-11T10:56:59Z
https://github.com/jerryscript-project/jerryscript/issues/544
99,506,092
544
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 5888401 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript new RegExp("m\u2820"); parseInt("145"); ``` ###### Backtrace: ``` javascript ICE: Assertion '(byte & LIT_UTF8_EXTRA_BYTE_MASK) != LIT_UTF8_EXTRA_BYTE_MARKER' failed at ...
Assertion '(byte & LIT_UTF8_EXTRA_BYTE_MASK) != LIT_UTF8_EXTRA_BYTE_MARKER' failed in lit_utf8_iterator_seek
https://api.github.com/repos/jerryscript-project/jerryscript/issues/541/comments
1
2015-08-06T11:33:30Z
2015-11-19T11:09:42Z
https://github.com/jerryscript-project/jerryscript/issues/541
99,415,625
541
[ "jerryscript-project", "jerryscript" ]
"GC start threshold" adjustment heuristics should be investigated to reduce number of those GC invocations that are most likely unnecessary. See also: https://github.com/Samsung/jerryscript/pull/534#issue-99234304
Investigate possible ways to improve "GC start threshold" adjustment heuristics
https://api.github.com/repos/jerryscript-project/jerryscript/issues/535/comments
1
2015-08-05T15:43:54Z
2015-11-19T12:11:30Z
https://github.com/jerryscript-project/jerryscript/issues/535
99,235,282
535
[ "jerryscript-project", "jerryscript" ]
Related discussion: [#513 (comment)](https://github.com/Samsung/jerryscript/pull/513#issuecomment-127973747)
Function.prototype.bind: incorrect behaviour of ecma_gc_mark()
https://api.github.com/repos/jerryscript-project/jerryscript/issues/531/comments
1
2015-08-05T14:52:45Z
2015-09-16T13:12:08Z
https://github.com/jerryscript-project/jerryscript/issues/531
99,222,929
531
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 24c16da Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript Number.prototype.toString = []; Number.prototype.valueOf = {}; JSON.stringify([], [ new Number(2.2) ]); ``` ###### Backtrace: ``` javascript ICE: Assertion 'ret_value =...
Assertion 'ret_value == ecma_make_empty_completion_value ()' failed in ecma_builtin_json_stringify
https://api.github.com/repos/jerryscript-project/jerryscript/issues/526/comments
1
2015-08-05T10:29:19Z
2015-08-17T08:09:32Z
https://github.com/jerryscript-project/jerryscript/issues/526
99,174,578
526
[ "jerryscript-project", "jerryscript" ]
Hi, Im trying to build this for Edison and I couldn't proceed,as it some point needs 'tk' which need xlib. Jerryscript needs vera++ and vera++ needs tk. I dont think xlib would be available on edison image any time. Is there a plan on how to go about this?
Dependency on tk
https://api.github.com/repos/jerryscript-project/jerryscript/issues/516/comments
2
2015-08-04T08:39:41Z
2015-11-19T12:11:39Z
https://github.com/jerryscript-project/jerryscript/issues/516
98,918,916
516
[ "jerryscript-project", "jerryscript" ]
Similar functionality is implemented in three functions, create and use a common helper function.
Rearrange String.prototype.indexOf, lastIndexOf and Replace helpers
https://api.github.com/repos/jerryscript-project/jerryscript/issues/515/comments
1
2015-08-04T08:15:36Z
2015-11-27T13:32:04Z
https://github.com/jerryscript-project/jerryscript/issues/515
98,913,983
515
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: b5923cc Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript Number.prototype.toString.bind('foo'); ``` ###### Backtrace: ``` javascript ICE: Assertion 'mem_pools == NULL' failed at jerryscript/jerry-core/mem/mem-poolman.cpp(mem_...
Assertion 'mem_pools == NULL' failed in mem_pools_finalize
https://api.github.com/repos/jerryscript-project/jerryscript/issues/511/comments
1
2015-08-03T08:31:22Z
2016-11-25T06:26:35Z
https://github.com/jerryscript-project/jerryscript/issues/511
98,696,672
511
[ "jerryscript-project", "jerryscript" ]
We should throw a RangeError if the time value is nan or infinity.
Add throwing of missing range error to Date.prototype.toISOString()
https://api.github.com/repos/jerryscript-project/jerryscript/issues/501/comments
3
2015-07-30T14:14:56Z
2015-08-07T16:36:54Z
https://github.com/jerryscript-project/jerryscript/issues/501
98,180,286
501
[ "jerryscript-project", "jerryscript" ]
Looks like there is a chance that JerryScript miss captured variable when closure are made with eval. See this example: ``` e = {}; eval('(function (e) { var v1 = { a: 2 }; function b(e) { e.a = function() { print(v1.a); }; } b(e); })')(e); e.a(); ``` I'm not sure about what is the expected result according to EC...
Lost captured variable with eval.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/497/comments
2
2015-07-30T10:55:38Z
2015-09-07T11:14:47Z
https://github.com/jerryscript-project/jerryscript/issues/497
98,140,449
497
[ "jerryscript-project", "jerryscript" ]
Test case: ``` var myObj = function(val){ this.value = val; this.valueOf = function(){throw "valueOf-"+this.value;}; this.toString = function(){throw "toString-"+this.value;}; }; d = new Date(new myObj(1), new myObj(2)); ```
Assertion 'mem_pools == NULL' failed in the Date constructor.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/495/comments
1
2015-07-30T10:25:28Z
2015-08-03T08:22:04Z
https://github.com/jerryscript-project/jerryscript/issues/495
98,135,302
495
[ "jerryscript-project", "jerryscript" ]
Hi, can somebody please explain differences between JerryScript and Duktape (http://duktape.org/) project which is already used by many projects, notably AllJoyn, and why do we have to duplicate the work (in case that differences are not significant)? BR, Drasko
Differences comparing to Duktape
https://api.github.com/repos/jerryscript-project/jerryscript/issues/494/comments
3
2015-07-29T23:43:22Z
2015-12-11T08:16:27Z
https://github.com/jerryscript-project/jerryscript/issues/494
98,052,118
494
[ "jerryscript-project", "jerryscript" ]
/usr/bin/cc cq librelease.jerry-libc.linux.lib.a CMakeFiles/release.jerry-libc.linux.lib.dir/jerry-libc-fatals.c.o CMakeFiles/release.jerry-libc.linux.lib.dir/jerry-libc-pr intf.c.o CMakeFiles/release.jerry-libc.linux.lib.dir/jerry-libc.c.o CMakeFiles/release.jerry-libc.linux.lib.dir/target/linux/jerry-libc-target.c...
build error
https://api.github.com/repos/jerryscript-project/jerryscript/issues/489/comments
5
2015-07-29T06:46:19Z
2016-07-28T09:47:48Z
https://github.com/jerryscript-project/jerryscript/issues/489
97,872,523
489
[ "jerryscript-project", "jerryscript" ]
Currently the [[Construct]] call of Date() returns with an object instead of a string.
Fix [[Construct]] call for Date()
https://api.github.com/repos/jerryscript-project/jerryscript/issues/477/comments
1
2015-07-27T14:38:49Z
2015-08-03T08:21:04Z
https://github.com/jerryscript-project/jerryscript/issues/477
97,478,743
477
[ "jerryscript-project", "jerryscript" ]
Greetings! It's awesome Samsung is getting into the open source spirit. I checked out http://samsung.github.io/jerryscript/ and found it hard to read as many of the sentences have misspellings and grammatical mistakes. Running the text through the grammatical checker in Pages or Word should catch most of them.
Numerous Grammatical Mistakes on the Website
https://api.github.com/repos/jerryscript-project/jerryscript/issues/475/comments
1
2015-07-27T13:22:12Z
2016-04-20T12:46:09Z
https://github.com/jerryscript-project/jerryscript/issues/475
97,461,918
475
[ "jerryscript-project", "jerryscript" ]
There are some bugs in the date constructor. The following cases produce wrong Date objects: This should be invalid but it is valid: ``` d = new Date(8.64e+15 + 1); ``` The first one should be valid while the second one should be invalid: ``` d = new Date("275760-09-13T00:00:00.000"); d = new Date("275760-09-13T00:0...
Fix issues in the Date constructor
https://api.github.com/repos/jerryscript-project/jerryscript/issues/473/comments
3
2015-07-27T08:35:08Z
2015-07-29T13:24:53Z
https://github.com/jerryscript-project/jerryscript/issues/473
97,412,540
473
[ "jerryscript-project", "jerryscript" ]
Some parameters (like "[${CMAKE_BINARY_DIR}/generated.h](https://github.com/Samsung/jerryscript/blob/bc0ca7be5d1081e8a1115b870237f8d3f19b32d9/CMakeLists.txt#L92)") are passed to CMake commands in your build scripts without enclosing them by quotation marks. I see that these places will result in build difficulties if t...
Complete quoting for parameters of some CMake commands
https://api.github.com/repos/jerryscript-project/jerryscript/issues/472/comments
1
2015-07-26T08:01:37Z
2016-07-28T09:47:32Z
https://github.com/jerryscript-project/jerryscript/issues/472
97,296,067
472
[ "jerryscript-project", "jerryscript" ]
Hi folks, We'd like to use the following C++ features in our code base: - class - single inheritance - _reduce source code size_ - copy / move constructors - _improve perf._ - _much simplifies GC related logic_ - virtual functions (very limited, advisable usage) - _reduce cross-module dependencie...
C++
https://api.github.com/repos/jerryscript-project/jerryscript/issues/470/comments
9
2015-07-24T18:08:14Z
2016-11-25T06:26:35Z
https://github.com/jerryscript-project/jerryscript/issues/470
97,105,909
470
[ "jerryscript-project", "jerryscript" ]
Add missing ECMA standard references in `re-parser.cpp`.
Add missing ECMA standard references in RegExp parser.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/469/comments
0
2015-07-24T13:34:11Z
2016-11-25T06:26:35Z
https://github.com/jerryscript-project/jerryscript/issues/469
97,054,163
469
[ "jerryscript-project", "jerryscript" ]
Related discussion: https://github.com/Samsung/jerryscript/pull/448#discussion_r35415567
Optimize character classes compilation in RegExp
https://api.github.com/repos/jerryscript-project/jerryscript/issues/468/comments
0
2015-07-24T13:29:47Z
2016-07-28T09:46:46Z
https://github.com/jerryscript-project/jerryscript/issues/468
97,053,431
468
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 021fc62 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript "use strict"; var my_ var eval = eval; ``` ###### Backtrace: ``` javascript ICE: Assertion '!is_check_failed' failed at jerryscript/jerry-core/vm/opcodes-helpers-varia...
Assertion '!is_check_failed' failed in do_strict_eval_arguments_check
https://api.github.com/repos/jerryscript-project/jerryscript/issues/466/comments
1
2015-07-24T11:12:38Z
2015-11-19T11:10:42Z
https://github.com/jerryscript-project/jerryscript/issues/466
97,029,321
466
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 021fc62 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript var v_0 = /[\0]C/; ``` ###### Backtrace: ``` javascript Program received signal SIGSEGV, Segmentation fault. 0x000000000040a0eb in re_parse_char_class (parser_ctx_p=0x7...
Segmentation fault in re_parse_char_class
https://api.github.com/repos/jerryscript-project/jerryscript/issues/465/comments
2
2015-07-24T11:04:18Z
2016-11-25T06:26:35Z
https://github.com/jerryscript-project/jerryscript/issues/465
97,027,961
465
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 021fc62 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript '\n' /./.exec("񉞍"); ``` The content of exec in hex: F1 89 9E 8D ###### Backtrace: ``` javascript ICE: Assertion 'lit_is_utf8_string_valid (string_p, string_size)' fai...
Assertion 'lit_is_utf8_string_valid (string_p, string_size)' failed in ecma_new_ecma_string_from_utf8
https://api.github.com/repos/jerryscript-project/jerryscript/issues/464/comments
3
2015-07-24T10:43:13Z
2015-11-19T12:01:31Z
https://github.com/jerryscript-project/jerryscript/issues/464
97,024,402
464
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 021fc62 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript var v_0, v_1, v_2, v_3, v_4, v_5, v_6, v_7, v_8, v_9, v_10, v_11, v_12, v_13, v_14, v_15, v_16, v_17, v_18, v_19, v_20, v_21, v_22, v_23, v_24, v_25, v26, v_27, v_28, v_...
Assertion 'mem_heap.allocated_bytes >= bytes' failed in mem_heap_free_block
https://api.github.com/repos/jerryscript-project/jerryscript/issues/463/comments
4
2015-07-24T10:35:50Z
2015-08-07T14:10:14Z
https://github.com/jerryscript-project/jerryscript/issues/463
97,023,351
463
[ "jerryscript-project", "jerryscript" ]
All printing methods of the Date object use UTC time however some of them should use LOCAL time.
Support local time output for the printer methods of the Date object.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/460/comments
2
2015-07-23T13:31:00Z
2015-08-07T16:38:40Z
https://github.com/jerryscript-project/jerryscript/issues/460
96,814,991
460
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 63083b3 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript try { var v_0 = [ ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,,, ,,,,,,,,,,,...
Assertion '(!ecma_is_completion_value_empty (try_completion) && frame_ctx_p->pos <= try_end_oc) || (ecma_is_completion_value_empty (try_completion) && frame_ctx_p->pos == try_end_oc)' failed in opfunc_try_block
https://api.github.com/repos/jerryscript-project/jerryscript/issues/453/comments
1
2015-07-22T19:07:38Z
2015-11-19T11:12:42Z
https://github.com/jerryscript-project/jerryscript/issues/453
96,641,768
453
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 7c16228 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript for (v_0 in v_1) {}; f_0(v_2.v_3 === 5); ``` ###### Backtrace: ``` javascript ICE: Assertion 'lit_cp.packed_value != MEM_CP_NULL' failed at jerryscript/jerry-core/vm/op...
Assertion 'lit_cp.packed_value != MEM_CP_NULL' failed in get_variable_value
https://api.github.com/repos/jerryscript-project/jerryscript/issues/447/comments
2
2015-07-22T10:11:30Z
2016-02-08T09:21:29Z
https://github.com/jerryscript-project/jerryscript/issues/447
96,528,086
447
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 7c16228 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript var v_0 - []; v_0 instanceof assert; ``` ###### Backtrace: ``` javascript ICE: Assertion 'ecma_get_object_type (func_obj_p) == ECMA_OBJECT_TYPE_BOUND_FUNCTION' failed a...
Assertion 'ecma_get_object_type (func_obj_p) == ECMA_OBJECT_TYPE_BOUND_FUNCTION' failed in ecma_op_function_has_instance
https://api.github.com/repos/jerryscript-project/jerryscript/issues/446/comments
1
2015-07-22T08:55:27Z
2015-11-19T11:14:22Z
https://github.com/jerryscript-project/jerryscript/issues/446
96,513,441
446
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 7c16228 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript var v_0 = Number var v_1 = new v_0("1e73") v_1.toString(35); ``` ###### Backtrace: ``` javascript ICE: Assertion 'buff_index <= buff_size' failed at jerryscript/jerry-c...
Assertion 'buff_index <= buff_size' failed in ecma_builtin_number_prototype_object_to_string
https://api.github.com/repos/jerryscript-project/jerryscript/issues/445/comments
2
2015-07-22T08:50:55Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/445
96,512,205
445
[ "jerryscript-project", "jerryscript" ]
The following test can reproduce the problem: ``` (function () { var d = {}; var a = [arguments]; })(); ``` This now throws `ReferenceError`. It also makes 29 test262 tests to fail.
Regression after #397 has been landed
https://api.github.com/repos/jerryscript-project/jerryscript/issues/440/comments
6
2015-07-21T12:29:00Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/440
96,304,392
440
[ "jerryscript-project", "jerryscript" ]
`jerry_api_string_to_char_buffer()` was designed to return negation of required bytes for buffer when given buffer is not sufficient. This function can take `NULL` for buffer to calculate required bytes to allocate buffer for a string. But if the string is actually empty string ('') then this will result segmentation ...
Segmentation fault at `jerry_api_string_to_char_buffer()` for empty string.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/439/comments
5
2015-07-21T06:48:25Z
2015-11-19T12:12:20Z
https://github.com/jerryscript-project/jerryscript/issues/439
96,242,805
439
[ "jerryscript-project", "jerryscript" ]
Test case: ``` var obj = {"a": [1], "b": {}}; JSON.stringify (obj); ```
Segmentation fault in JSON.stringify()
https://api.github.com/repos/jerryscript-project/jerryscript/issues/432/comments
3
2015-07-20T08:19:56Z
2015-08-03T08:21:42Z
https://github.com/jerryscript-project/jerryscript/issues/432
96,013,116
432
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 6038173 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript var v_0 = [ 0, 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,...
Assertion 'ecma_is_completion_value_throw (completion) || ecma_is_completion_value_return (completion)' failed in vm_run_from_pos
https://api.github.com/repos/jerryscript-project/jerryscript/issues/429/comments
3
2015-07-17T13:12:51Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/429
95,654,228
429
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 6038173 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript parseInt(''); ``` ###### Backtrace: ``` javascript Program received signal SIGSEGV, Segmentation fault. 0x000000000048dba2 in ecma_builtin_global_object_parse_int (this...
Segmentation fault in ecma_builtin_global_object_parse_int
https://api.github.com/repos/jerryscript-project/jerryscript/issues/428/comments
2
2015-07-17T13:01:07Z
2015-07-24T13:22:01Z
https://github.com/jerryscript-project/jerryscript/issues/428
95,652,222
428
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: 6038173 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript String.prototype.trim.call('\uf389'); ``` ###### Backtrace: ``` javascript ICE: Assertion '!lit_utf8_iterator_is_eos (&iter)' failed at jerryscript/jerry-core/lit/lit-s...
Assertion '!lit_utf8_iterator_is_eos (&iter)' failed in lit_utf8_string_code_unit_at
https://api.github.com/repos/jerryscript-project/jerryscript/issues/426/comments
1
2015-07-17T08:33:58Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/426
95,613,250
426
[ "jerryscript-project", "jerryscript" ]
Hello. Currently, implementation of JSON built-in uses isalpha and isdigit functions. Instead, helpers from lit_char should be used. After the replacement is performed, `isalpha` and `isdigit` functions should be removed.
Remove usage of isalpha and isdigit from JSON built-in's implementation
https://api.github.com/repos/jerryscript-project/jerryscript/issues/424/comments
3
2015-07-16T17:12:08Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/424
95,481,636
424
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: b414329 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript new Date(2013, -1); ``` ###### Backtrace: ``` javascript ICE: Assertion 'ecma_date_month_from_time (time) == mn' failed at jerryscript/jerry-core/ecma/builtin-objects/e...
Assertion 'ecma_date_month_from_time (time) == mn' failed in ecma_date_make_day
https://api.github.com/repos/jerryscript-project/jerryscript/issues/420/comments
3
2015-07-16T13:34:27Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/420
95,434,236
420
[ "jerryscript-project", "jerryscript" ]
Implement Date.prototype.toISOString()
https://api.github.com/repos/jerryscript-project/jerryscript/issues/417/comments
1
2015-07-16T11:17:46Z
2015-07-23T09:25:53Z
https://github.com/jerryscript-project/jerryscript/issues/417
95,411,366
417
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: abc2b55 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript Math.max(Number.POSITIVE_INFINITY, 234); ``` ###### Backtrace: ``` javascript ICE: Assertion 'ecma_number_is_negative (ret_num)' failed at jerryscript/jerry-core/ecma/b...
Assertion 'ecma_number_is_negative (ret_num)' failed in ecma_builtin_math_object_max
https://api.github.com/repos/jerryscript-project/jerryscript/issues/414/comments
2
2015-07-15T22:21:55Z
2015-07-24T15:50:15Z
https://github.com/jerryscript-project/jerryscript/issues/414
95,303,182
414
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: abc2b55 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript Date.prototype.setUTCMinutes(); ``` ###### Backtrace: ``` javascript Program received signal SIGSEGV, Segmentation fault. 0x000000000048fd22 in ecma_builtin_date_protot...
Segmentation fault in ecma_builtin_date_prototype_set_utc_minutes
https://api.github.com/repos/jerryscript-project/jerryscript/issues/413/comments
1
2015-07-15T20:20:42Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/413
95,281,434
413
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: abc2b55 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Description: Calling JSON.stringify with a not too big (length > 38) array ends in an out of memory error. ###### Test case: ``` javascript var a = ["a","a","a","a","a","a","a","a","a","a","a","...
Out of memory error with JSON.stringify
https://api.github.com/repos/jerryscript-project/jerryscript/issues/411/comments
4
2015-07-15T19:15:33Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/411
95,269,154
411
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: abc2b55 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript Date(Number.POSITIVE_INFINITY).toString(); ``` ###### Backtrace: ``` javascript ICE: Assertion 'day_within_year >= 0 && day_within_year < 365 + in_leap_year' failed at ...
Assertion 'day_within_year >= 0 && day_within_year < 365 + in_leap_year' failed in ecma_date_month_from_time
https://api.github.com/repos/jerryscript-project/jerryscript/issues/410/comments
0
2015-07-15T18:23:21Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/410
95,258,907
410
[ "jerryscript-project", "jerryscript" ]
When building all targets, make stops with: ``` /usr/lib/gcc/arm-none-eabi/4.8.2/../../../arm-none-eabi/bin/ld: debug.mcu_stm32f4-cp section `.text' will not fit in region `FLASH' /usr/lib/gcc/arm-none-eabi/4.8.2/../../../arm-none-eabi/bin/ld: region `FLASH' overflowed by 1804 bytes collect2: error: ld returned 1 exit...
Region FLASH overflow for debug.mcu_stm32f4-cp
https://api.github.com/repos/jerryscript-project/jerryscript/issues/407/comments
0
2015-07-15T16:33:26Z
2016-11-25T06:26:34Z
https://github.com/jerryscript-project/jerryscript/issues/407
95,236,331
407
[ "jerryscript-project", "jerryscript" ]
###### Jerry version: ``` Checked revision: abc2b55 Build: debug.linux ``` ###### OS: ``` Ubuntu 15.04, x86_64 ``` ###### Test case: ``` javascript JSON.stringify('\u2028') ``` ###### Backtrace: ``` javascript ICE: Assertion 'bytes_copied > 0 || !string_len' failed at jerryscript/jerry-core/ecma/builtin-objects/ecm...
Assertion 'bytes_copied > 0 || !string_len' failed in ecma_builtin_json_quote
https://api.github.com/repos/jerryscript-project/jerryscript/issues/406/comments
2
2015-07-15T16:11:12Z
2016-11-25T06:26:33Z
https://github.com/jerryscript-project/jerryscript/issues/406
95,231,845
406
[ "jerryscript-project", "jerryscript" ]
Hello. Implementation of `parseInt` (ecma-builtin-global.cpp) should be updated to use UTF-8 iterators for processing characters buffer. Comment of @zherczeg in #394: > Is this correct? If I understand correctly, we just pass a byte, rather than an uint16_t character. I think we should rewrite this to use the UTF it...
Unicode support in implementation of parseInt
https://api.github.com/repos/jerryscript-project/jerryscript/issues/405/comments
1
2015-07-15T14:09:59Z
2015-07-30T11:59:27Z
https://github.com/jerryscript-project/jerryscript/issues/405
95,204,471
405
[ "jerryscript-project", "jerryscript" ]
If the 'space' (formatting) parameter is negative, the JSON format is wrong.
Fix undeflow in JSON.stringify()
https://api.github.com/repos/jerryscript-project/jerryscript/issues/403/comments
2
2015-07-15T12:33:16Z
2015-07-15T16:38:08Z
https://github.com/jerryscript-project/jerryscript/issues/403
95,181,223
403
[ "jerryscript-project", "jerryscript" ]
The \b character isn't handled in the parse property of the JSON.
Missing case for backspace control character in JSON.parse()
https://api.github.com/repos/jerryscript-project/jerryscript/issues/402/comments
1
2015-07-15T10:41:30Z
2015-08-03T08:21:28Z
https://github.com/jerryscript-project/jerryscript/issues/402
95,161,142
402
[ "jerryscript-project", "jerryscript" ]
Related discussion: https://github.com/Samsung/jerryscript/pull/366#discussion_r34459554
Remove recursion depth check from RegExp engine.
https://api.github.com/repos/jerryscript-project/jerryscript/issues/388/comments
0
2015-07-14T11:00:17Z
2015-08-06T08:50:45Z
https://github.com/jerryscript-project/jerryscript/issues/388
94,920,256
388