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

Unified Diff: src/macro-assembler-ia32.h

Issue 4035: Refactored the code for entering and leaving exit frames (calls... (Closed) Base URL: http://v8.googlecode.com/svn/branches/bleeding_edge/
Patch Set: Created 12 years, 3 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 side-by-side diff with in-line comments
Download patch
Index: src/macro-assembler-ia32.h
===================================================================
--- src/macro-assembler-ia32.h (revision 353)
+++ src/macro-assembler-ia32.h (working copy)
@@ -86,12 +86,14 @@
// ---------------------------------------------------------------------------
// Activation frames
- // Enter or exit a stack frame of the given type. Cannot be used to
- // construct or leave JavaScript frames.
void EnterInternalFrame();
- void ExitInternalFrame();
+ void LeaveInternalFrame();
+ // Enter specific kind of exit frame; either EXIT or EXIT_DEBUG.
+ void EnterExitFrame(StackFrame::Type type);
+ void LeaveExitFrame();
+
// ---------------------------------------------------------------------------
// JavaScript invokes
@@ -198,6 +200,10 @@
// Jump to the builtin routine.
void JumpToBuiltin(const ExternalReference& ext);
+
+ // ---------------------------------------------------------------------------
+ // Utilities
+
void Ret();
struct Unresolved {

Powered by Google App Engine
This is Rietveld 408576698