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

Quelle  bug1568397.js   Sprache: JAVA

 
// |jit-test| --setpref=property_error_message_fix=true; error:TypeError: can't access property "x"
let obj = {x: 1};
obj.x = 1.1;

function Foo(val, phase){
    if (phase == 3) {
        // Phase 3: Modify the prototype of this constructor.
        Foo.prototype.__proto__ = proto;
    }

    // Phase 4: Trigger the getter on the new proto.
    this.d;

    this.c = val;

    if (phase == 2) {
        // Phase 2: Stash |this| in a global variable.
        g_partial = this;

        // Trigger Phase 3.
        new Foo(1.1, 3);
    }
    this.b = 2.2;
}

let proto = {get d() {
    function accessC(arg){
        var tmp = arg.c;
        return tmp.x;
    }

    // Phase 5: Ion-compile |accessC|, using the stashed |this| from phase 2.
    // This is a partially initialized object with a C property but not a B
    // property.
    for (var i = 0; i < 100000; i++) {
        accessC(g_partial);
    }

    // Phase 6: call |accessC| with |this|, which is a partially initialized
    // object *without* a C (and B) property.
    x = accessC(this);
}};

// Phase 1: Warm up the |Foo| constructor with normal data.
for(let i = 0;i < 100;i++){
    new Foo(obj, 1);
}

// Trigger Phase 2.
new Foo(obj, 2);

Messung V0.5
C=98 H=98 G=97

¤ Dauer der Verarbeitung: 0.13 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.