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

Unified Diff: src/frames.h

Issue 960273002: Move stack unwinding logic into the runtime. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix Win64 (finally). Created 5 years, 10 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-inl.h » ('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 03d53dd6a1cbdf0990205760bc398bb96b4416b1..1cb1d190fd2abfd0f88309cde28a2aa26618f912 100644
--- a/src/frames.h
+++ b/src/frames.h
@@ -114,7 +114,14 @@ class StackHandler BASE_EMBEDDED {
// Conversion support.
static inline StackHandler* FromAddress(Address address);
- // Testers
+ // Accessors.
+ inline Context* context() const;
+ inline Code* code() const;
+ inline Kind kind() const;
+ inline unsigned index() const;
+ inline Address frame_pointer() const;
+
+ // Testers.
inline bool is_js_entry() const;
inline bool is_catch() const;
inline bool is_finally() const;
@@ -125,11 +132,6 @@ class StackHandler BASE_EMBEDDED {
int Rewind(Isolate* isolate, FixedArray* array, int offset, Address fp);
private:
- // Accessors.
- inline Kind kind() const;
- inline unsigned index() const;
-
- inline Object** constant_pool_address() const;
inline Object** context_address() const;
inline Object** code_address() const;
inline void SetFp(Address slot, Address fp);
« no previous file with comments | « src/arm64/macro-assembler-arm64.cc ('k') | src/frames-inl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698