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

Unified Diff: src/objects-printer.cc

Issue 1250733005: SIMD.js Add the other SIMD Phase 1 types. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Don't run downloaded SIMD value type tests. 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-inl.h ('k') | src/ppc/code-stubs-ppc.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/objects-printer.cc
diff --git a/src/objects-printer.cc b/src/objects-printer.cc
index cb67d6a6e86a60d058af4cd21fae5ec163607086..560419b0db3a4984afa8ee202088e5442098ae07 100644
--- a/src/objects-printer.cc
+++ b/src/objects-printer.cc
@@ -64,6 +64,24 @@ void HeapObject::HeapObjectPrint(std::ostream& os) { // NOLINT
case FLOAT32X4_TYPE:
Float32x4::cast(this)->Float32x4Print(os);
break;
+ case INT32X4_TYPE:
+ Int32x4::cast(this)->Int32x4Print(os);
+ break;
+ case BOOL32X4_TYPE:
+ Bool32x4::cast(this)->Bool32x4Print(os);
+ break;
+ case INT16X8_TYPE:
+ Int16x8::cast(this)->Int16x8Print(os);
+ break;
+ case BOOL16X8_TYPE:
+ Bool16x8::cast(this)->Bool16x8Print(os);
+ break;
+ case INT8X16_TYPE:
+ Int16x8::cast(this)->Int16x8Print(os);
+ break;
+ case BOOL8X16_TYPE:
+ Bool16x8::cast(this)->Bool16x8Print(os);
+ break;
case FIXED_DOUBLE_ARRAY_TYPE:
FixedDoubleArray::cast(this)->FixedDoubleArrayPrint(os);
break;
@@ -192,6 +210,74 @@ void HeapObject::HeapObjectPrint(std::ostream& os) { // NOLINT
}
+void Float32x4::Float32x4Print(std::ostream& os) { // NOLINT
+ char arr[100];
+ Vector<char> buffer(arr, arraysize(arr));
+ os << std::string(DoubleToCString(get_lane(0), buffer)) << ", "
+ << std::string(DoubleToCString(get_lane(1), buffer)) << ", "
+ << std::string(DoubleToCString(get_lane(2), buffer)) << ", "
+ << std::string(DoubleToCString(get_lane(3), buffer));
+}
+
+
+void Int32x4::Int32x4Print(std::ostream& os) { // NOLINT
+ char arr[100];
+ Vector<char> buffer(arr, arraysize(arr));
+ os << std::string(IntToCString(get_lane(0), buffer)) << ", "
+ << std::string(IntToCString(get_lane(1), buffer)) << ", "
+ << std::string(IntToCString(get_lane(2), buffer)) << ", "
+ << std::string(IntToCString(get_lane(3), buffer));
+}
+
+
+void Bool32x4::Bool32x4Print(std::ostream& os) { // NOLINT
+ os << std::string(get_lane(0) ? "true" : "false") << ", "
+ << std::string(get_lane(1) ? "true" : "false") << ", "
+ << std::string(get_lane(2) ? "true" : "false") << ", "
+ << std::string(get_lane(3) ? "true" : "false");
+}
+
+
+void Int16x8::Int16x8Print(std::ostream& os) { // NOLINT
+ char arr[100];
+ Vector<char> buffer(arr, arraysize(arr));
+ os << std::string(IntToCString(get_lane(0), buffer));
+ for (int i = 1; i < 8; i++) {
+ os << ", " << std::string(IntToCString(get_lane(i), buffer));
+ }
+}
+
+
+void Bool16x8::Bool16x8Print(std::ostream& os) { // NOLINT
+ char arr[100];
+ Vector<char> buffer(arr, arraysize(arr));
+ os << std::string(get_lane(0) ? "true" : "false");
+ for (int i = 1; i < 8; i++) {
+ os << ", " << std::string(get_lane(i) ? "true" : "false");
+ }
+}
+
+
+void Int8x16::Int8x16Print(std::ostream& os) { // NOLINT
+ char arr[100];
+ Vector<char> buffer(arr, arraysize(arr));
+ os << std::string(IntToCString(get_lane(0), buffer));
+ for (int i = 1; i < 16; i++) {
+ os << ", " << std::string(IntToCString(get_lane(i), buffer));
+ }
+}
+
+
+void Bool8x16::Bool8x16Print(std::ostream& os) { // NOLINT
+ char arr[100];
+ Vector<char> buffer(arr, arraysize(arr));
+ os << std::string(get_lane(0) ? "true" : "false");
+ for (int i = 1; i < 16; i++) {
+ os << ", " << std::string(get_lane(i) ? "true" : "false");
+ }
+}
+
+
void ByteArray::ByteArrayPrint(std::ostream& os) { // NOLINT
os << "byte array, data starts at " << GetDataStartAddress();
}
« no previous file with comments | « src/objects-inl.h ('k') | src/ppc/code-stubs-ppc.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698