| Index: runtime/vm/raw_object.cc
|
| diff --git a/runtime/vm/raw_object.cc b/runtime/vm/raw_object.cc
|
| index 10afe36801f0024f9ae72c6038919ee65a41ca62..130e71731e33033fc75e8124de785f5d6afd606f 100644
|
| --- a/runtime/vm/raw_object.cc
|
| +++ b/runtime/vm/raw_object.cc
|
| @@ -182,13 +182,6 @@ intptr_t RawObject::SizeFromClass() const {
|
| instance_size = Uint64Array::InstanceSize(byte_array_length);
|
| break;
|
| }
|
| - case kFloat32x4ArrayCid: {
|
| - const RawFloat32x4Array* raw_byte_array =
|
| - reinterpret_cast<const RawFloat32x4Array*>(this);
|
| - intptr_t byte_array_length = Smi::Value(raw_byte_array->ptr()->length_);
|
| - instance_size = Float32x4Array::InstanceSize(byte_array_length);
|
| - break;
|
| - }
|
| case kFloat32ArrayCid: {
|
| const RawFloat32Array* raw_byte_array =
|
| reinterpret_cast<const RawFloat32Array*>(this);
|
| @@ -934,16 +927,6 @@ intptr_t RawUint64Array::VisitUint64ArrayPointers(
|
| return Uint64Array::InstanceSize(length);
|
| }
|
|
|
| -
|
| -intptr_t RawFloat32x4Array::VisitFloat32x4ArrayPointers(
|
| - RawFloat32x4Array *raw_obj, ObjectPointerVisitor* visitor) {
|
| - // Make sure that we got here with the tagged pointer as this.
|
| - ASSERT(raw_obj->IsHeapObject());
|
| - intptr_t length = Smi::Value(raw_obj->ptr()->length_);
|
| - visitor->VisitPointers(raw_obj->from(), raw_obj->to());
|
| - return Float32x4Array::InstanceSize(length);
|
| -}
|
| -
|
| intptr_t RawFloat32Array::VisitFloat32ArrayPointers(
|
| RawFloat32Array *raw_obj, ObjectPointerVisitor* visitor) {
|
| // Make sure that we got here with the tagged pointer as this.
|
| @@ -1045,15 +1028,6 @@ intptr_t RawExternalUint64Array::VisitExternalUint64ArrayPointers(
|
| }
|
|
|
|
|
| -intptr_t RawExternalFloat32x4Array::VisitExternalFloat32x4ArrayPointers(
|
| - RawExternalFloat32x4Array* raw_obj, ObjectPointerVisitor* visitor) {
|
| - // Make sure that we got here with the tagged pointer as this.
|
| - ASSERT(raw_obj->IsHeapObject());
|
| - visitor->VisitPointers(raw_obj->from(), raw_obj->to());
|
| - return ExternalFloat32x4Array::InstanceSize();
|
| -}
|
| -
|
| -
|
| intptr_t RawExternalFloat32Array::VisitExternalFloat32ArrayPointers(
|
| RawExternalFloat32Array* raw_obj, ObjectPointerVisitor* visitor) {
|
| // Make sure that we got here with the tagged pointer as this.
|
|
|