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

Quelle  futex-apis.js   Sprache: JAVA

 
// |reftest| skip-if(!xulRuntime.shell)
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/*
 * Any copyright is dedicated to the Public Domain.
 * http://creativecommons.org/licenses/publicdomain/
 */


if (this.SharedArrayBuffer && this.Atomics) {

// Checks for parameter validation of wait/wake API.  All of these test
// cases should throw exceptions during parameter validation, before
// we check whether any waiting should be done.

let ab = new ArrayBuffer(16);
let sab = new SharedArrayBuffer(16);

//////////////////////////////////////////////////////////////////////
//
// The view must be an Int32Array on a SharedArrayBuffer.

// Check against non-TypedArray cases.

{
    let values = [null,
    undefined,
    true,
    false,
    new Boolean(true),
    10,
    3.14,
    new Number(4),
    "Hi there",
    new Date,
    /a*utomaton/g,
    { password: "qumquat" },
    new DataView(new ArrayBuffer(10)),
    new ArrayBuffer(128),
    new SharedArrayBuffer(128),
    new Error("Ouch"),
    [1,1,2,3,5,8],
    ((x) => -x),
    new Map(),
    new Set(),
    new WeakMap(),
    new WeakSet(),
    new Promise(() => "done"),
    Symbol("halleluja"),
    // TODO: Proxy?
    Object,
    Int32Array,
    Date,
    Math,
    Atomics ];

    for ( let i=0 ; i < values.length ; i++ ) {
 let view = values[i];
 assertThrowsInstanceOf(() => Atomics.wait(view, 0, 0), TypeError);
 assertThrowsInstanceOf(() => Atomics.wake(view, 0), TypeError);
    }
}

// Check against TypedArray on non-shared memory and wrong view types cases.

{
    let views = [Int8Array, Uint8Array, Int16Array, Uint16Array, Uint32Array,
      Uint8ClampedArray, Float32Array, Float64Array];

    for ( let View of views ) {
 let view = new View(ab);

 assertThrowsInstanceOf(() => Atomics.wait(view, 0, 0), TypeError);
 assertThrowsInstanceOf(() => Atomics.wake(view, 0), TypeError);
    }
}

// Check against TypedArray on non-shared memory and correct view types cases.

{
    let views = [Int32Array];

    for ( let View of views ) {
        let view = new View(ab);

        assertThrowsInstanceOf(() => Atomics.wait(view, 0, 0), TypeError);
        assertEq(Atomics.wake(view, 0, 0), 0);
    }
}

// Check against TypedArray on shared memory, but wrong view type

{
    let views = [Int8Array, Uint8Array, Int16Array, Uint16Array, Uint32Array,
   Uint8ClampedArray, Float32Array, Float64Array];

    for ( let View of views ) {
 let view = new View(sab);

 assertThrowsInstanceOf(() => Atomics.wait(view, 0, 0), TypeError);
 assertThrowsInstanceOf(() => Atomics.wake(view, 0), TypeError);
    }
}

//////////////////////////////////////////////////////////////////////
//
// The indices must be in the range of the array

{
    let view = new Int32Array(sab);

    let indices = [ (view) => -1,
      (view) => view.length,
      (view) => view.length*2,
      (view) => '-3.5',
             (view) => ({ valueOf: () => -8 }) ];

    for ( let iidx=0 ; iidx < indices.length ; iidx++ ) {
 let Idx = indices[iidx](view);
 assertThrowsInstanceOf(() => Atomics.wait(view, Idx, 10), RangeError);
 assertThrowsInstanceOf(() => Atomics.wake(view, Idx), RangeError);
    }
}

// if (this.SharedArrayBuffer && this.Atomics) { ... }

reportCompare(true,true);

Messung V0.5
C=87 H=97 G=91

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