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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 F(MaterializeRegExpLiteral, 4, 1)\ | 290 F(MaterializeRegExpLiteral, 4, 1)\ |
291 F(CreateObjectLiteral, 4, 1) \ | 291 F(CreateObjectLiteral, 4, 1) \ |
292 F(CreateObjectLiteralShallow, 4, 1) \ | 292 F(CreateObjectLiteralShallow, 4, 1) \ |
293 F(CreateArrayLiteral, 3, 1) \ | 293 F(CreateArrayLiteral, 3, 1) \ |
294 F(CreateArrayLiteralShallow, 3, 1) \ | 294 F(CreateArrayLiteralShallow, 3, 1) \ |
295 \ | 295 \ |
296 /* Harmony modules */ \ | 296 /* Harmony modules */ \ |
297 F(IsJSModule, 1, 1) \ | 297 F(IsJSModule, 1, 1) \ |
298 \ | 298 \ |
299 /* Harmony symbols */ \ | 299 /* Harmony symbols */ \ |
300 F(CreateSymbol, 0, 1) \ | 300 F(CreateSymbol, 1, 1) \ |
| 301 F(SymbolName, 1, 1) \ |
301 \ | 302 \ |
302 /* Harmony proxies */ \ | 303 /* Harmony proxies */ \ |
303 F(CreateJSProxy, 2, 1) \ | 304 F(CreateJSProxy, 2, 1) \ |
304 F(CreateJSFunctionProxy, 4, 1) \ | 305 F(CreateJSFunctionProxy, 4, 1) \ |
305 F(IsJSProxy, 1, 1) \ | 306 F(IsJSProxy, 1, 1) \ |
306 F(IsJSFunctionProxy, 1, 1) \ | 307 F(IsJSFunctionProxy, 1, 1) \ |
307 F(GetHandler, 1, 1) \ | 308 F(GetHandler, 1, 1) \ |
308 F(GetCallTrap, 1, 1) \ | 309 F(GetCallTrap, 1, 1) \ |
309 F(GetConstructTrap, 1, 1) \ | 310 F(GetConstructTrap, 1, 1) \ |
310 F(Fix, 1, 1) \ | 311 F(Fix, 1, 1) \ |
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 //--------------------------------------------------------------------------- | 716 //--------------------------------------------------------------------------- |
716 // Constants used by interface to runtime functions. | 717 // Constants used by interface to runtime functions. |
717 | 718 |
718 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; | 719 class DeclareGlobalsEvalFlag: public BitField<bool, 0, 1> {}; |
719 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; | 720 class DeclareGlobalsNativeFlag: public BitField<bool, 1, 1> {}; |
720 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; | 721 class DeclareGlobalsLanguageMode: public BitField<LanguageMode, 2, 2> {}; |
721 | 722 |
722 } } // namespace v8::internal | 723 } } // namespace v8::internal |
723 | 724 |
724 #endif // V8_RUNTIME_H_ | 725 #endif // V8_RUNTIME_H_ |
OLD | NEW |