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

Unified Diff: src/x64/frames-x64.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/x64/code-stubs-x64.cc ('k') | src/x64/full-codegen-x64.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/x64/frames-x64.h
diff --git a/src/x64/frames-x64.h b/src/x64/frames-x64.h
index 1f8612afae4869c97914b22cd93203aa54197ced..70f37e69c605c82e8ae297bc0acb7b5130f1995e 100644
--- a/src/x64/frames-x64.h
+++ b/src/x64/frames-x64.h
@@ -61,13 +61,22 @@ class ExitFrameConstants : public AllStatic {
class JavaScriptFrameConstants : public AllStatic {
public:
// FP-relative.
- static const int kLocal0Offset = StandardFrameConstants::kExpressionsOffset;
static const int kLastParameterOffset = kFPOnStackSize + kPCOnStackSize;
static const int kFunctionOffset = StandardFrameConstants::kMarkerOffset;
+ static const int kFeedbackVectorOffset =
+ StandardFrameConstants::kExpressionsOffset;
+ static const int kLocal0Offset = -1 * kPointerSize + kFeedbackVectorOffset;
+ static const int kLocal0OffsetOptimized = kFeedbackVectorOffset;
+
+ static const int kUnoptimizedFixedFrameSizeFromFp =
+ StandardFrameConstants::kFixedFrameSizeFromFp + kPointerSize;
// Caller SP-relative.
static const int kParam0Offset = -2 * kPointerSize;
static const int kReceiverOffset = -1 * kPointerSize;
+
+ static const int kUnoptimizedFixedFrameSize =
+ StandardFrameConstants::kFixedFrameSize + kPointerSize;
};
« no previous file with comments | « src/x64/code-stubs-x64.cc ('k') | src/x64/full-codegen-x64.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698