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 242 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
253 /* Contexts */ \ | 253 /* Contexts */ \ |
254 F(NewContext, 1) \ | 254 F(NewContext, 1) \ |
255 F(PushContext, 1) \ | 255 F(PushContext, 1) \ |
256 F(LookupContext, 2) \ | 256 F(LookupContext, 2) \ |
257 F(LoadContextSlot, 2) \ | 257 F(LoadContextSlot, 2) \ |
258 F(LoadContextSlotNoReferenceError, 2) \ | 258 F(LoadContextSlotNoReferenceError, 2) \ |
259 F(StoreContextSlot, 3) \ | 259 F(StoreContextSlot, 3) \ |
260 \ | 260 \ |
261 /* Declarations and initialization */ \ | 261 /* Declarations and initialization */ \ |
262 F(DeclareGlobals, 3) \ | 262 F(DeclareGlobals, 3) \ |
263 F(DeclareContextSlot, 5) \ | 263 F(DeclareContextSlot, 4) \ |
264 F(InitializeVarGlobal, -1 /* 1 or 2 */) \ | 264 F(InitializeVarGlobal, -1 /* 1 or 2 */) \ |
265 F(InitializeConstGlobal, 2) \ | 265 F(InitializeConstGlobal, 2) \ |
266 F(InitializeConstContextSlot, 3) \ | 266 F(InitializeConstContextSlot, 3) \ |
267 \ | 267 \ |
268 /* Debugging */ \ | 268 /* Debugging */ \ |
269 F(DebugPrint, 1) \ | 269 F(DebugPrint, 1) \ |
270 F(DebugTrace, 1) \ | 270 F(DebugTrace, 1) \ |
271 F(TraceEnter, 1) \ | 271 F(TraceEnter, 1) \ |
272 F(TraceExit, 1) \ | 272 F(TraceExit, 1) \ |
273 F(DebugBreak, 1) \ | 273 F(DebugBreak, 1) \ |
(...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
349 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 349 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
350 | 350 |
351 // Helper functions used stubs. | 351 // Helper functions used stubs. |
352 static void PerformGC(Object* result); | 352 static void PerformGC(Object* result); |
353 }; | 353 }; |
354 | 354 |
355 | 355 |
356 } } // namespace v8::internal | 356 } } // namespace v8::internal |
357 | 357 |
358 #endif // V8_RUNTIME_H_ | 358 #endif // V8_RUNTIME_H_ |
OLD | NEW |