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

Unified Diff: src/ast.cc

Issue 90643003: Experimental implementation: Exposing SIMD instructions into JavaScript Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 1 month 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/api.cc ('k') | src/bootstrapper.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/ast.cc
diff --git a/src/ast.cc b/src/ast.cc
index 3ca1449409466af29bca87c184efa14b6c381a4b..ab03f2ab0b4e74c2eab02083b96f865a614b9683 100644
--- a/src/ast.cc
+++ b/src/ast.cc
@@ -761,6 +761,12 @@ Handle<JSObject> Call::GetPrototypeForPrimitiveCheck(
case NUMBER_CHECK:
function = native_context->number_function();
break;
+ case FLOAT32x4_CHECK:
+ function = native_context->float32x4_function();
+ break;
+ case INT32x4_CHECK:
+ function = native_context->int32x4_function();
+ break;
case BOOLEAN_CHECK:
function = native_context->boolean_function();
break;
« no previous file with comments | « src/api.cc ('k') | src/bootstrapper.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698