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 226 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
237 F(SetScriptBreakPoint, 3) \ | 237 F(SetScriptBreakPoint, 3) \ |
238 F(ClearBreakPoint, 1) \ | 238 F(ClearBreakPoint, 1) \ |
239 F(ChangeBreakOnException, 2) \ | 239 F(ChangeBreakOnException, 2) \ |
240 F(PrepareStep, 3) \ | 240 F(PrepareStep, 3) \ |
241 F(ClearStepping, 0) \ | 241 F(ClearStepping, 0) \ |
242 F(DebugEvaluate, 4) \ | 242 F(DebugEvaluate, 4) \ |
243 F(DebugEvaluateGlobal, 3) \ | 243 F(DebugEvaluateGlobal, 3) \ |
244 F(DebugGetLoadedScripts, 0) \ | 244 F(DebugGetLoadedScripts, 0) \ |
245 F(DebugReferencedBy, 3) \ | 245 F(DebugReferencedBy, 3) \ |
246 F(DebugConstructedBy, 2) \ | 246 F(DebugConstructedBy, 2) \ |
247 F(GetPrototype, 1) \ | 247 F(DebugGetPrototype, 1) \ |
248 F(SystemBreak, 0) \ | 248 F(SystemBreak, 0) \ |
249 \ | 249 \ |
250 /* Literals */ \ | 250 /* Literals */ \ |
251 F(MaterializeRegExpLiteral, 4)\ | 251 F(MaterializeRegExpLiteral, 4)\ |
252 F(CreateArrayLiteral, 2) \ | 252 F(CreateArrayLiteral, 2) \ |
253 F(CreateObjectLiteralBoilerplate, 3) \ | 253 F(CreateObjectLiteralBoilerplate, 3) \ |
254 F(CloneObjectLiteralBoilerplate, 1) \ | 254 F(CloneObjectLiteralBoilerplate, 1) \ |
255 \ | 255 \ |
256 /* Catch context extension objects */ \ | 256 /* Catch context extension objects */ \ |
257 F(CreateCatchExtensionObject, 2) \ | 257 F(CreateCatchExtensionObject, 2) \ |
(...skipping 108 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
366 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 366 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
367 | 367 |
368 // Helper functions used stubs. | 368 // Helper functions used stubs. |
369 static void PerformGC(Object* result); | 369 static void PerformGC(Object* result); |
370 }; | 370 }; |
371 | 371 |
372 | 372 |
373 } } // namespace v8::internal | 373 } } // namespace v8::internal |
374 | 374 |
375 #endif // V8_RUNTIME_H_ | 375 #endif // V8_RUNTIME_H_ |
OLD | NEW |