| 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 315 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 326 F(ThrowCalledOnNullOrUndefined, 1, 1) \ | 326 F(ThrowCalledOnNullOrUndefined, 1, 1) \ |
| 327 F(ThrowConstructedNonConstructable, 1, 1) \ | 327 F(ThrowConstructedNonConstructable, 1, 1) \ |
| 328 F(ThrowDerivedConstructorReturnedNonObject, 0, 1) \ | 328 F(ThrowDerivedConstructorReturnedNonObject, 0, 1) \ |
| 329 F(ThrowGeneratorRunning, 0, 1) \ | 329 F(ThrowGeneratorRunning, 0, 1) \ |
| 330 F(ThrowIllegalInvocation, 0, 1) \ | 330 F(ThrowIllegalInvocation, 0, 1) \ |
| 331 F(ThrowIncompatibleMethodReceiver, 2, 1) \ | 331 F(ThrowIncompatibleMethodReceiver, 2, 1) \ |
| 332 F(ThrowInvalidHint, 1, 1) \ | 332 F(ThrowInvalidHint, 1, 1) \ |
| 333 F(ThrowInvalidStringLength, 0, 1) \ | 333 F(ThrowInvalidStringLength, 0, 1) \ |
| 334 F(ThrowIteratorResultNotAnObject, 1, 1) \ | 334 F(ThrowIteratorResultNotAnObject, 1, 1) \ |
| 335 F(ThrowSymbolIteratorInvalid, 0, 1) \ | 335 F(ThrowSymbolIteratorInvalid, 0, 1) \ |
| 336 F(ThrowSymbolAsyncIteratorInvalid, 0, 1) \ |
| 336 F(ThrowNotGeneric, 1, 1) \ | 337 F(ThrowNotGeneric, 1, 1) \ |
| 337 F(ThrowReferenceError, 1, 1) \ | 338 F(ThrowReferenceError, 1, 1) \ |
| 338 F(ThrowStackOverflow, 0, 1) \ | 339 F(ThrowStackOverflow, 0, 1) \ |
| 339 F(ThrowTypeError, -1 /* >= 1 */, 1) \ | 340 F(ThrowTypeError, -1 /* >= 1 */, 1) \ |
| 340 F(ThrowUndefinedOrNullToObject, 1, 1) \ | 341 F(ThrowUndefinedOrNullToObject, 1, 1) \ |
| 341 F(Typeof, 1, 1) \ | 342 F(Typeof, 1, 1) \ |
| 342 F(UnwindAndFindExceptionHandler, 0, 1) \ | 343 F(UnwindAndFindExceptionHandler, 0, 1) \ |
| 343 F(AllowDynamicFunction, 1, 1) | 344 F(AllowDynamicFunction, 1, 1) \ |
| 345 F(CreateAsyncFromSyncIterator, 1, 1) |
| 344 | 346 |
| 345 #define FOR_EACH_INTRINSIC_LITERALS(F) \ | 347 #define FOR_EACH_INTRINSIC_LITERALS(F) \ |
| 346 F(CreateRegExpLiteral, 4, 1) \ | 348 F(CreateRegExpLiteral, 4, 1) \ |
| 347 F(CreateObjectLiteral, 4, 1) \ | 349 F(CreateObjectLiteral, 4, 1) \ |
| 348 F(CreateArrayLiteral, 4, 1) \ | 350 F(CreateArrayLiteral, 4, 1) \ |
| 349 F(CreateArrayLiteralStubBailout, 3, 1) | 351 F(CreateArrayLiteralStubBailout, 3, 1) |
| 350 | 352 |
| 351 #define FOR_EACH_INTRINSIC_LIVEEDIT(F) \ | 353 #define FOR_EACH_INTRINSIC_LIVEEDIT(F) \ |
| 352 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ | 354 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ |
| 353 F(LiveEditGatherCompileInfo, 2, 1) \ | 355 F(LiveEditGatherCompileInfo, 2, 1) \ |
| (...skipping 796 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1150 | 1152 |
| 1151 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1153 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
| 1152 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1154 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
| 1153 STATIC_ASSERT(LANGUAGE_END == 2); | 1155 STATIC_ASSERT(LANGUAGE_END == 2); |
| 1154 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1156 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
| 1155 | 1157 |
| 1156 } // namespace internal | 1158 } // namespace internal |
| 1157 } // namespace v8 | 1159 } // namespace v8 |
| 1158 | 1160 |
| 1159 #endif // V8_RUNTIME_RUNTIME_H_ | 1161 #endif // V8_RUNTIME_RUNTIME_H_ |
| OLD | NEW |