-
Notifications
You must be signed in to change notification settings - Fork 0
Optimizing Code
By default Emscripten will compile code in a fairly safe way, and without all the possible optimizations. You should generally try this first, to make sure things work properly (if not, see the Debugging page). Afterwards, you may want to compile your code so it runs faster. This page explains how.
Note: You can also optimize the source code you are compiling into JavaScript, see Optimizing the source code.
The recommended way to optimize code is with emcc. emcc works like gcc, and basic usage is presented in the Emscripten Tutorial. As mentioned there, you can use emcc to optimize, for example
emcc -O2 file.cpp
To see what the different optimizations levels do, run
emcc --help
- The meaning of
-O1, -O2
etc. in emcc are not identical to gcc/clang/other compilers, even though they have been chosen to be as familiar. They can't be, because optimizing JavaScript is very different than optimizing native code. See the--help
as mentioned before for details. - If you compile several files into a single JavaScript output, be sure to specify the same optimization flags during all invocations of emcc - both when compiling sources into objects, and objects into JavaScript or HTML. See Building Projects for more details.
- Aside from
-Ox
options, there are--llvm-lto
options that you can read about inemcc --help
.
The following procedure is how you should normally optimize your code. Note that all the flags here are for the link stage (when compiling bitcode to JS), not to optimizing source files.
- First, run emcc on your code without optimization. The default settings are set to be safe. Check that your code works (if not, see the Debugging page) before continuing.
- Build with
-O2
to get an optimized build. - Build with
-O0
or-O1
if you want faster iteration times, 0 is the fastest to build but slowest to run, while 1 is in the middle. - If you want an even more optimized build than
-O2
, see the rest of this page.
There are several flags you can pass to the compiler to affect code generation, many of which can affect performance. Look in src/settings.js
for which options are available and what they mean (and if you want to look under the hood, see apply_opt_level
in tools/shared.py
for how -O1,2,3 affect them), as well as emcc --help
. A few useful ones are:
-
NO_EXIT_RUNTIME
- When set, code can run but we never "shut down" the runtime environment, in the sense that no global destructors are run, no atexit calls are executed, etc. This is useful if your main() function finishes but you still want to execute code, and in fact necessary otherwise if you depend on a global structure it may have gone away - and for that reason, at runtime if we see that you call something likeemscripten_set_main_loop
then we will never shut down the runtime. However, if you build with-s NO_EXIT_RUNTIME=1
then we know at compile time that you want that, which lets the compiler statically get rid of atexit calls and global destructors, which can improve code size and startup speed.
Very large projects can hit some issues that smaller ones will never see:
By default emscripten emits the static memory initialization inside the js file, for simplicity. If it is very large, it can slow down startup, or even cause issues in JS engines with limits on array sizes (you may see Array initializer too large
or Too much recursion
for example). To avoid that, use a binary file on the side by running emcc with
--memory-init-file 1
A file with suffix .mem
should appear, and it will be loaded by the JS. See emcc --help
for more details.
OUTLINING_LIMIT
breaks up large functions into smaller ones, by "outlining" code. This helps startup speed as well as runtime speed in some cases, particularly when a codebase has huge functions, which confuse JS engines. For more details see this blogpost.
In -O1
and above exception catching is disabled. This prevents the generation of try-catch blocks, which lets the code run much faster, and also makes the code smaller. To re-enable them, run emcc with -s DISABLE_EXCEPTION_CATCHING=0
.
If you run emcc with EMCC_DEBUG=1
(so, something like EMCC_DEBUG=1 emcc
), then it will output all the intermediate steps after each optimization pass. The output will be in TEMP_DIR/emscripten_temp
, where TEMP_DIR
is by default /tmp
(and can be modified in ~/.emscripten
). EMCC_DEBUG=2
will output even more information, a separate file will be saved for each JS optimization pass.
Inlining often generates large functions. These allow the compiler's optimizations to be more effective, but have downsides for JS engines: They often do not try to optimize big functions for fear or long JIT times, or they do JIT them and it causes noticeable pauses. So ironically (or paradoxically) using -O1 or -O2, which inline by default, can actually decrease performance in some cases.
You can try to avoid this issue by disabling inlining (in specific files or everywhere), or by using the outliner feature, see this blog post.
A few UNSAFE optimizations you might want to try are:
-
-s FORCE_ALIGNED_MEMORY=1
: Makes all memory accesses fully aligned. This can break on code that actually requires unaligned accesses. -
-s PRECISE_I64_MATH=1
: When disabled, does shortcuts when implementing 64-bit addition etc., using doubles instead of full emulation. This will break on code that uses the full range of 64-bit numbers. -
--llvm-lto 1
: This enables LLVM's link-time opts, which can help in some cases but there are known issues with them as well, so use at your own risk. (There are btw a few modes aside from1
, seeemcc --help
.) -
--closure 1
: This can help with reducing the size of the non-generated (support/glue) code, and with startup. However it can break if you do not do proper closure compiler annotations and exports.