| 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 /* Eval */ \ | 278 /* Eval */ \ |
| 279 F(GlobalReceiver, 1, 1) \ | 279 F(GlobalReceiver, 1, 1) \ |
| 280 F(IsAttachedGlobal, 1, 1) \ | 280 F(IsAttachedGlobal, 1, 1) \ |
| 281 F(ResolvePossiblyDirectEval, 5, 2) \ | 281 F(ResolvePossiblyDirectEval, 5, 2) \ |
| 282 \ | 282 \ |
| 283 F(SetProperty, -1 /* 4 or 5 */, 1) \ | 283 F(SetProperty, -1 /* 4 or 5 */, 1) \ |
| 284 F(DefineOrRedefineDataProperty, 4, 1) \ | 284 F(DefineOrRedefineDataProperty, 4, 1) \ |
| 285 F(DefineOrRedefineAccessorProperty, 5, 1) \ | 285 F(DefineOrRedefineAccessorProperty, 5, 1) \ |
| 286 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ | 286 F(IgnoreAttributesAndSetProperty, -1 /* 3 or 4 */, 1) \ |
| 287 F(GetDataProperty, 2, 1) \ | 287 F(GetDataProperty, 2, 1) \ |
| 288 F(SetHiddenProperty, 3, 1) \ |
| 288 \ | 289 \ |
| 289 /* Arrays */ \ | 290 /* Arrays */ \ |
| 290 F(RemoveArrayHoles, 2, 1) \ | 291 F(RemoveArrayHoles, 2, 1) \ |
| 291 F(GetArrayKeys, 2, 1) \ | 292 F(GetArrayKeys, 2, 1) \ |
| 292 F(MoveArrayContents, 2, 1) \ | 293 F(MoveArrayContents, 2, 1) \ |
| 293 F(EstimateNumberOfElements, 1, 1) \ | 294 F(EstimateNumberOfElements, 1, 1) \ |
| 294 F(ArrayConstructor, -1, 1) \ | 295 F(ArrayConstructor, -1, 1) \ |
| 295 F(InternalArrayConstructor, -1, 1) \ | 296 F(InternalArrayConstructor, -1, 1) \ |
| 296 \ | 297 \ |
| 297 /* Getters and Setters */ \ | 298 /* Getters and Setters */ \ |
| (...skipping 575 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 873 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 874 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
| 874 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 875 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
| 875 | 876 |
| 876 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 877 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 877 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 878 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 878 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 879 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 879 | 880 |
| 880 } } // namespace v8::internal | 881 } } // namespace v8::internal |
| 881 | 882 |
| 882 #endif // V8_RUNTIME_H_ | 883 #endif // V8_RUNTIME_H_ |
| OLD | NEW |