| // Copyright (c) 2013, the Dart project authors. Please see the AUTHORS file |
| // for details. All rights reserved. Use of this source code is governed by a |
| // BSD-style license that can be found in the LICENSE file. |
| |
| #include "vm/bootstrap_natives.h" |
| |
| #include "include/dart_api.h" |
| |
| #include "vm/exceptions.h" |
| #include "vm/native_entry.h" |
| #include "vm/object.h" |
| #include "vm/object_store.h" |
| |
| namespace dart { |
| |
| // TypedData. |
| |
| static void AlignmentCheck(intptr_t offset_in_bytes, intptr_t element_size) { |
| if ((offset_in_bytes % element_size) != 0) { |
| const auto& error = String::Handle(String::NewFormatted( |
| "Offset in bytes (%" Pd ") must be a multiple of %" Pd "", |
| offset_in_bytes, element_size)); |
| Exceptions::ThrowArgumentError(error); |
| } |
| } |
| |
| // Checks to see if a length will not result in an OOM error. |
| static void LengthCheck(intptr_t len, intptr_t max) { |
| if (len < 0 || len > max) { |
| const String& error = String::Handle(String::NewFormatted( |
| "Length (%" Pd ") of object must be in range [0..%" Pd "]", len, max)); |
| Exceptions::ThrowArgumentError(error); |
| } |
| } |
| |
| DEFINE_NATIVE_ENTRY(TypedDataBase_length, 0, 1) { |
| GET_NON_NULL_NATIVE_ARGUMENT(TypedDataBase, array, arguments->NativeArgAt(0)); |
| return Smi::New(array.Length()); |
| } |
| |
| DEFINE_NATIVE_ENTRY(TypedDataView_offsetInBytes, 0, 1) { |
| // "this" is either a _*ArrayView class or _ByteDataView. |
| GET_NON_NULL_NATIVE_ARGUMENT(Instance, instance, arguments->NativeArgAt(0)); |
| ASSERT(instance.IsTypedDataView()); |
| return TypedDataView::Cast(instance).offset_in_bytes(); |
| } |
| |
| DEFINE_NATIVE_ENTRY(TypedDataView_typedData, 0, 1) { |
| // "this" is either a _*ArrayView class or _ByteDataView. |
| GET_NON_NULL_NATIVE_ARGUMENT(Instance, instance, arguments->NativeArgAt(0)); |
| ASSERT(instance.IsTypedDataView()); |
| return TypedDataView::Cast(instance).typed_data(); |
| } |
| |
| static bool IsClamped(intptr_t cid) { |
| COMPILE_ASSERT((kTypedDataUint8ClampedArrayCid + 1 == |
| kTypedDataUint8ClampedArrayViewCid) && |
| (kTypedDataUint8ClampedArrayCid + 2 == |
| kExternalTypedDataUint8ClampedArrayCid) && |
| (kTypedDataUint8ClampedArrayCid + 3 == |
| kUnmodifiableTypedDataUint8ClampedArrayViewCid)); |
| return cid >= kTypedDataUint8ClampedArrayCid && |
| cid <= kUnmodifiableTypedDataUint8ClampedArrayViewCid; |
| } |
| |
| static bool IsUint8(intptr_t cid) { |
| COMPILE_ASSERT( |
| (kTypedDataUint8ArrayCid + 1 == kTypedDataUint8ArrayViewCid) && |
| (kTypedDataUint8ArrayCid + 2 == kExternalTypedDataUint8ArrayCid) && |
| (kTypedDataUint8ArrayCid + 3 == |
| kUnmodifiableTypedDataUint8ArrayViewCid) && |
| (kTypedDataUint8ArrayCid + 4 == kTypedDataUint8ClampedArrayCid)); |
| return cid >= kTypedDataUint8ArrayCid && |
| cid <= kUnmodifiableTypedDataUint8ClampedArrayViewCid; |
| } |
| |
| DEFINE_NATIVE_ENTRY(TypedDataBase_setClampedRange, 0, 5) { |
| // This is called after bounds checking, so the numeric inputs are |
| // guaranteed to be Smis, and the length is guaranteed to be non-zero. |
| const TypedDataBase& dst = |
| TypedDataBase::CheckedHandle(zone, arguments->NativeArgAt(0)); |
| const Smi& dst_start_smi = |
| Smi::CheckedHandle(zone, arguments->NativeArgAt(1)); |
| const Smi& length_smi = Smi::CheckedHandle(zone, arguments->NativeArgAt(2)); |
| const TypedDataBase& src = |
| TypedDataBase::CheckedHandle(zone, arguments->NativeArgAt(3)); |
| const Smi& src_start_smi = |
| Smi::CheckedHandle(zone, arguments->NativeArgAt(4)); |
| |
| const intptr_t element_size_in_bytes = dst.ElementSizeInBytes(); |
| ASSERT_EQUAL(src.ElementSizeInBytes(), element_size_in_bytes); |
| |
| const intptr_t dst_start_in_bytes = |
| dst_start_smi.Value() * element_size_in_bytes; |
| const intptr_t length_in_bytes = length_smi.Value() * element_size_in_bytes; |
| const intptr_t src_start_in_bytes = |
| src_start_smi.Value() * element_size_in_bytes; |
| |
| #if defined(DEBUG) |
| // Verify bounds checks weren't needed. |
| ASSERT(dst_start_in_bytes >= 0); |
| ASSERT(src_start_in_bytes >= 0); |
| // The callers of this native function never call it for a zero-sized copy. |
| ASSERT(length_in_bytes > 0); |
| |
| const intptr_t dst_length_in_bytes = dst.LengthInBytes(); |
| // Since the length is non-zero, the start can't be the same as the end. |
| ASSERT(dst_start_in_bytes < dst_length_in_bytes); |
| ASSERT(length_in_bytes <= dst_length_in_bytes - dst_start_in_bytes); |
| |
| const intptr_t src_length_in_bytes = src.LengthInBytes(); |
| // Since the length is non-zero, the start can't be the same as the end. |
| ASSERT(src_start_in_bytes < src_length_in_bytes); |
| ASSERT(length_in_bytes <= src_length_in_bytes - src_start_in_bytes); |
| #endif |
| |
| ASSERT_EQUAL(element_size_in_bytes, 1); |
| ASSERT(IsClamped(dst.ptr()->GetClassId())); |
| ASSERT(!IsUint8(src.ptr()->GetClassId())); |
| |
| NoSafepointScope no_safepoint; |
| uint8_t* dst_data = |
| reinterpret_cast<uint8_t*>(dst.DataAddr(dst_start_in_bytes)); |
| int8_t* src_data = |
| reinterpret_cast<int8_t*>(src.DataAddr(src_start_in_bytes)); |
| for (intptr_t ix = 0; ix < length_in_bytes; ix++) { |
| int8_t v = *src_data; |
| if (v < 0) v = 0; |
| *dst_data = v; |
| src_data++; |
| dst_data++; |
| } |
| |
| return Object::null(); |
| } |
| |
| // Native methods for typed data allocation are recognized and implemented |
| // in FlowGraphBuilder::BuildGraphOfRecognizedMethod. |
| // These bodies exist only to assert that they are not used. |
| #define TYPED_DATA_NEW(name) \ |
| DEFINE_NATIVE_ENTRY(TypedData_##name##_new, 0, 2) { \ |
| UNREACHABLE(); \ |
| return Object::null(); \ |
| } |
| |
| #define TYPED_DATA_NEW_NATIVE(name) TYPED_DATA_NEW(name) |
| |
| CLASS_LIST_TYPED_DATA(TYPED_DATA_NEW_NATIVE) |
| #undef TYPED_DATA_NEW_NATIVE |
| #undef TYPED_DATA_NEW |
| |
| // We check the length parameter against a possible maximum length for the |
| // array based on available physical addressable memory on the system. |
| // |
| // More specifically |
| // |
| // TypedData::MaxElements(cid) is equal to (kSmiMax / ElementSizeInBytes(cid)) |
| // |
| // which ensures that the number of bytes the array holds is guaranteed to fit |
| // into a _Smi. |
| // |
| // Argument 0 is type arguments and is ignored. |
| static InstancePtr NewTypedDataView(intptr_t cid, |
| intptr_t element_size, |
| Zone* zone, |
| NativeArguments* arguments) { |
| GET_NON_NULL_NATIVE_ARGUMENT(TypedDataBase, typed_data, |
| arguments->NativeArgAt(1)); |
| GET_NON_NULL_NATIVE_ARGUMENT(Smi, offset, arguments->NativeArgAt(2)); |
| GET_NON_NULL_NATIVE_ARGUMENT(Smi, len, arguments->NativeArgAt(3)); |
| const intptr_t backing_length = typed_data.LengthInBytes(); |
| const intptr_t offset_in_bytes = offset.Value(); |
| const intptr_t length = len.Value(); |
| AlignmentCheck(offset_in_bytes, element_size); |
| LengthCheck(offset_in_bytes + length * element_size, backing_length); |
| return TypedDataView::New(cid, typed_data, offset_in_bytes, length); |
| } |
| |
| #define TYPED_DATA_VIEW_NEW(native_name, cid) \ |
| DEFINE_NATIVE_ENTRY(native_name, 0, 4) { \ |
| return NewTypedDataView(cid, TypedDataBase::ElementSizeInBytes(cid), zone, \ |
| arguments); \ |
| } |
| |
| #define TYPED_DATA_NEW_NATIVE(name) \ |
| TYPED_DATA_VIEW_NEW(TypedDataView_##name##View_new, \ |
| kTypedData##name##ViewCid) \ |
| TYPED_DATA_VIEW_NEW(TypedDataView_Unmodifiable##name##View_new, \ |
| kUnmodifiableTypedData##name##ViewCid) |
| |
| CLASS_LIST_TYPED_DATA(TYPED_DATA_NEW_NATIVE) |
| TYPED_DATA_VIEW_NEW(TypedDataView_ByteDataView_new, kByteDataViewCid) |
| TYPED_DATA_VIEW_NEW(TypedDataView_UnmodifiableByteDataView_new, |
| kUnmodifiableByteDataViewCid) |
| #undef TYPED_DATA_NEW_NATIVE |
| #undef TYPED_DATA_VIEW_NEW |
| |
| } // namespace dart |