Index: runtime/vm/flow_graph_optimizer.h |
diff --git a/runtime/vm/flow_graph_optimizer.h b/runtime/vm/flow_graph_optimizer.h |
index cfa79085ecdd41d317bbb37320dcf8a671dc630c..f958b001e0c88d3ceda643bc8b20e707077d4a14 100644 |
--- a/runtime/vm/flow_graph_optimizer.h |
+++ b/runtime/vm/flow_graph_optimizer.h |
@@ -89,6 +89,8 @@ class FlowGraphOptimizer : public FlowGraphVisitor { |
bool TryInlineInstanceMethod(InstanceCallInstr* call); |
bool TryInlineFloat32x4Method(InstanceCallInstr* call, |
MethodRecognizer::Kind recognized_kind); |
+ bool TryInlineUint32x4Method(InstanceCallInstr* call, |
+ MethodRecognizer::Kind recognized_kind); |
void ReplaceWithInstanceOf(InstanceCallInstr* instr); |
void ReplaceWithTypeCast(InstanceCallInstr* instr); |
@@ -142,6 +144,8 @@ class FlowGraphOptimizer : public FlowGraphVisitor { |
bool InlineFloat32x4Getter(InstanceCallInstr* call, |
MethodRecognizer::Kind getter); |
+ bool InlineUint32x4Getter(InstanceCallInstr* call, |
+ MethodRecognizer::Kind getter); |
void InlineImplicitInstanceGetter(InstanceCallInstr* call); |
void InlineArrayLengthGetter(InstanceCallInstr* call, |