| OLD | NEW |
| 1 // Copyright 2012 the V8 project authors. All rights reserved. | 1 // Copyright 2012 the V8 project authors. All rights reserved. |
| 2 // Redistribution and use in source and binary forms, with or without | 2 // Redistribution and use in source and binary forms, with or without |
| 3 // modification, are permitted provided that the following conditions are | 3 // modification, are permitted provided that the following conditions are |
| 4 // met: | 4 // met: |
| 5 // | 5 // |
| 6 // * Redistributions of source code must retain the above copyright | 6 // * Redistributions of source code must retain the above copyright |
| 7 // notice, this list of conditions and the following disclaimer. | 7 // notice, this list of conditions and the following disclaimer. |
| 8 // * Redistributions in binary form must reproduce the above | 8 // * Redistributions in binary form must reproduce the above |
| 9 // copyright notice, this list of conditions and the following | 9 // copyright notice, this list of conditions and the following |
| 10 // disclaimer in the documentation and/or other materials provided | 10 // disclaimer in the documentation and/or other materials provided |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 294 F(EstimateNumberOfElements, 1, 1) \ | 294 F(EstimateNumberOfElements, 1, 1) \ |
| 295 F(ArrayConstructor, -1, 1) \ | 295 F(ArrayConstructor, -1, 1) \ |
| 296 F(InternalArrayConstructor, -1, 1) \ | 296 F(InternalArrayConstructor, -1, 1) \ |
| 297 \ | 297 \ |
| 298 /* Getters and Setters */ \ | 298 /* Getters and Setters */ \ |
| 299 F(LookupAccessor, 3, 1) \ | 299 F(LookupAccessor, 3, 1) \ |
| 300 \ | 300 \ |
| 301 /* Literals */ \ | 301 /* Literals */ \ |
| 302 F(MaterializeRegExpLiteral, 4, 1)\ | 302 F(MaterializeRegExpLiteral, 4, 1)\ |
| 303 F(CreateObjectLiteral, 4, 1) \ | 303 F(CreateObjectLiteral, 4, 1) \ |
| 304 F(CreateArrayLiteral, 3, 1) \ | 304 F(CreateArrayLiteral, 4, 1) \ |
| 305 F(CreateArrayLiteralStubBailout, 3, 1) \ |
| 305 \ | 306 \ |
| 306 /* Harmony generators */ \ | 307 /* Harmony generators */ \ |
| 307 F(CreateJSGeneratorObject, 0, 1) \ | 308 F(CreateJSGeneratorObject, 0, 1) \ |
| 308 F(SuspendJSGeneratorObject, 1, 1) \ | 309 F(SuspendJSGeneratorObject, 1, 1) \ |
| 309 F(ResumeJSGeneratorObject, 3, 1) \ | 310 F(ResumeJSGeneratorObject, 3, 1) \ |
| 310 F(ThrowGeneratorStateError, 1, 1) \ | 311 F(ThrowGeneratorStateError, 1, 1) \ |
| 311 \ | 312 \ |
| 312 /* ES5 */ \ | 313 /* ES5 */ \ |
| 313 F(ObjectFreeze, 1, 1) \ | 314 F(ObjectFreeze, 1, 1) \ |
| 314 \ | 315 \ |
| (...skipping 533 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 848 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 849 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
| 849 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 850 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
| 850 | 851 |
| 851 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 852 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 852 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 853 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 853 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 854 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 854 | 855 |
| 855 } } // namespace v8::internal | 856 } } // namespace v8::internal |
| 856 | 857 |
| 857 #endif // V8_RUNTIME_H_ | 858 #endif // V8_RUNTIME_H_ |
| OLD | NEW |