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

Unified Diff: runtime/vm/isolate.h

Issue 8823001: Use preallocated StackOverflowException (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: '' Created 9 years 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 | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/isolate.h
===================================================================
--- runtime/vm/isolate.h (revision 2103)
+++ runtime/vm/isolate.h (working copy)
@@ -230,14 +230,6 @@
void SetStackLimitFromCurrentTOS(uword isolate_stack_top);
- void ResetStackLimitAfterException() {
- stack_limit_ = stack_limit_on_overflow_exception_ + kStackSizeBuffer;
- }
-
- void AdjustStackLimitForException() {
- stack_limit_ = stack_limit_on_overflow_exception_;
- }
-
void StandardRunLoop();
intptr_t ast_node_id() const { return ast_node_id_; }
@@ -285,7 +277,6 @@
LongJump* long_jump_base_;
TimerList timer_list_;
uword stack_limit_;
- uword stack_limit_on_overflow_exception_;
intptr_t ast_node_id_;
static Dart_IsolateCreateCallback create_callback_;
« no previous file with comments | « runtime/vm/dart_api_impl.cc ('k') | runtime/vm/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698