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

Side by Side Diff: src/debug.h

Issue 8318014: Make _CallFunction proxy-aware. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Addressed Kevin's comment. Created 9 years, 1 month 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
« no previous file with comments | « src/builtins.cc ('k') | src/debug.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2011 the V8 project authors. All rights reserved. 1 // Copyright 2011 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 384 matching lines...) Expand 10 before | Expand all | Expand 10 after
395 void AfterGarbageCollection(); 395 void AfterGarbageCollection();
396 396
397 // Code generator routines. 397 // Code generator routines.
398 static void GenerateSlot(MacroAssembler* masm); 398 static void GenerateSlot(MacroAssembler* masm);
399 static void GenerateLoadICDebugBreak(MacroAssembler* masm); 399 static void GenerateLoadICDebugBreak(MacroAssembler* masm);
400 static void GenerateStoreICDebugBreak(MacroAssembler* masm); 400 static void GenerateStoreICDebugBreak(MacroAssembler* masm);
401 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm); 401 static void GenerateKeyedLoadICDebugBreak(MacroAssembler* masm);
402 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm); 402 static void GenerateKeyedStoreICDebugBreak(MacroAssembler* masm);
403 static void GenerateConstructCallDebugBreak(MacroAssembler* masm); 403 static void GenerateConstructCallDebugBreak(MacroAssembler* masm);
404 static void GenerateReturnDebugBreak(MacroAssembler* masm); 404 static void GenerateReturnDebugBreak(MacroAssembler* masm);
405 static void GenerateStubNoRegistersDebugBreak(MacroAssembler* masm); 405 static void GenerateCallFunctionStubDebugBreak(MacroAssembler* masm);
406 static void GenerateSlotDebugBreak(MacroAssembler* masm); 406 static void GenerateSlotDebugBreak(MacroAssembler* masm);
407 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm); 407 static void GeneratePlainReturnLiveEdit(MacroAssembler* masm);
408 408
409 // FrameDropper is a code replacement for a JavaScript frame with possibly 409 // FrameDropper is a code replacement for a JavaScript frame with possibly
410 // several frames above. 410 // several frames above.
411 // There is no calling conventions here, because it never actually gets 411 // There is no calling conventions here, because it never actually gets
412 // called, it only gets returned to. 412 // called, it only gets returned to.
413 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm); 413 static void GenerateFrameDropperLiveEdit(MacroAssembler* masm);
414 414
415 // Called from stub-cache.cc. 415 // Called from stub-cache.cc.
(...skipping 558 matching lines...) Expand 10 before | Expand all | Expand 10 after
974 974
975 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread); 975 DISALLOW_COPY_AND_ASSIGN(MessageDispatchHelperThread);
976 }; 976 };
977 977
978 978
979 } } // namespace v8::internal 979 } } // namespace v8::internal
980 980
981 #endif // ENABLE_DEBUGGER_SUPPORT 981 #endif // ENABLE_DEBUGGER_SUPPORT
982 982
983 #endif // V8_DEBUG_H_ 983 #endif // V8_DEBUG_H_
OLDNEW
« no previous file with comments | « src/builtins.cc ('k') | src/debug.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698