aboutsummaryrefslogtreecommitdiff
path: root/lib/compilers/win32.js
diff options
context:
space:
mode:
authorPatrick Quist <partouf@gmail.com>2021-03-11 17:37:57 +0100
committerGitHub <noreply@github.com>2021-03-11 17:37:57 +0100
commit7edd6d40ac3b684fdb0eca3cf91e2c54b27ba231 (patch)
treec29028a92a9ba56b4fe2b3eba3c44d8603f67fb4 /lib/compilers/win32.js
parent6ef5a9c6282dfb89755e7b21968581afdf97a6fb (diff)
downloadcompiler-explorer-7edd6d40ac3b684fdb0eca3cf91e2c54b27ba231.tar.gz
compiler-explorer-7edd6d40ac3b684fdb0eca3cf91e2c54b27ba231.zip
Time all the things (#2462)
* time executeDirect in ms * measure library download and extract time * time package download * download timings when using execution checkbox * proof of concept timing graph implementation * use vertical bars for graph * add objdump time * add timing for asm parsing * add timing graph to execution pane as well * download timings on execution pane * things
Diffstat (limited to 'lib/compilers/win32.js')
-rw-r--r--lib/compilers/win32.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/compilers/win32.js b/lib/compilers/win32.js
index 3c06bbbe0..957cbc26b 100644
--- a/lib/compilers/win32.js
+++ b/lib/compilers/win32.js
@@ -60,6 +60,7 @@ export class Win32Compiler extends BaseCompiler {
if (objResult.code !== 0) {
result.asm = '<No output: objdump returned ' + objResult.code + '>';
} else {
+ result.objdumpTime = objResult.execTime;
result.asm = objResult.stdout;
}