| Index: src/compiler/js-graph.h
|
| diff --git a/src/compiler/js-graph.h b/src/compiler/js-graph.h
|
| index f42284f23a6646b44a312ffd064083517067bc81..9d6f27dbe6af9be386d7576ec18c1accfc75a302 100644
|
| --- a/src/compiler/js-graph.h
|
| +++ b/src/compiler/js-graph.h
|
| @@ -42,7 +42,10 @@ class JSGraph : public ZoneObject {
|
| Node* AllocateInNewSpaceStubConstant();
|
| Node* AllocateInOldSpaceStubConstant();
|
| Node* ToNumberBuiltinConstant();
|
| - Node* CEntryStubConstant(int result_size);
|
| + Node* CEntryStubConstant(int result_size,
|
| + SaveFPRegsMode save_doubles = kDontSaveFPRegs,
|
| + ArgvMode argv_mode = kArgvOnStack,
|
| + bool builtin_exit_frame = false);
|
| Node* EmptyFixedArrayConstant();
|
| Node* EmptyLiteralsArrayConstant();
|
| Node* EmptyStringConstant();
|
| @@ -155,6 +158,7 @@ class JSGraph : public ZoneObject {
|
| kAllocateInOldSpaceStubConstant,
|
| kToNumberBuiltinConstant,
|
| kCEntryStubConstant,
|
| + kCEntryStubWithBuiltinExitFrameConstant,
|
| kEmptyFixedArrayConstant,
|
| kEmptyLiteralsArrayConstant,
|
| kEmptyStringConstant,
|
|
|