| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef V8_RUNTIME_RUNTIME_H_ | 5 #ifndef V8_RUNTIME_RUNTIME_H_ |
| 6 #define V8_RUNTIME_RUNTIME_H_ | 6 #define V8_RUNTIME_RUNTIME_H_ |
| 7 | 7 |
| 8 #include <memory> | 8 #include <memory> |
| 9 | 9 |
| 10 #include "src/allocation.h" | 10 #include "src/allocation.h" |
| (...skipping 531 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 542 | 542 |
| 543 #define FOR_EACH_INTRINSIC_SYMBOL(F) \ | 543 #define FOR_EACH_INTRINSIC_SYMBOL(F) \ |
| 544 F(CreateSymbol, 1, 1) \ | 544 F(CreateSymbol, 1, 1) \ |
| 545 F(CreatePrivateSymbol, 1, 1) \ | 545 F(CreatePrivateSymbol, 1, 1) \ |
| 546 F(SymbolDescription, 1, 1) \ | 546 F(SymbolDescription, 1, 1) \ |
| 547 F(SymbolDescriptiveString, 1, 1) \ | 547 F(SymbolDescriptiveString, 1, 1) \ |
| 548 F(SymbolIsPrivate, 1, 1) | 548 F(SymbolIsPrivate, 1, 1) |
| 549 | 549 |
| 550 #define FOR_EACH_INTRINSIC_TEST(F) \ | 550 #define FOR_EACH_INTRINSIC_TEST(F) \ |
| 551 F(ConstructDouble, 2, 1) \ | 551 F(ConstructDouble, 2, 1) \ |
| 552 F(ConstructConsString, 2, 1) \ |
| 552 F(DeoptimizeFunction, 1, 1) \ | 553 F(DeoptimizeFunction, 1, 1) \ |
| 553 F(DeoptimizeNow, 0, 1) \ | 554 F(DeoptimizeNow, 0, 1) \ |
| 554 F(RunningInSimulator, 0, 1) \ | 555 F(RunningInSimulator, 0, 1) \ |
| 555 F(IsConcurrentRecompilationSupported, 0, 1) \ | 556 F(IsConcurrentRecompilationSupported, 0, 1) \ |
| 556 F(OptimizeFunctionOnNextCall, -1, 1) \ | 557 F(OptimizeFunctionOnNextCall, -1, 1) \ |
| 557 F(InterpretFunctionOnNextCall, 1, 1) \ | 558 F(InterpretFunctionOnNextCall, 1, 1) \ |
| 558 F(BaselineFunctionOnNextCall, 1, 1) \ | 559 F(BaselineFunctionOnNextCall, 1, 1) \ |
| 559 F(OptimizeOsr, -1, 1) \ | 560 F(OptimizeOsr, -1, 1) \ |
| 560 F(NeverOptimizeFunction, 1, 1) \ | 561 F(NeverOptimizeFunction, 1, 1) \ |
| 561 F(GetOptimizationStatus, -1, 1) \ | 562 F(GetOptimizationStatus, -1, 1) \ |
| (...skipping 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 854 kMaybeDeopted = 1 << 3, | 855 kMaybeDeopted = 1 << 3, |
| 855 kOptimized = 1 << 4, | 856 kOptimized = 1 << 4, |
| 856 kTurboFanned = 1 << 5, | 857 kTurboFanned = 1 << 5, |
| 857 kInterpreted = 1 << 6, | 858 kInterpreted = 1 << 6, |
| 858 }; | 859 }; |
| 859 | 860 |
| 860 } // namespace internal | 861 } // namespace internal |
| 861 } // namespace v8 | 862 } // namespace v8 |
| 862 | 863 |
| 863 #endif // V8_RUNTIME_RUNTIME_H_ | 864 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |