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 "src/allocation.h" | 8 #include "src/allocation.h" |
9 #include "src/objects.h" | 9 #include "src/objects.h" |
10 #include "src/unicode.h" | 10 #include "src/unicode.h" |
(...skipping 519 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 F(ShiftRight_Strong, 2, 1) \ | 530 F(ShiftRight_Strong, 2, 1) \ |
531 F(ShiftRightLogical, 2, 1) \ | 531 F(ShiftRightLogical, 2, 1) \ |
532 F(ShiftRightLogical_Strong, 2, 1) \ | 532 F(ShiftRightLogical_Strong, 2, 1) \ |
533 F(BitwiseAnd, 2, 1) \ | 533 F(BitwiseAnd, 2, 1) \ |
534 F(BitwiseAnd_Strong, 2, 1) \ | 534 F(BitwiseAnd_Strong, 2, 1) \ |
535 F(BitwiseOr, 2, 1) \ | 535 F(BitwiseOr, 2, 1) \ |
536 F(BitwiseOr_Strong, 2, 1) \ | 536 F(BitwiseOr_Strong, 2, 1) \ |
537 F(BitwiseXor, 2, 1) \ | 537 F(BitwiseXor, 2, 1) \ |
538 F(BitwiseXor_Strong, 2, 1) | 538 F(BitwiseXor_Strong, 2, 1) |
539 | 539 |
540 #define FOR_EACH_INTRINSIC_PROXY(F) \ | 540 #define FOR_EACH_INTRINSIC_PROXY(F) \ |
541 F(IsJSProxy, 1, 1) \ | 541 F(IsJSProxy, 1, 1) \ |
542 F(JSProxyCall, -1 /* >= 2 */, 1) \ | 542 F(JSProxyCall, -1 /* >= 2 */, 1) \ |
543 F(GetHandler, 1, 1) \ | 543 F(JSProxyConstruct, -1 /* >= 3 */, 1) \ |
| 544 F(GetHandler, 1, 1) \ |
544 F(RevokeProxy, 1, 1) | 545 F(RevokeProxy, 1, 1) |
545 | 546 |
546 #define FOR_EACH_INTRINSIC_REGEXP(F) \ | 547 #define FOR_EACH_INTRINSIC_REGEXP(F) \ |
547 F(StringReplaceGlobalRegExpWithString, 4, 1) \ | 548 F(StringReplaceGlobalRegExpWithString, 4, 1) \ |
548 F(StringSplit, 3, 1) \ | 549 F(StringSplit, 3, 1) \ |
549 F(RegExpExec, 4, 1) \ | 550 F(RegExpExec, 4, 1) \ |
550 F(RegExpFlags, 1, 1) \ | 551 F(RegExpFlags, 1, 1) \ |
551 F(RegExpSource, 1, 1) \ | 552 F(RegExpSource, 1, 1) \ |
552 F(RegExpConstructResult, 3, 1) \ | 553 F(RegExpConstructResult, 3, 1) \ |
553 F(RegExpInitializeAndCompile, 3, 1) \ | 554 F(RegExpInitializeAndCompile, 3, 1) \ |
(...skipping 695 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1249 | 1250 |
1250 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1251 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1251 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1252 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1252 STATIC_ASSERT(LANGUAGE_END == 3); | 1253 STATIC_ASSERT(LANGUAGE_END == 3); |
1253 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1254 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1254 | 1255 |
1255 } // namespace internal | 1256 } // namespace internal |
1256 } // namespace v8 | 1257 } // namespace v8 |
1257 | 1258 |
1258 #endif // V8_RUNTIME_RUNTIME_H_ | 1259 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |