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

Unified Diff: src/objects.h

Issue 1309513005: Revert of [simd.js] Update to spec version 0.8.2. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: 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/messages.js ('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.h
diff --git a/src/objects.h b/src/objects.h
index 93d07d4a6fbbfb13bd01ce299add4e5a60fdfe7c..4fe42cdc81c6c0aa30317c96daf47d843bc54faa 100644
--- a/src/objects.h
+++ b/src/objects.h
@@ -115,13 +115,10 @@
// - Simd128Value
// - Float32x4
// - Int32x4
-// - Uint32x4
// - Bool32x4
// - Int16x8
-// - Uint16x8
// - Bool16x8
// - Int8x16
-// - Uint8x16
// - Bool8x16
// - Cell
// - PropertyCell
@@ -869,13 +866,10 @@
V(Simd128Value) \
V(Float32x4) \
V(Int32x4) \
- V(Uint32x4) \
V(Bool32x4) \
V(Int16x8) \
- V(Uint16x8) \
V(Bool16x8) \
V(Int8x16) \
- V(Uint8x16) \
V(Bool8x16) \
V(Name) \
V(UniqueName) \
@@ -1598,13 +1592,10 @@
#define SIMD128_TYPES(V) \
V(FLOAT32X4, Float32x4, float32x4, 4, float) \
V(INT32X4, Int32x4, int32x4, 4, int32_t) \
- V(UINT32X4, Uint32x4, uint32x4, 4, uint32_t) \
V(BOOL32X4, Bool32x4, bool32x4, 4, bool) \
V(INT16X8, Int16x8, int16x8, 8, int16_t) \
- V(UINT16X8, Uint16x8, uint16x8, 8, uint16_t) \
V(BOOL16X8, Bool16x8, bool16x8, 8, bool) \
V(INT8X16, Int8x16, int8x16, 16, int8_t) \
- V(UINT8X16, Uint8x16, uint8x16, 16, uint8_t) \
V(BOOL8X16, Bool8x16, bool8x16, 16, bool)
#define SIMD128_VALUE_CLASS(TYPE, Type, type, lane_count, lane_type) \
« no previous file with comments | « src/messages.js ('k') | src/objects-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698