![]() System : Linux absol.cf 5.4.0-198-generic #218-Ubuntu SMP Fri Sep 27 20:18:53 UTC 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.33 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, Directory : /usr/share/emscripten/tools/ |
Upload File : |
function finall(x) { x = +x; var a = +5; a = +x; a = 17; a = +44; a = +44.0; a = +44.9; a = +12.78e5; a = +12e10; a = -x; a = -17; a = -44; a = -44.0; a = -44.9; a = -12.78e5; a = -12e10; a = +-x; a = +-17; a = +-44; a = +-44.0; a = +-44.9; a = +-12.78e5; a = +-12e10; a = +0x8000000000000000; a = +-0x8000000000000000; a = -+0x8000000000000000; a = -0x8000000000000000; a = +0xde0b6b000000000; a = +-0xde0b6b000000000; a = -+0xde0b6b000000000; a = -0xde0b6b000000000; a = +0x3ce7184d470dd60000; f(g() & -1); return +12e10; } function looop() { while (1) { do_it(); if (condition()) { break; } } while (1) { do_it(); if (a > b) { break; } } while (1) { do_it(); if (!x()) { break; } } while (1) { do_it(); if (a()) continue; // we cannot move to do-while, continue will hit the while check if (!x()) { break; } } while (1) { do_it(); do { if (a()) continue; // ok to optimize, continue is not for us } while (b()); if (!x()) { break; } } while (1) { do_it(); while (b()) { if (a()) continue; // also ok to optimize, continue is not for us } if (!x()) { break; } } X: while (1) { do_it(); while (b()) { if (a()) continue X; // not ok to optimize } if (!x()) { break; } } while (1) { blah(); if (shah()) { a = b; break; } } LABELED: while (1) { blah(); if (shah()) { c = d; break; } } while (1) { blah(); if (check) break; // prevents optimization if (shah()) { e = f; break; } } while (1) { blah(); while (1) { if (check) break; // safe to optimize } if (shah()) { g = h; break; } } } // EMSCRIPTEN_GENERATED_FUNCTIONS: ["finall", "looop"]