Quellcodebibliothek Statistik Leitseite products/Sources/formale Sprachen/C/Firefox/js/src/jit-test/tests/xdr/   (Firefox Browser Version 136.0.1©)  Datei vom 10.2.2025 mit Größe 1 kB image not shown  

Quelle  incremental-encoder.js

  Sprache: JAVA
 

// |jit-test| skip-if: isLcovEnabled()

load(libdir + 'bytecode-cache.js');
var test = "";

// Check that without cloneSingleton, we can safely encode object literal which
// have mutations.
test = `
  var obj = { a: 1, b: 2 };
  obj.a++;
  assertEq(obj.a, 2);
`;
evalWithCache(test, {
  collectDelazifications: true,
  assertEqResult : true
});


// Encode lazy functions.
test = `
  function f() { return 1; };
  1;
`;
evalWithCache(test, {
  collectDelazifications: true,
  assertEqResult : true
});


// Encode delazified functions.
test = `
  function f() { return 1; };
  f();
`;
evalWithCache(test, {
  collectDelazifications: true,
  assertEqResult : true
});

// Encode inner functions.
test = `
  function g() {
    return function f() { return 1; };
  };
  g()();
`;
evalWithCache(test, {
  collectDelazifications: true,
  assertEqResult : true
});

// Extra zeal GCs can cause isRelazifiableFunction() to become true after we
// record its value by throwing away JIT code for the function.
gczeal(0);

// Relazified functions are encoded as non-lazy-script, when the encoding is
// incremental.
test = `
  assertEq(isLazyFunction(f), generation == 0 || generation == 3);
  function f() { return isRelazifiableFunction(f); };
  expect = f();
  assertEq(isLazyFunction(f), false);
  relazifyFunctions(f);
  assertEq(isLazyFunction(f), expect);
`;
evalWithCache(test, { collectDelazifications: true });

Messung V0.5 in Prozent
C=94 H=84 G=88

¤ Dauer der Verarbeitung: 0.12 Sekunden  (vorverarbeitet am  2026-06-05) ¤

*© 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.