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

Unified Diff: runtime/vm/flow_graph_optimizer.h

Issue 20125005: Allow SIMD types to be used on mips (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 5 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 | « no previous file | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_optimizer.h
diff --git a/runtime/vm/flow_graph_optimizer.h b/runtime/vm/flow_graph_optimizer.h
index ce18d6b8fba29a806bb4b4488af0ac44d16bfcd3..1f18c51692212d45ce9aa99ad7878790e077115d 100644
--- a/runtime/vm/flow_graph_optimizer.h
+++ b/runtime/vm/flow_graph_optimizer.h
@@ -87,6 +87,10 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
const ICData& unary_ic_data);
bool TryInlineInstanceMethod(InstanceCallInstr* call);
+ bool TryInlineFloat32x4Constructor(StaticCallInstr* call,
+ MethodRecognizer::Kind recognized_kind);
+ bool TryInlineUint32x4Constructor(StaticCallInstr* call,
+ MethodRecognizer::Kind recognized_kind);
bool TryInlineFloat32x4Method(InstanceCallInstr* call,
MethodRecognizer::Kind recognized_kind);
bool TryInlineUint32x4Method(InstanceCallInstr* call,
@@ -148,7 +152,10 @@ class FlowGraphOptimizer : public FlowGraphVisitor {
MethodRecognizer::Kind getter);
bool InlineUint32x4Getter(InstanceCallInstr* call,
MethodRecognizer::Kind getter);
-
+ bool InlineFloat32x4BinaryOp(InstanceCallInstr* call,
+ Token::Kind op_kind);
+ bool InlineUint32x4BinaryOp(InstanceCallInstr* call,
+ Token::Kind op_kind);
void InlineImplicitInstanceGetter(InstanceCallInstr* call);
void InlineArrayLengthGetter(InstanceCallInstr* call,
intptr_t length_offset,
« no previous file with comments | « no previous file | runtime/vm/flow_graph_optimizer.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698