| Index: src/hydrogen.h
|
| diff --git a/src/hydrogen.h b/src/hydrogen.h
|
| index a9c0d3204aff09ce3005e2006b61337e29366742..74b05ee45ee348d32ac4a173b77f4161ddc98940 100644
|
| --- a/src/hydrogen.h
|
| +++ b/src/hydrogen.h
|
| @@ -2227,6 +2227,14 @@ class HOptimizedGraphBuilder : public HGraphBuilder, public AstVisitor {
|
| Handle<Map> receiver_map,
|
| CheckType check_type);
|
| bool TryInlineBuiltinFunctionCall(Call* expr, bool drop_extra);
|
| + bool TryInlineApiMethodCall(
|
| + Call* expr, HValue* receiver, Handle<Map> receiver_map);
|
| + bool TryInlineApiFunctionCall(Call* expr, HValue* receiver, bool drop_extra);
|
| + bool TryInlineApiCall(Call* expr,
|
| + HValue* receiver,
|
| + Handle<Map> receiver_map,
|
| + bool drop_extra,
|
| + bool is_function_call);
|
|
|
| // If --trace-inlining, print a line of the inlining trace. Inlining
|
| // succeeded if the reason string is NULL and failed if there is a
|
|
|