Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/dom/base/test/   (Firefox Browser Version 153.0.1©)  Datei vom 27.6.2026 mit Größe 2 kB image not shown  

Quelle  test_omt_eager_baseline.html

  Sprache: HTML
 

 products/Sources/formale Sprachen/C/Firefox/dom/base/test/test_omt_eager_baseline.html


<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>Test for eager omt baseline compilation</title>
  <script src="/tests/SimpleTest/SimpleTest.js"></script>
  <link rel="stylesheet" href="/tests/SimpleTest/test.css"/>
  <script type="application/javascript">
    SimpleTest.requestLongerTimeout(2);
    SimpleTest.waitForExplicitFinish();

    // - A value of 4 for offthread_compilation_strategy will aggressively
    //   compile all JS functions omt with bytecode eagerly.
    // - 255 for delazification strategy will full parse all functions.
    SpecialPowers.pushPrefEnv({set: [
      ["dom.expose_test_interfaces", true],
      ["javascript.options.baselinejit", true],
      ["javascript.options.baselinejit.offthread_compilation_strategy"4],
      ["dom.script_loader.delazification.strategy"255],
      ["dom.script_loader.delazification.max_size", -1],
      ["dom.script_loader.delazification.min_mem"0]
    ]});

    async function doTest() {
      var iframe = document.getElementById("ifr");
      
      var dispatchReceived = false;
      var compiledFunctions = new Set();
      
      window.addEventListener("message", function(event) {
        if (event.data && event.data.type) {
          // Check for function-specific events
          if (event.data.type.startsWith("omt_eager_baseline_function: ")) {
            const functionName = event.data.type.substring("omt_eager_baseline_function: ".length);
            compiledFunctions.add(functionName);
          } else if (event.data.type === "omt_eager_baseline_dispatch") {
            dispatchReceived = true;
          }
        }
      });
      
      // Load iframe
      iframe.src = "file_omt_eager_baseline.html";

      // Need a long timeout here since this test can take a long time
      // on some platforms.
      await SimpleTest.promiseWaitForCondition(
        () => compiledFunctions.has("fun1") && compiledFunctions.has("fun2") && compiledFunctions.has("fun3"),
        "Failed to eagerly compile functions.",
        100,
        100
      );
      await SimpleTest.promiseWaitForCondition(
        () => dispatchReceived,
        "Did not recieve eager baseline compilation dispatch.",
        100,
        10
      );

      ok(true, "All functions were eagerly compiled successfully.");
      SimpleTest.finish();
    }
  </script>
</head>
<body onload="doTest()">
  <iframe id="ifr" allowfullscreen></iframe>
</body>
</html>

Messung V0.5 in Prozent
C=97 H=100 G=98

¤ Dauer der Verarbeitung: 0.3 Sekunden  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

PVS Prover

Isabelle Prover

NIST Cobol Testsuite

Cephes Mathematical Library

Vienna Development Method

Haftungshinweis

Die Informationen auf dieser Webseite wurden nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit, noch Qualität der bereit gestellten Informationen zugesichert.

Bemerkung:

Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.