Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: src/runtime.h

Issue 6280013: Fix a bug in delete for lookup slots. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 9 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
277 F(Throw, 1, 1) \ 277 F(Throw, 1, 1) \
278 F(ReThrow, 1, 1) \ 278 F(ReThrow, 1, 1) \
279 F(ThrowReferenceError, 1, 1) \ 279 F(ThrowReferenceError, 1, 1) \
280 F(StackGuard, 0, 1) \ 280 F(StackGuard, 0, 1) \
281 F(PromoteScheduledException, 0, 1) \ 281 F(PromoteScheduledException, 0, 1) \
282 \ 282 \
283 /* Contexts */ \ 283 /* Contexts */ \
284 F(NewContext, 1, 1) \ 284 F(NewContext, 1, 1) \
285 F(PushContext, 1, 1) \ 285 F(PushContext, 1, 1) \
286 F(PushCatchContext, 1, 1) \ 286 F(PushCatchContext, 1, 1) \
287 F(LookupContext, 2, 1) \ 287 F(DeleteContextSlot, 2, 1) \
288 F(LoadContextSlot, 2, 2) \ 288 F(LoadContextSlot, 2, 2) \
289 F(LoadContextSlotNoReferenceError, 2, 2) \ 289 F(LoadContextSlotNoReferenceError, 2, 2) \
290 F(StoreContextSlot, 3, 1) \ 290 F(StoreContextSlot, 3, 1) \
291 \ 291 \
292 /* Declarations and initialization */ \ 292 /* Declarations and initialization */ \
293 F(DeclareGlobals, 3, 1) \ 293 F(DeclareGlobals, 3, 1) \
294 F(DeclareContextSlot, 4, 1) \ 294 F(DeclareContextSlot, 4, 1) \
295 F(InitializeVarGlobal, -1 /* 1 or 2 */, 1) \ 295 F(InitializeVarGlobal, -1 /* 1 or 2 */, 1) \
296 F(InitializeConstGlobal, 2, 1) \ 296 F(InitializeConstGlobal, 2, 1) \
297 F(InitializeConstContextSlot, 3, 1) \ 297 F(InitializeConstContextSlot, 3, 1) \
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
550 int position); 550 int position);
551 551
552 // Helper functions used stubs. 552 // Helper functions used stubs.
553 static void PerformGC(Object* result); 553 static void PerformGC(Object* result);
554 }; 554 };
555 555
556 556
557 } } // namespace v8::internal 557 } } // namespace v8::internal
558 558
559 #endif // V8_RUNTIME_H_ 559 #endif // V8_RUNTIME_H_
OLDNEW
« no previous file with comments | « src/ia32/full-codegen-ia32.cc ('k') | src/runtime.cc » ('j') | src/runtime.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698