| Index: src/runtime.h
|
| diff --git a/src/runtime.h b/src/runtime.h
|
| index e015a91e377f9deb149f5c38e2af913916d9e6b8..af6c112093e9c7fe44428cbec7578277f6eacbd2 100644
|
| --- a/src/runtime.h
|
| +++ b/src/runtime.h
|
| @@ -86,10 +86,9 @@ namespace internal {
|
| F(GetConstructorDelegate, 1, 1) \
|
| F(NewArgumentsFast, 3, 1) \
|
| F(NewStrictArgumentsFast, 3, 1) \
|
| - F(LazyCompile, 1, 1) \
|
| - F(LazyRecompile, 1, 1) \
|
| - F(ConcurrentRecompile, 1, 1) \
|
| - F(TryInstallRecompiledCode, 1, 1) \
|
| + F(CompileUnoptimized, 1, 1) \
|
| + F(CompileOptimized, 2, 1) \
|
| + F(TryInstallOptimizedCode, 1, 1) \
|
| F(NotifyDeoptimized, 1, 1) \
|
| F(NotifyStubFailure, 0, 1) \
|
| F(DeoptimizeFunction, 1, 1) \
|
| @@ -101,7 +100,7 @@ namespace internal {
|
| F(GetOptimizationStatus, -1, 1) \
|
| F(GetOptimizationCount, 1, 1) \
|
| F(UnblockConcurrentRecompilation, 0, 1) \
|
| - F(CompileForOnStackReplacement, 2, 1) \
|
| + F(CompileForOnStackReplacement, 1, 1) \
|
| F(SetAllocationTimeout, 2, 1) \
|
| F(AllocateInNewSpace, 1, 1) \
|
| F(AllocateInTargetSpace, 2, 1) \
|
| @@ -275,6 +274,7 @@ namespace internal {
|
| \
|
| /* Eval */ \
|
| F(GlobalReceiver, 1, 1) \
|
| + F(IsAttachedGlobal, 1, 1) \
|
| F(ResolvePossiblyDirectEval, 5, 2) \
|
| \
|
| F(SetProperty, -1 /* 4 or 5 */, 1) \
|
|
|