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

Quelle  shape-teleporting-1.js   Sprache: JAVA

 
// Receiver shadows
(function() {
    function check(p) { return p.x; }

    let a = { x: "a" };
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    d.x = "d";
    assertEq(check(d), "d");
})();

// Intermediate proto shadows
(function() {
    function check(p) { return p.x; }

    let a = { x: "a" };
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    c.x = "c";
    assertEq(check(d), "c");
})();

// Receiver proto changes
(function() {
    function check(p) { return p.x; }

    let a = { x: "a" };
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    d.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Intermediate proto changes
(function() {
    function check(p) { return p.x; }

    let a = { x: "a" };
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    c.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Uncacheable holder proto
(function() {
    function check(p) { return p.x; }

    function Base() { this.x = "a"; }
    let a = new Base;
    a.__proto__ = new Object;
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    b.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Uncacheable intermediate proto
(function() {
    function check(p) { return p.x; }

    function Base() { this.x = "a"; }
    function Node() { }

    let a = new Base;
    let b = new Node; b.__proto__ = a;
    let c = { __proto__: b };
    let d = { __proto__: c };

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    b.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Uncacheable receiver proto
(function() {
    function check(p) { return p.x; }

    function Base() { this.x = "a"; }
    function Node() { }

    let a = new Base;
    let b = { __proto__: a };
    let c = { __proto__: b };
    let d = new Node; d.__proto__ = c;

    assertEq(check(d), "a");
    assertEq(check(d), "a");
    d.__proto__ = { x: "?" };
    assertEq(check(d), "?");
})();

// Uncacheable receiver proto (only receiver / holder)
(function() {
    function check(p) { return p.x; }

    function Base() { this.x = "a"; }
    function Node() { }

    let a = new Base;
    let b = new Node; b.__proto__ = a;

    assertEq(check(b), "a");
    assertEq(check(b), "a");
    b.__proto__ = { x: "?" };
    assertEq(check(b), "?");
})();

Messung V0.5
C=94 H=93 G=93

¤ Dauer der Verarbeitung: 0.11 Sekunden  (vorverarbeitet)  ¤

*© Formatika GbR, Deutschland






Wurzel

Suchen

Beweissystem der NASA

Beweissystem Isabelle

NIST Cobol Testsuite

Cephes Mathematical Library

Wiener Entwicklungsmethode

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.