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

Unified Diff: src/typing-asm.h

Issue 1473513004: Refactor VisitProperty, add starting point for SIMD.js support. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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 | « no previous file | src/typing-asm.cc » ('j') | src/typing-asm.cc » ('J')
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/typing-asm.h
diff --git a/src/typing-asm.h b/src/typing-asm.h
index 5f7a929a1e5bf99e7c8c1d4136ceb3a97e738d49..0f5306fa123e5f72228f29ee59bfd890e3d94aa4 100644
--- a/src/typing-asm.h
+++ b/src/typing-asm.h
@@ -22,6 +22,7 @@ class AsmTyper : public AstVisitor {
explicit AsmTyper(Isolate* isolate, Zone* zone, Script* script,
FunctionLiteral* root);
bool Validate();
+ void set_allow_simd(bool simd);
const char* error_message() { return error_message_; }
DEFINE_AST_VISITOR_SUBCLASS_MEMBERS();
@@ -31,6 +32,7 @@ class AsmTyper : public AstVisitor {
Script* script_;
FunctionLiteral* root_;
bool valid_;
+ bool allow_simd_;
// Information for bi-directional typing with a cap on nesting depth.
Type* expected_type_;
@@ -44,6 +46,10 @@ class AsmTyper : public AstVisitor {
ObjectTypeMap stdlib_types_;
ObjectTypeMap stdlib_heap_types_;
ObjectTypeMap stdlib_math_types_;
+#define V(NAME, Name, name, lane_count, lane_type) \
+ ObjectTypeMap stdlib_simd_##name##_types_;
+ SIMD128_TYPES(V)
+#undef V
// Map from Variable* to global/local variable Type*.
ZoneHashMap global_variable_type_;
@@ -71,6 +77,13 @@ class AsmTyper : public AstVisitor {
void VisitHeapAccess(Property* expr);
+ bool IsMathObject(Expression* expr);
+ bool IsSIMDObject(Expression* expr);
+ bool IsSIMDTypeObject(Expression* expr, const char* name);
+ bool IsStdlibObject(Expression* expr);
+
+ void VisitSIMDProperty(Property* expr);
+
int ElementShiftSize(Type* type);
Type* StorageType(Type* type);
« no previous file with comments | « no previous file | src/typing-asm.cc » ('j') | src/typing-asm.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698