| 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_H_ | 5 #ifndef V8_RUNTIME_H_ |
| 6 #define V8_RUNTIME_H_ | 6 #define V8_RUNTIME_H_ |
| 7 | 7 |
| 8 #include "src/allocation.h" | 8 #include "src/allocation.h" |
| 9 #include "src/zone.h" | 9 #include "src/zone.h" |
| 10 | 10 |
| (...skipping 386 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 397 F(IsJSGlobalProxy, 1, 1) | 397 F(IsJSGlobalProxy, 1, 1) |
| 398 | 398 |
| 399 | 399 |
| 400 #define RUNTIME_FUNCTION_LIST_ALWAYS_3(F) \ | 400 #define RUNTIME_FUNCTION_LIST_ALWAYS_3(F) \ |
| 401 /* String and Regexp */ \ | 401 /* String and Regexp */ \ |
| 402 F(NumberToStringRT, 1, 1) \ | 402 F(NumberToStringRT, 1, 1) \ |
| 403 F(RegExpConstructResult, 3, 1) \ | 403 F(RegExpConstructResult, 3, 1) \ |
| 404 F(RegExpExecRT, 4, 1) \ | 404 F(RegExpExecRT, 4, 1) \ |
| 405 F(StringAdd, 2, 1) \ | 405 F(StringAdd, 2, 1) \ |
| 406 F(SubString, 3, 1) \ | 406 F(SubString, 3, 1) \ |
| 407 F(InternalizeString, 1, 1) \ |
| 407 F(StringCompare, 2, 1) \ | 408 F(StringCompare, 2, 1) \ |
| 408 F(StringCharCodeAtRT, 2, 1) \ | 409 F(StringCharCodeAtRT, 2, 1) \ |
| 409 F(GetFromCache, 2, 1) \ | 410 F(GetFromCache, 2, 1) \ |
| 410 \ | 411 \ |
| 411 /* Compilation */ \ | 412 /* Compilation */ \ |
| 412 F(CompileUnoptimized, 1, 1) \ | 413 F(CompileUnoptimized, 1, 1) \ |
| 413 F(CompileOptimized, 2, 1) \ | 414 F(CompileOptimized, 2, 1) \ |
| 414 F(TryInstallOptimizedCode, 1, 1) \ | 415 F(TryInstallOptimizedCode, 1, 1) \ |
| 415 F(NotifyDeoptimized, 1, 1) \ | 416 F(NotifyDeoptimized, 1, 1) \ |
| 416 F(NotifyStubFailure, 0, 1) \ | 417 F(NotifyStubFailure, 0, 1) \ |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 886 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 887 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
| 887 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 888 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
| 888 | 889 |
| 889 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 890 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 890 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 891 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 891 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; | 892 class DeclareGlobalsStrictMode: public BitField<StrictMode, 2, 1> {}; |
| 892 | 893 |
| 893 } } // namespace v8::internal | 894 } } // namespace v8::internal |
| 894 | 895 |
| 895 #endif // V8_RUNTIME_H_ | 896 #endif // V8_RUNTIME_H_ |
| OLD | NEW |