Chromium Code Reviews

Unified Diff: src/debug/liveedit.h

Issue 1696043002: [runtime] Unify and simplify how frames are marked (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Fix merge problems Created 4 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View side-by-side diff with in-line comments
Index: src/debug/liveedit.h
diff --git a/src/debug/liveedit.h b/src/debug/liveedit.h
index f3d6c54c0ed98dff838cd4a7123263c2d40a3f2a..47c2844cc990d4efba83ca1d8f74f8e99ed9baa9 100644
--- a/src/debug/liveedit.h
+++ b/src/debug/liveedit.h
@@ -170,10 +170,6 @@ class LiveEdit : AllStatic {
* ...
* --- Bottom
*/
- // A size of frame base including fp. Padding words starts right above
- // the base.
- static const int kFrameDropperFrameSize =
- 4 + StandardFrameConstants::kCPSlotCount;
// A number of words that should be reserved on stack for the LiveEdit use.
// Stored on stack in form of Smi.
static const int kFramePaddingInitialSize = 1;

Powered by Google App Engine