Index: src/hydrogen.h |
diff --git a/src/hydrogen.h b/src/hydrogen.h |
index 9303b964ef7ae01fceac2415020e9accd4897c35..8e37afb9b2546f02b7fef1e5c631bc5340fbdabf 100644 |
--- a/src/hydrogen.h |
+++ b/src/hydrogen.h |
@@ -2223,6 +2223,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 |