Index: src/isolate.h |
diff --git a/src/isolate.h b/src/isolate.h |
index 23bb04c06ea4aa22c5bc76f534afa9d74ec9ab0e..e13409c536a11d7531b5785c9cce6faea3c588db 100644 |
--- a/src/isolate.h |
+++ b/src/isolate.h |
@@ -311,9 +311,6 @@ class ThreadLocalTop BASE_EMBEDDED { |
ExternalCallbackScope* external_callback_scope_; |
StateTag current_vm_state_; |
- // Generated code scratch locations. |
- int32_t formal_count_; |
- |
// Call back function to report unsafe JS accesses. |
v8::FailedAccessCheckCallback failed_access_check_callback_; |
@@ -608,9 +605,6 @@ class Isolate { |
v8::TryCatch* try_catch_handler() { |
return thread_local_top_.try_catch_handler(); |
} |
- Address try_catch_handler_address() { |
- return thread_local_top_.try_catch_handler_address(); |
- } |
bool* external_caught_exception_address() { |
return &thread_local_top_.external_caught_exception_; |
} |
@@ -665,9 +659,6 @@ class Isolate { |
return &thread_local_top_.js_entry_sp_; |
} |
- // Generated code scratch locations. |
- void* formal_count_address() { return &thread_local_top_.formal_count_; } |
- |
// Returns the global object of the current context. It could be |
// a builtin object, or a JS global object. |
Handle<GlobalObject> global_object() { |