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

Unified Diff: src/frames.h

Issue 942513002: Put the type feedback vector in the unoptimized JavaScript frame. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Reduced constant in deep recursion test for windows. Created 5 years, 9 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
« no previous file with comments | « src/deoptimizer.cc ('k') | src/frames.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/frames.h
diff --git a/src/frames.h b/src/frames.h
index 397c7b5db9cf7f912d7c3fe53a9392141b913ae2..1795bfd5a0f3dcae7f96e922788cbd2b0b536669 100644
--- a/src/frames.h
+++ b/src/frames.h
@@ -423,7 +423,7 @@ class StandardFrame: public StackFrame {
inline Object* GetExpression(int index) const;
inline void SetExpression(int index, Object* value);
int ComputeExpressionsCount() const;
- static Object* GetExpression(Address fp, int index);
+ static Object* GetStandardFrameExpression(Address fp, int index);
virtual void SetCallerFp(Address caller_fp);
@@ -455,7 +455,7 @@ class StandardFrame: public StackFrame {
// Returns the address of the n'th expression stack element.
Address GetExpressionAddress(int n) const;
- static Address GetExpressionAddress(Address fp, int n);
+ static Address GetStandardFrameExpressionAddress(Address fp, int n);
// Determines if the standard frame for the given frame pointer is
// an arguments adaptor frame.
@@ -668,6 +668,8 @@ class ArgumentsAdaptorFrame: public JavaScriptFrame {
return static_cast<ArgumentsAdaptorFrame*>(frame);
}
+ static int GetArgumentsLength(Address fp);
+
// Printing support.
virtual void Print(StringStream* accumulator,
PrintMode mode,
« no previous file with comments | « src/deoptimizer.cc ('k') | src/frames.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698