chromium/v8/src/runtime/runtime-typedarray.cc

// Copyright 2014 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.

#include "src/base/atomicops.h"
#include "src/common/message-template.h"
#include "src/execution/arguments-inl.h"
#include "src/heap/factory.h"
#include "src/objects/elements.h"
#include "src/objects/js-array-buffer-inl.h"
#include "src/objects/objects-inl.h"
#include "src/runtime/runtime.h"

namespace v8 {
namespace internal {

RUNTIME_FUNCTION(Runtime_ArrayBufferDetach) {}

RUNTIME_FUNCTION(Runtime_ArrayBufferSetDetachKey) {}

RUNTIME_FUNCTION(Runtime_TypedArrayCopyElements) {}

RUNTIME_FUNCTION(Runtime_TypedArrayGetBuffer) {}

RUNTIME_FUNCTION(Runtime_GrowableSharedArrayBufferByteLength) {}

namespace {

template <typename T>
bool CompareNum(T x, T y) {}

}  // namespace

RUNTIME_FUNCTION(Runtime_TypedArraySortFast) {}

RUNTIME_FUNCTION(Runtime_TypedArraySet) {}

}  // namespace internal
}  // namespace v8