OLD | NEW |
1 // Copyright 2010 the V8 project authors. All rights reserved. | 1 // Copyright 2010 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 292 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
303 F(TraceEnter, 0, 1) \ | 303 F(TraceEnter, 0, 1) \ |
304 F(TraceExit, 1, 1) \ | 304 F(TraceExit, 1, 1) \ |
305 F(Abort, 2, 1) \ | 305 F(Abort, 2, 1) \ |
306 /* Logging */ \ | 306 /* Logging */ \ |
307 F(Log, 2, 1) \ | 307 F(Log, 2, 1) \ |
308 /* ES5 */ \ | 308 /* ES5 */ \ |
309 F(LocalKeys, 1, 1) \ | 309 F(LocalKeys, 1, 1) \ |
310 /* Cache suport */ \ | 310 /* Cache suport */ \ |
311 F(GetFromCache, 2, 1) \ | 311 F(GetFromCache, 2, 1) \ |
312 \ | 312 \ |
| 313 /* Message objects */ \ |
| 314 F(NewMessageObject, 2, 1) \ |
| 315 F(MessageGetType, 1, 1) \ |
| 316 F(MessageGetArguments, 1, 1) \ |
| 317 F(MessageGetStartPosition, 1, 1) \ |
| 318 F(MessageGetScript, 1, 1) \ |
| 319 \ |
313 /* Pseudo functions - handled as macros by parser */ \ | 320 /* Pseudo functions - handled as macros by parser */ \ |
314 F(IS_VAR, 1, 1) | 321 F(IS_VAR, 1, 1) |
315 | 322 |
316 #ifdef ENABLE_DEBUGGER_SUPPORT | 323 #ifdef ENABLE_DEBUGGER_SUPPORT |
317 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ | 324 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ |
318 /* Debugger support*/ \ | 325 /* Debugger support*/ \ |
319 F(DebugBreak, 0, 1) \ | 326 F(DebugBreak, 0, 1) \ |
320 F(SetDebugEventListener, 2, 1) \ | 327 F(SetDebugEventListener, 2, 1) \ |
321 F(Break, 0, 1) \ | 328 F(Break, 0, 1) \ |
322 F(DebugGetPropertyDetails, 2, 1) \ | 329 F(DebugGetPropertyDetails, 2, 1) \ |
(...skipping 227 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
550 int position); | 557 int position); |
551 | 558 |
552 // Helper functions used stubs. | 559 // Helper functions used stubs. |
553 static void PerformGC(Object* result); | 560 static void PerformGC(Object* result); |
554 }; | 561 }; |
555 | 562 |
556 | 563 |
557 } } // namespace v8::internal | 564 } } // namespace v8::internal |
558 | 565 |
559 #endif // V8_RUNTIME_H_ | 566 #endif // V8_RUNTIME_H_ |
OLD | NEW |