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

Unified Diff: include/v8.h

Issue 2695653005: Revert of Remove SIMD.js from V8. (Closed)
Patch Set: Created 3 years, 10 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 | « gypfiles/all.gyp ('k') | include/v8-profiler.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: include/v8.h
diff --git a/include/v8.h b/include/v8.h
index 836d90c3f524a639245cd854b30cc94527d6a84e..ac5dd3a2961e3174f46a0077aa946fec1740aca8 100644
--- a/include/v8.h
+++ b/include/v8.h
@@ -2162,6 +2162,12 @@
* Returns true if this value is a Float64Array.
*/
bool IsFloat64Array() const;
+
+ /**
+ * Returns true if this value is a SIMD Float32x4.
+ * This is an experimental feature.
+ */
+ bool IsFloat32x4() const;
/**
* Returns true if this value is a DataView.
@@ -8489,11 +8495,11 @@
static const int kNodeIsIndependentShift = 3;
static const int kNodeIsActiveShift = 4;
- static const int kJSApiObjectType = 0xba;
- static const int kJSObjectType = 0xbb;
+ static const int kJSApiObjectType = 0xbb;
+ static const int kJSObjectType = 0xbc;
static const int kFirstNonstringType = 0x80;
- static const int kOddballType = 0x82;
- static const int kForeignType = 0x86;
+ static const int kOddballType = 0x83;
+ static const int kForeignType = 0x87;
static const int kUndefinedOddballKind = 5;
static const int kNullOddballKind = 3;
« no previous file with comments | « gypfiles/all.gyp ('k') | include/v8-profiler.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698