aboutsummaryrefslogtreecommitdiff
path: root/deps/v8/src/harmony-sharedarraybuffer.js
blob: 3a72d6c353b1c8df75f96484152100e78d23e709 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
// Copyright 2015 the V8 project authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

(function(global, utils) {

"use strict";

%CheckIsBootstrapping();

var GlobalSharedArrayBuffer = global.SharedArrayBuffer;
var GlobalObject = global.Object;
var toStringTagSymbol = utils.ImportNow("to_string_tag_symbol");

// -------------------------------------------------------------------

function SharedArrayBufferConstructor(length) { // length = 1
  if (%_IsConstructCall()) {
    var byteLength = $toPositiveInteger(length, kInvalidArrayBufferLength);
    %ArrayBufferInitialize(this, byteLength, kShared);
  } else {
    throw MakeTypeError(kConstructorNotFunction, "SharedArrayBuffer");
  }
}

function SharedArrayBufferGetByteLen() {
  if (!IS_SHAREDARRAYBUFFER(this)) {
    throw MakeTypeError(kIncompatibleMethodReceiver,
                        'SharedArrayBuffer.prototype.byteLength', this);
  }
  return %_ArrayBufferGetByteLength(this);
}

function SharedArrayBufferIsViewJS(obj) {
  return %ArrayBufferIsView(obj);
}


// Set up the SharedArrayBuffer constructor function.
%SetCode(GlobalSharedArrayBuffer, SharedArrayBufferConstructor);
%FunctionSetPrototype(GlobalSharedArrayBuffer, new GlobalObject());

// Set up the constructor property on the SharedArrayBuffer prototype object.
%AddNamedProperty(GlobalSharedArrayBuffer.prototype, "constructor",
                  GlobalSharedArrayBuffer, DONT_ENUM);

%AddNamedProperty(GlobalSharedArrayBuffer.prototype,
    toStringTagSymbol, "SharedArrayBuffer", DONT_ENUM | READ_ONLY);

utils.InstallGetter(GlobalSharedArrayBuffer.prototype, "byteLength",
                    SharedArrayBufferGetByteLen);

utils.InstallFunctions(GlobalSharedArrayBuffer, DONT_ENUM, [
    "isView", SharedArrayBufferIsViewJS
]);

})