-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathnotes.txt
More file actions
22 lines (16 loc) · 689 Bytes
/
notes.txt
File metadata and controls
22 lines (16 loc) · 689 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
Optimisation notes..
for nodejs and firefox:
-O2 --llvm-opts 1 --llvm-lto 0
For best performance with ciphers and ECC
-O2 --llvm-opts 1 --llvm-lto 0 -s ASM_JS=1
same performance (except for SERPENT .. investigate)
Browsers.. all using --llvm-opts 1 --llvm-lto 0
-O2 --closure 1 -s ASM_JS=1 (works for all browsers...)
-O2 --closure 0 -s ASM_JS=1 (works for all browsers...)
-O2 --closure 0 -s ASM_JS=0 (works for all browsers...)
-O1 --closure 0 -s ASM_JS=0 works.. slow
-O1 --closure 0 -s ASM_JS=1 works.. slow
-O1 --closure 1 -s ASM_JS=1 works...slow
closure without asm.js code hands.. needs investigation
-O2 --closure 1 -s ASM_JS=0
-O1 --closure 1 -s ASM_JS=0