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

Unified Diff: src/frames.h

Issue 991893003: Remove frame pointer from StackHandler. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@local_stack-handler-1
Patch Set: 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/arm64/macro-assembler-arm64.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 50541a9e92304995135b301403d09cc6c967b22f..d5ce9b3df83097176d9b633e330c810b3c2ecf9d 100644
--- a/src/frames.h
+++ b/src/frames.h
@@ -76,9 +76,8 @@ class StackHandlerConstants : public AllStatic {
static const int kStateIntOffset = kStateOffset + kIntSize;
#endif
static const int kContextOffset = 2 * kPointerSize;
- static const int kFPOffset = 3 * kPointerSize;
- static const int kSize = kFPOffset + kFPOnStackSize;
+ static const int kSize = kContextOffset + kPointerSize;
static const int kSlotCount = kSize >> kPointerSizeLog2;
};
@@ -117,7 +116,6 @@ class StackHandler BASE_EMBEDDED {
inline Context* context() const;
inline Kind kind() const;
inline unsigned index() const;
- inline Address frame_pointer() const;
// Testers.
inline bool is_js_entry() const;
@@ -131,7 +129,6 @@ class StackHandler BASE_EMBEDDED {
private:
inline Object** context_address() const;
- inline void SetFp(Address slot, Address fp);
DISALLOW_IMPLICIT_CONSTRUCTORS(StackHandler);
};
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/frames.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698