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 327 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
338 F(ThrowUndefinedOrNullToObject, 1, 1) \ | 338 F(ThrowUndefinedOrNullToObject, 1, 1) \ |
339 F(Typeof, 1, 1) \ | 339 F(Typeof, 1, 1) \ |
340 F(UnwindAndFindExceptionHandler, 0, 1) | 340 F(UnwindAndFindExceptionHandler, 0, 1) |
341 | 341 |
342 #define FOR_EACH_INTRINSIC_LITERALS(F) \ | 342 #define FOR_EACH_INTRINSIC_LITERALS(F) \ |
343 F(CreateRegExpLiteral, 4, 1) \ | 343 F(CreateRegExpLiteral, 4, 1) \ |
344 F(CreateObjectLiteral, 4, 1) \ | 344 F(CreateObjectLiteral, 4, 1) \ |
345 F(CreateArrayLiteral, 4, 1) \ | 345 F(CreateArrayLiteral, 4, 1) \ |
346 F(CreateArrayLiteralStubBailout, 3, 1) | 346 F(CreateArrayLiteralStubBailout, 3, 1) |
347 | 347 |
348 | |
349 #define FOR_EACH_INTRINSIC_LIVEEDIT(F) \ | 348 #define FOR_EACH_INTRINSIC_LIVEEDIT(F) \ |
350 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ | 349 F(LiveEditFindSharedFunctionInfosForScript, 1, 1) \ |
351 F(LiveEditGatherCompileInfo, 2, 1) \ | 350 F(LiveEditGatherCompileInfo, 2, 1) \ |
352 F(LiveEditReplaceScript, 3, 1) \ | 351 F(LiveEditReplaceScript, 3, 1) \ |
353 F(LiveEditFunctionSourceUpdated, 1, 1) \ | 352 F(LiveEditFunctionSourceUpdated, 2, 1) \ |
354 F(LiveEditReplaceFunctionCode, 2, 1) \ | 353 F(LiveEditReplaceFunctionCode, 2, 1) \ |
| 354 F(LiveEditFixupScript, 2, 1) \ |
355 F(LiveEditFunctionSetScript, 2, 1) \ | 355 F(LiveEditFunctionSetScript, 2, 1) \ |
356 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ | 356 F(LiveEditReplaceRefToNestedFunction, 3, 1) \ |
357 F(LiveEditPatchFunctionPositions, 2, 1) \ | 357 F(LiveEditPatchFunctionPositions, 2, 1) \ |
358 F(LiveEditCheckAndDropActivations, 3, 1) \ | 358 F(LiveEditCheckAndDropActivations, 3, 1) \ |
359 F(LiveEditCompareStrings, 2, 1) \ | 359 F(LiveEditCompareStrings, 2, 1) \ |
360 F(LiveEditRestartFrame, 2, 1) | 360 F(LiveEditRestartFrame, 2, 1) |
361 | 361 |
362 #define FOR_EACH_INTRINSIC_MATHS(F) F(GenerateRandomNumbers, 0, 1) | 362 #define FOR_EACH_INTRINSIC_MATHS(F) F(GenerateRandomNumbers, 0, 1) |
363 | 363 |
364 #define FOR_EACH_INTRINSIC_MODULE(F) \ | 364 #define FOR_EACH_INTRINSIC_MODULE(F) \ |
(...skipping 771 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1136 | 1136 |
1137 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; | 1137 class DeclareGlobalsEvalFlag : public BitField<bool, 0, 1> {}; |
1138 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; | 1138 class DeclareGlobalsNativeFlag : public BitField<bool, 1, 1> {}; |
1139 STATIC_ASSERT(LANGUAGE_END == 2); | 1139 STATIC_ASSERT(LANGUAGE_END == 2); |
1140 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; | 1140 class DeclareGlobalsLanguageMode : public BitField<LanguageMode, 2, 1> {}; |
1141 | 1141 |
1142 } // namespace internal | 1142 } // namespace internal |
1143 } // namespace v8 | 1143 } // namespace v8 |
1144 | 1144 |
1145 #endif // V8_RUNTIME_RUNTIME_H_ | 1145 #endif // V8_RUNTIME_RUNTIME_H_ |
OLD | NEW |