| OLD | NEW |
| 1 // Copyright 2006-2008 the V8 project authors. All rights reserved. | 1 // Copyright 2006-2008 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 267 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 278 F(InitializeConstContextSlot, 3) \ | 278 F(InitializeConstContextSlot, 3) \ |
| 279 \ | 279 \ |
| 280 /* Debugging */ \ | 280 /* Debugging */ \ |
| 281 F(DebugPrint, 1) \ | 281 F(DebugPrint, 1) \ |
| 282 F(DebugTrace, 0) \ | 282 F(DebugTrace, 0) \ |
| 283 F(TraceEnter, 0) \ | 283 F(TraceEnter, 0) \ |
| 284 F(TraceExit, 1) \ | 284 F(TraceExit, 1) \ |
| 285 F(DebugBreak, 0) \ | 285 F(DebugBreak, 0) \ |
| 286 F(FunctionGetAssemblerCode, 1) \ | 286 F(FunctionGetAssemblerCode, 1) \ |
| 287 F(Abort, 2) \ | 287 F(Abort, 2) \ |
| 288 /* Logging */ \ |
| 289 F(Log, 2) \ |
| 288 \ | 290 \ |
| 289 /* Pseudo functions - handled as macros by parser */ \ | 291 /* Pseudo functions - handled as macros by parser */ \ |
| 290 F(IS_VAR, 1) | 292 F(IS_VAR, 1) |
| 291 | 293 |
| 292 | 294 |
| 293 #ifdef DEBUG | 295 #ifdef DEBUG |
| 294 #define RUNTIME_FUNCTION_LIST_DEBUG(F) \ | 296 #define RUNTIME_FUNCTION_LIST_DEBUG(F) \ |
| 295 /* Testing */ \ | 297 /* Testing */ \ |
| 296 F(ListNatives, 0) | 298 F(ListNatives, 0) |
| 297 #else | 299 #else |
| (...skipping 63 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 361 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 363 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 362 | 364 |
| 363 // Helper functions used stubs. | 365 // Helper functions used stubs. |
| 364 static void PerformGC(Object* result); | 366 static void PerformGC(Object* result); |
| 365 }; | 367 }; |
| 366 | 368 |
| 367 | 369 |
| 368 } } // namespace v8::internal | 370 } } // namespace v8::internal |
| 369 | 371 |
| 370 #endif // V8_RUNTIME_H_ | 372 #endif // V8_RUNTIME_H_ |
| OLD | NEW |