Selaa lähdekoodia

LibJS: Log scripts parsed by JS::Script::parse() and how long it took

Andreas Kling 3 vuotta sitten
vanhempi
commit
3ca2e701e6
1 muutettua tiedostoa jossa 6 lisäystä ja 0 poistoa
  1. 6 0
      Userland/Libraries/LibJS/Script.cpp

+ 6 - 0
Userland/Libraries/LibJS/Script.cpp

@@ -4,6 +4,7 @@
  * SPDX-License-Identifier: BSD-2-Clause
  */
 
+#include <LibCore/ElapsedTimer.h>
 #include <LibJS/AST.h>
 #include <LibJS/Lexer.h>
 #include <LibJS/Parser.h>
@@ -14,6 +15,11 @@ namespace JS {
 // 16.1.5 ParseScript ( sourceText, realm, hostDefined ), https://tc39.es/ecma262/#sec-parse-script
 NonnullRefPtr<Script> Script::parse(StringView source_text, Realm& realm, StringView filename)
 {
+    auto timer = Core::ElapsedTimer::start_new();
+    ScopeGuard timer_guard([&] {
+        dbgln("JS::Script: Parsed {} in {}ms", filename, timer.elapsed());
+    });
+
     // 1. Let body be ParseText(sourceText, Script).
     auto body = Parser(Lexer(source_text, filename)).parse_program();