| Index: runtime/vm/aot_optimizer.h
|
| diff --git a/runtime/vm/aot_optimizer.h b/runtime/vm/aot_optimizer.h
|
| index 690255217de6a08af28cb584f147984806fe21ae..35683684e9412ab0c5f45abb90c10efb0ff66d3d 100644
|
| --- a/runtime/vm/aot_optimizer.h
|
| +++ b/runtime/vm/aot_optimizer.h
|
| @@ -70,11 +70,11 @@ class AotOptimizer : public FlowGraphVisitor {
|
| bool TryReplaceWithEqualityOp(InstanceCallInstr* call, Token::Kind op_kind);
|
| bool TryReplaceWithRelationalOp(InstanceCallInstr* call, Token::Kind op_kind);
|
|
|
| + bool TryInlineFieldAccess(InstanceCallInstr* call);
|
| bool TryInlineInstanceGetter(InstanceCallInstr* call);
|
| bool TryInlineInstanceSetter(InstanceCallInstr* call,
|
| const ICData& unary_ic_data);
|
|
|
| - bool TryInlineInstanceMethod(InstanceCallInstr* call);
|
| bool TryInlineFloat32x4Constructor(StaticCallInstr* call,
|
| MethodRecognizer::Kind recognized_kind);
|
| bool TryInlineFloat64x2Constructor(StaticCallInstr* call,
|
| @@ -91,8 +91,6 @@ class AotOptimizer : public FlowGraphVisitor {
|
| bool TypeCheckAsClassEquality(const AbstractType& type);
|
| void ReplaceWithTypeCast(InstanceCallInstr* instr);
|
|
|
| - bool TryReplaceInstanceCallWithInline(InstanceCallInstr* call);
|
| -
|
| // Insert a check of 'to_check' determined by 'unary_checks'. If the
|
| // check fails it will deoptimize to 'deopt_id' using the deoptimization
|
| // environment 'deopt_environment'. The check is inserted immediately
|
|
|