Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(700)

Unified Diff: src/objects-debug.cc

Issue 1273353003: [simd.js] Single SIMD128_VALUE_TYPE for all Simd128Values. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix slow check failures. REBASE. Created 5 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/objects.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-debug.cc
diff --git a/src/objects-debug.cc b/src/objects-debug.cc
index 9d90f5163fba9bf16004679fcb6d5ddc6d94a6f8..5a80d2a04897e6a02b5d1d058a70b7fd4ac1d95b 100644
--- a/src/objects-debug.cc
+++ b/src/objects-debug.cc
@@ -57,26 +57,8 @@ void HeapObject::HeapObjectVerify() {
case MUTABLE_HEAP_NUMBER_TYPE:
HeapNumber::cast(this)->HeapNumberVerify();
break;
- case FLOAT32X4_TYPE:
- Float32x4::cast(this)->Float32x4Verify();
- break;
- case INT32X4_TYPE:
- Int32x4::cast(this)->Int32x4Verify();
- break;
- case BOOL32X4_TYPE:
- Bool32x4::cast(this)->Bool32x4Verify();
- break;
- case INT16X8_TYPE:
- Int16x8::cast(this)->Int16x8Verify();
- break;
- case BOOL16X8_TYPE:
- Bool16x8::cast(this)->Bool16x8Verify();
- break;
- case INT8X16_TYPE:
- Int8x16::cast(this)->Int8x16Verify();
- break;
- case BOOL8X16_TYPE:
- Bool8x16::cast(this)->Bool8x16Verify();
+ case SIMD128_VALUE_TYPE:
+ Simd128Value::cast(this)->Simd128ValueVerify();
break;
case FIXED_ARRAY_TYPE:
FixedArray::cast(this)->FixedArrayVerify();
@@ -231,25 +213,7 @@ void HeapNumber::HeapNumberVerify() {
}
-void Float32x4::Float32x4Verify() { CHECK(IsFloat32x4()); }
-
-
-void Int32x4::Int32x4Verify() { CHECK(IsInt32x4()); }
-
-
-void Bool32x4::Bool32x4Verify() { CHECK(IsBool32x4()); }
-
-
-void Int16x8::Int16x8Verify() { CHECK(IsInt16x8()); }
-
-
-void Bool16x8::Bool16x8Verify() { CHECK(IsBool16x8()); }
-
-
-void Int8x16::Int8x16Verify() { CHECK(IsInt8x16()); }
-
-
-void Bool8x16::Bool8x16Verify() { CHECK(IsBool8x16()); }
+void Simd128Value::Simd128ValueVerify() { CHECK(IsSimd128Value()); }
void ByteArray::ByteArrayVerify() {
« no previous file with comments | « src/objects.cc ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698