| 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 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 250 F(EnableAccessChecks, 1, 1) \ | 250 F(EnableAccessChecks, 1, 1) \ |
| 251 F(SetAccessorProperty, 6, 1) \ | 251 F(SetAccessorProperty, 6, 1) \ |
| 252 \ | 252 \ |
| 253 /* Dates */ \ | 253 /* Dates */ \ |
| 254 F(DateCurrentTime, 0, 1) \ | 254 F(DateCurrentTime, 0, 1) \ |
| 255 F(DateParseString, 2, 1) \ | 255 F(DateParseString, 2, 1) \ |
| 256 F(DateLocalTimezone, 1, 1) \ | 256 F(DateLocalTimezone, 1, 1) \ |
| 257 F(DateToUTC, 1, 1) \ | 257 F(DateToUTC, 1, 1) \ |
| 258 F(DateMakeDay, 2, 1) \ | 258 F(DateMakeDay, 2, 1) \ |
| 259 F(DateSetValue, 3, 1) \ | 259 F(DateSetValue, 3, 1) \ |
| 260 F(DateCacheVersion, 0, 1) \ |
| 260 \ | 261 \ |
| 261 /* Numbers */ \ | 262 /* Numbers */ \ |
| 262 \ | 263 \ |
| 263 /* Globals */ \ | 264 /* Globals */ \ |
| 264 F(CompileString, 2, 1) \ | 265 F(CompileString, 2, 1) \ |
| 265 F(GlobalPrint, 1, 1) \ | 266 F(GlobalPrint, 1, 1) \ |
| 266 \ | 267 \ |
| 267 /* Eval */ \ | 268 /* Eval */ \ |
| 268 F(GlobalReceiver, 1, 1) \ | 269 F(GlobalReceiver, 1, 1) \ |
| 269 F(IsAttachedGlobal, 1, 1) \ | 270 F(IsAttachedGlobal, 1, 1) \ |
| (...skipping 594 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 864 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; | 865 class AllocateDoubleAlignFlag: public BitField<bool, 0, 1> {}; |
| 865 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; | 866 class AllocateTargetSpace: public BitField<AllocationSpace, 1, 3> {}; |
| 866 | 867 |
| 867 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 868 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
| 868 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 869 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
| 869 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 870 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
| 870 | 871 |
| 871 } } // namespace v8::internal | 872 } } // namespace v8::internal |
| 872 | 873 |
| 873 #endif // V8_RUNTIME_H_ | 874 #endif // V8_RUNTIME_H_ |
| OLD | NEW |