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 279 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
290 /* Debugging */ \ | 290 /* Debugging */ \ |
291 F(DebugPrint, 1, 1) \ | 291 F(DebugPrint, 1, 1) \ |
292 F(DebugTrace, 0, 1) \ | 292 F(DebugTrace, 0, 1) \ |
293 F(TraceEnter, 0, 1) \ | 293 F(TraceEnter, 0, 1) \ |
294 F(TraceExit, 1, 1) \ | 294 F(TraceExit, 1, 1) \ |
295 F(Abort, 2, 1) \ | 295 F(Abort, 2, 1) \ |
296 /* Logging */ \ | 296 /* Logging */ \ |
297 F(Log, 2, 1) \ | 297 F(Log, 2, 1) \ |
298 /* ES5 */ \ | 298 /* ES5 */ \ |
299 F(LocalKeys, 1, 1) \ | 299 F(LocalKeys, 1, 1) \ |
300 /* Handle scopes */ \ | |
301 F(DeleteHandleScopeExtensions, 0, 1) \ | |
302 /* Cache suport */ \ | 300 /* Cache suport */ \ |
303 F(GetFromCache, 2, 1) \ | 301 F(GetFromCache, 2, 1) \ |
304 \ | 302 \ |
305 /* Pseudo functions - handled as macros by parser */ \ | 303 /* Pseudo functions - handled as macros by parser */ \ |
306 F(IS_VAR, 1, 1) | 304 F(IS_VAR, 1, 1) |
307 | 305 |
308 #ifdef ENABLE_DEBUGGER_SUPPORT | 306 #ifdef ENABLE_DEBUGGER_SUPPORT |
309 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ | 307 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ |
310 /* Debugger support*/ \ | 308 /* Debugger support*/ \ |
311 F(DebugBreak, 0, 1) \ | 309 F(DebugBreak, 0, 1) \ |
(...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
529 int position); | 527 int position); |
530 | 528 |
531 // Helper functions used stubs. | 529 // Helper functions used stubs. |
532 static void PerformGC(Object* result); | 530 static void PerformGC(Object* result); |
533 }; | 531 }; |
534 | 532 |
535 | 533 |
536 } } // namespace v8::internal | 534 } } // namespace v8::internal |
537 | 535 |
538 #endif // V8_RUNTIME_H_ | 536 #endif // V8_RUNTIME_H_ |
OLD | NEW |