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 942 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
953 F(SystemBreak, 0, 1) \ | 953 F(SystemBreak, 0, 1) \ |
954 F(SetFlags, 1, 1) \ | 954 F(SetFlags, 1, 1) \ |
955 F(Abort, 1, 1) \ | 955 F(Abort, 1, 1) \ |
956 F(AbortJS, 1, 1) \ | 956 F(AbortJS, 1, 1) \ |
957 F(NativeScriptsCount, 0, 1) \ | 957 F(NativeScriptsCount, 0, 1) \ |
958 F(GetV8Version, 0, 1) \ | 958 F(GetV8Version, 0, 1) \ |
959 F(DisassembleFunction, 1, 1) \ | 959 F(DisassembleFunction, 1, 1) \ |
960 F(TraceEnter, 0, 1) \ | 960 F(TraceEnter, 0, 1) \ |
961 F(TraceExit, 1, 1) \ | 961 F(TraceExit, 1, 1) \ |
962 F(HaveSameMap, 2, 1) \ | 962 F(HaveSameMap, 2, 1) \ |
| 963 F(InNewSpace, 1, 1) \ |
963 F(HasFastSmiElements, 1, 1) \ | 964 F(HasFastSmiElements, 1, 1) \ |
964 F(HasFastObjectElements, 1, 1) \ | 965 F(HasFastObjectElements, 1, 1) \ |
965 F(HasFastSmiOrObjectElements, 1, 1) \ | 966 F(HasFastSmiOrObjectElements, 1, 1) \ |
966 F(HasFastDoubleElements, 1, 1) \ | 967 F(HasFastDoubleElements, 1, 1) \ |
967 F(HasFastHoleyElements, 1, 1) \ | 968 F(HasFastHoleyElements, 1, 1) \ |
968 F(HasDictionaryElements, 1, 1) \ | 969 F(HasDictionaryElements, 1, 1) \ |
969 F(HasSloppyArgumentsElements, 1, 1) \ | 970 F(HasSloppyArgumentsElements, 1, 1) \ |
970 F(HasFixedTypedArrayElements, 1, 1) \ | 971 F(HasFixedTypedArrayElements, 1, 1) \ |
971 F(HasFastProperties, 1, 1) \ | 972 F(HasFastProperties, 1, 1) \ |
972 F(HasFixedUint8Elements, 1, 1) \ | 973 F(HasFixedUint8Elements, 1, 1) \ |
(...skipping 260 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1233 | 1234 |
1234 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1235 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1235 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1236 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1236 STATIC_ASSERT(LANGUAGE_END == 3); | 1237 STATIC_ASSERT(LANGUAGE_END == 3); |
1237 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; | 1238 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 2> {}; |
1238 | 1239 |
1239 } // namespace internal | 1240 } // namespace internal |
1240 } // namespace v8 | 1241 } // namespace v8 |
1241 | 1242 |
1242 #endif // V8_RUNTIME_RUNTIME_H_ | 1243 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |