| 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 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 257 F(NewClosure, 2) \ | 257 F(NewClosure, 2) \ |
| 258 F(NewObject, 1) \ | 258 F(NewObject, 1) \ |
| 259 F(Throw, 1) \ | 259 F(Throw, 1) \ |
| 260 F(ReThrow, 1) \ | 260 F(ReThrow, 1) \ |
| 261 F(ThrowReferenceError, 1) \ | 261 F(ThrowReferenceError, 1) \ |
| 262 F(StackGuard, 1) \ | 262 F(StackGuard, 1) \ |
| 263 \ | 263 \ |
| 264 /* Contexts */ \ | 264 /* Contexts */ \ |
| 265 F(NewContext, 1) \ | 265 F(NewContext, 1) \ |
| 266 F(PushContext, 1) \ | 266 F(PushContext, 1) \ |
| 267 F(PushCatchContext, 1) \ |
| 267 F(LookupContext, 2) \ | 268 F(LookupContext, 2) \ |
| 268 F(LoadContextSlot, 2) \ | 269 F(LoadContextSlot, 2) \ |
| 269 F(LoadContextSlotNoReferenceError, 2) \ | 270 F(LoadContextSlotNoReferenceError, 2) \ |
| 270 F(StoreContextSlot, 3) \ | 271 F(StoreContextSlot, 3) \ |
| 271 \ | 272 \ |
| 272 /* Declarations and initialization */ \ | 273 /* Declarations and initialization */ \ |
| 273 F(DeclareGlobals, 3) \ | 274 F(DeclareGlobals, 3) \ |
| 274 F(DeclareContextSlot, 4) \ | 275 F(DeclareContextSlot, 4) \ |
| 275 F(InitializeVarGlobal, -1 /* 1 or 2 */) \ | 276 F(InitializeVarGlobal, -1 /* 1 or 2 */) \ |
| 276 F(InitializeConstGlobal, 2) \ | 277 F(InitializeConstGlobal, 2) \ |
| (...skipping 83 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); | 361 static Object* GetObjectProperty(Handle<Object> object, Handle<Object> key); |
| 361 | 362 |
| 362 // Helper functions used stubs. | 363 // Helper functions used stubs. |
| 363 static void PerformGC(Object* result); | 364 static void PerformGC(Object* result); |
| 364 }; | 365 }; |
| 365 | 366 |
| 366 | 367 |
| 367 } } // namespace v8::internal | 368 } } // namespace v8::internal |
| 368 | 369 |
| 369 #endif // V8_RUNTIME_H_ | 370 #endif // V8_RUNTIME_H_ |
| OLD | NEW |