-
Notifications
You must be signed in to change notification settings - Fork 690
SIGABRT in jerry_port_fatal #3860
Copy link
Copy link
Closed
Labels
bugUndesired behaviourUndesired behaviourecma coreRelated to core ECMA functionalityRelated to core ECMA functionality
Description
JerryScript revision
Build platform
Ubuntu 18.04 LTS
Build steps
python tools/build.py --profile=es2015-subset --lto=off --error-messages=on --strip=off --compile-flag=-fsanitize=address
Test case
function main() {
const v4 = [13.37,13.37];
const v6 = [1337,1337];
const v7 = [2147483649,13.37,"species"];
const v8 = {a:13.37,length:13.37};
const v9 = {constructor:v7};
let v10 = v6;
const v12 = {};
const v13 = [v12,v12,v12,v12];
const v14 = gc();
const v15 = "species".__proto__;
let v18 = 0;
while (v18 < 4) {
const v19 = v18 + 1;
v18 = v19;
}
const v22 = gc();
const v23 = "species".length;
const v24 = [13.37,13.37];
const v26 = [1337,1337];
const v27 = [2147483649,13.37,"species"];
const v28 = {a:13.37,length:13.37};
const v29 = {constructor:v27};
const v33 = [13.37,13.37];
const v36 = {get:gc,set:gc};
const v38 = Object.defineProperty(v9,"e",v36);
const v39 = !v8;
const v40 = [0,v33,"species"];
const v45 = [2147483649,13.37,"species"];
const v46 = {constructor:v45};
const v48 = [1337,1337];
const v51 = Object();
let v52 = 0;
const v53 = Object();
const v54 = v52 + 1;
const v55 = [1337,1337];
const v56 = [2147483649,1337,"species"];
const v57 = {a:13.37,length:13.37};
const v58 = {constructor:v56};
const v61 = [1337,1337];
let v62 = v61;
const v66 = [1337,1337];
const v67 = [2147483649,"species","species"];
const v69 = v66 % v66;
const v70 = [1337,1337];
const v71 = !v46;
let v74 = 0;
do {
let v75 = 13.37;
try {
const v76 = Object(...1,v38);
} catch(v77) {
const v78 = typeof v56;
const v80 = v78 === "number";
let v81 = v80;
}
} while (v74 < 9);
}
main();
Execution steps
build/bin/jerry testcase.js
Output
Program received signal SIGABRT, Aborted.
Backtrace
Program received signal SIGABRT, Aborted.
__GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
(gdb) bt
#0 __GI_raise (sig=sig@entry=6) at ../sysdeps/unix/sysv/linux/raise.c:51
#1 0x00007ffff6e43801 in __GI_abort () at abort.c:79
#2 0x00000000005ac952 in jerry_port_fatal ()
#3 0x000000000053beef in jerry_fatal ()
#4 0x00000000004f90d3 in ecma_ref_object ()
#5 0x00000000005042cd in ecma_copy_value ()
#6 0x000000000055cf7c in vm_loop ()
#7 0x000000000055b5f6 in vm_execute ()
#8 0x000000000055b193 in vm_run ()
#9 0x000000000051f650 in ecma_op_function_call_simple ()
#10 0x000000000051f2d6 in ecma_op_function_call ()
#11 0x000000000055b9aa in vm_execute ()
#12 0x000000000055b193 in vm_run ()
#13 0x00000000004f501e in jerry_run ()
#14 0x00000000004f25df in main ()
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
bugUndesired behaviourUndesired behaviourecma coreRelated to core ECMA functionalityRelated to core ECMA functionality