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

Unified Diff: third_party/WebKit/Source/platform/heap/StackFrameDepth.h

Issue 2090893003: Experiment: assert for stack-allocated GarbageCollected<>s. Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: fix boundary condition Created 4 years, 6 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 | « third_party/WebKit/Source/platform/heap/Heap.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/heap/StackFrameDepth.h
diff --git a/third_party/WebKit/Source/platform/heap/StackFrameDepth.h b/third_party/WebKit/Source/platform/heap/StackFrameDepth.h
index 94379aa71692505ddc0cfdd4a82680c1f28216cf..3b12868e90aa0708962091f34507d502bc3ef465 100644
--- a/third_party/WebKit/Source/platform/heap/StackFrameDepth.h
+++ b/third_party/WebKit/Source/platform/heap/StackFrameDepth.h
@@ -51,6 +51,18 @@ public:
}
#endif
+ static bool isStackAddress(void* pointer)
+ {
+ uint8_t* address = reinterpret_cast<uint8_t*>(pointer);
+ uint8_t* stackBase = reinterpret_cast<uint8_t*>(getStackStart());
+ if (address > stackBase)
+ return false;
+ size_t stackSize = getUnderestimatedStackSize();
+ if (!stackSize)
+ return false;
+ return (address >= stackBase - stackSize);
+ }
+
static size_t getUnderestimatedStackSize();
static void* getStackStart();
« no previous file with comments | « third_party/WebKit/Source/platform/heap/Heap.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698