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

Unified Diff: src/types.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/type-info.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/types.cc
diff --git a/src/types.cc b/src/types.cc
index 0087b9f231f8e162eb09ee1387c276f2a14bd08d..a904c6eefa7755cf2f10788f93637d9ea2ef86ea 100644
--- a/src/types.cc
+++ b/src/types.cc
@@ -228,13 +228,7 @@ TypeImpl<Config>::BitsetType::Lub(i::Map* map) {
}
case HEAP_NUMBER_TYPE:
return kNumber & kTaggedPointer;
- case FLOAT32X4_TYPE:
- case INT32X4_TYPE:
- case BOOL32X4_TYPE:
- case INT16X8_TYPE:
- case BOOL16X8_TYPE:
- case INT8X16_TYPE:
- case BOOL8X16_TYPE:
+ case SIMD128_VALUE_TYPE:
// TODO(bbudge): Add type bits for SIMD value types.
return kAny;
case JS_VALUE_TYPE:
« no previous file with comments | « src/type-info.cc ('k') | src/x64/code-stubs-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698