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

Unified Diff: src/factory.cc

Issue 2252783007: Revert of Use a custom Struct for stack trace storage (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 4 years, 4 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/factory.h ('k') | src/heap-symbols.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/factory.cc
diff --git a/src/factory.cc b/src/factory.cc
index 3d45c2116c1496663a30943a25e12ebe0fab7ee3..571cd3ff9b66395a82411de91de0304353b6e16a 100644
--- a/src/factory.cc
+++ b/src/factory.cc
@@ -917,13 +917,6 @@
return script;
}
-Handle<StackTraceFrame> Factory::NewStackTraceFrame() {
- Handle<StackTraceFrame> frame =
- Handle<StackTraceFrame>::cast(NewStruct(STACK_TRACE_FRAME_TYPE));
- frame->set_flags(0);
- frame->set_offset(0);
- return frame;
-}
Handle<Foreign> Factory::NewForeign(Address addr, PretenureFlag pretenure) {
CALL_HEAP_FUNCTION(isolate(),
« no previous file with comments | « src/factory.h ('k') | src/heap-symbols.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698