| 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 294 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 305 F(TraceEnter, 0, 1) \ | 305 F(TraceEnter, 0, 1) \ |
| 306 F(TraceExit, 1, 1) \ | 306 F(TraceExit, 1, 1) \ |
| 307 F(Abort, 2, 1) \ | 307 F(Abort, 2, 1) \ |
| 308 /* Logging */ \ | 308 /* Logging */ \ |
| 309 F(Log, 2, 1) \ | 309 F(Log, 2, 1) \ |
| 310 /* ES5 */ \ | 310 /* ES5 */ \ |
| 311 F(LocalKeys, 1, 1) \ | 311 F(LocalKeys, 1, 1) \ |
| 312 /* Cache suport */ \ | 312 /* Cache suport */ \ |
| 313 F(GetFromCache, 2, 1) \ | 313 F(GetFromCache, 2, 1) \ |
| 314 \ | 314 \ |
| 315 /* Message objects */ \ |
| 316 F(NewMessageObject, 2, 1) \ |
| 317 F(MessageGetType, 1, 1) \ |
| 318 F(MessageGetArguments, 1, 1) \ |
| 319 F(MessageGetStartPosition, 1, 1) \ |
| 320 F(MessageGetScript, 1, 1) \ |
| 321 \ |
| 315 /* Pseudo functions - handled as macros by parser */ \ | 322 /* Pseudo functions - handled as macros by parser */ \ |
| 316 F(IS_VAR, 1, 1) | 323 F(IS_VAR, 1, 1) |
| 317 | 324 |
| 318 #ifdef ENABLE_DEBUGGER_SUPPORT | 325 #ifdef ENABLE_DEBUGGER_SUPPORT |
| 319 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ | 326 #define RUNTIME_FUNCTION_LIST_DEBUGGER_SUPPORT(F) \ |
| 320 /* Debugger support*/ \ | 327 /* Debugger support*/ \ |
| 321 F(DebugBreak, 0, 1) \ | 328 F(DebugBreak, 0, 1) \ |
| 322 F(SetDebugEventListener, 2, 1) \ | 329 F(SetDebugEventListener, 2, 1) \ |
| 323 F(Break, 0, 1) \ | 330 F(Break, 0, 1) \ |
| 324 F(DebugGetPropertyDetails, 2, 1) \ | 331 F(DebugGetPropertyDetails, 2, 1) \ |
| (...skipping 286 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 611 Handle<Script> script, | 618 Handle<Script> script, |
| 612 int position); | 619 int position); |
| 613 | 620 |
| 614 // Helper functions used stubs. | 621 // Helper functions used stubs. |
| 615 static void PerformGC(Object* result); | 622 static void PerformGC(Object* result); |
| 616 }; | 623 }; |
| 617 | 624 |
| 618 } } // namespace v8::internal | 625 } } // namespace v8::internal |
| 619 | 626 |
| 620 #endif // V8_RUNTIME_H_ | 627 #endif // V8_RUNTIME_H_ |
| OLD | NEW |