Commit 5cec9403 authored by mstarzinger's avatar mstarzinger Committed by Commit bot

Remove some dead code from the Isolate.

R=jkummerow@chromium.org

Review URL: https://codereview.chromium.org/1009453004

Cr-Commit-Position: refs/heads/master@{#27191}
parent e6258446
...@@ -311,9 +311,6 @@ class ThreadLocalTop BASE_EMBEDDED { ...@@ -311,9 +311,6 @@ class ThreadLocalTop BASE_EMBEDDED {
ExternalCallbackScope* external_callback_scope_; ExternalCallbackScope* external_callback_scope_;
StateTag current_vm_state_; StateTag current_vm_state_;
// Generated code scratch locations.
int32_t formal_count_;
// Call back function to report unsafe JS accesses. // Call back function to report unsafe JS accesses.
v8::FailedAccessCheckCallback failed_access_check_callback_; v8::FailedAccessCheckCallback failed_access_check_callback_;
...@@ -608,9 +605,6 @@ class Isolate { ...@@ -608,9 +605,6 @@ class Isolate {
v8::TryCatch* try_catch_handler() { v8::TryCatch* try_catch_handler() {
return thread_local_top_.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() { bool* external_caught_exception_address() {
return &thread_local_top_.external_caught_exception_; return &thread_local_top_.external_caught_exception_;
} }
...@@ -664,9 +658,6 @@ class Isolate { ...@@ -664,9 +658,6 @@ class Isolate {
return &thread_local_top_.js_entry_sp_; 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 // Returns the global object of the current context. It could be
// a builtin object, or a JS global object. // a builtin object, or a JS global object.
Handle<GlobalObject> global_object() { Handle<GlobalObject> global_object() {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment