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

Side by Side Diff: src/isolate.h

Issue 797543002: remove Isolate::debugger_initialized_ (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 6 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 unified diff | Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2012 the V8 project authors. All rights reserved. 1 // Copyright 2012 the V8 project authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #ifndef V8_ISOLATE_H_ 5 #ifndef V8_ISOLATE_H_
6 #define V8_ISOLATE_H_ 6 #define V8_ISOLATE_H_
7 7
8 #include "include/v8-debug.h" 8 #include "include/v8-debug.h"
9 #include "src/allocation.h" 9 #include "src/allocation.h"
10 #include "src/assert-scope.h" 10 #include "src/assert-scope.h"
(...skipping 1214 matching lines...) Expand 10 before | Expand all | Expand 10 after
1225 EntryStackItem* entry_stack_; 1225 EntryStackItem* entry_stack_;
1226 int stack_trace_nesting_level_; 1226 int stack_trace_nesting_level_;
1227 StringStream* incomplete_message_; 1227 StringStream* incomplete_message_;
1228 Address isolate_addresses_[kIsolateAddressCount + 1]; // NOLINT 1228 Address isolate_addresses_[kIsolateAddressCount + 1]; // NOLINT
1229 Bootstrapper* bootstrapper_; 1229 Bootstrapper* bootstrapper_;
1230 RuntimeProfiler* runtime_profiler_; 1230 RuntimeProfiler* runtime_profiler_;
1231 CompilationCache* compilation_cache_; 1231 CompilationCache* compilation_cache_;
1232 Counters* counters_; 1232 Counters* counters_;
1233 CodeRange* code_range_; 1233 CodeRange* code_range_;
1234 base::RecursiveMutex break_access_; 1234 base::RecursiveMutex break_access_;
1235 base::Atomic32 debugger_initialized_;
1236 Logger* logger_; 1235 Logger* logger_;
1237 StackGuard stack_guard_; 1236 StackGuard stack_guard_;
1238 StatsTable* stats_table_; 1237 StatsTable* stats_table_;
1239 StubCache* stub_cache_; 1238 StubCache* stub_cache_;
1240 CodeAgingHelper* code_aging_helper_; 1239 CodeAgingHelper* code_aging_helper_;
1241 DeoptimizerData* deoptimizer_data_; 1240 DeoptimizerData* deoptimizer_data_;
1242 MaterializedObjectStore* materialized_object_store_; 1241 MaterializedObjectStore* materialized_object_store_;
1243 ThreadLocalTop thread_local_top_; 1242 ThreadLocalTop thread_local_top_;
1244 bool capture_stack_trace_for_uncaught_exceptions_; 1243 bool capture_stack_trace_for_uncaught_exceptions_;
1245 int stack_trace_for_uncaught_exceptions_frame_limit_; 1244 int stack_trace_for_uncaught_exceptions_frame_limit_;
(...skipping 307 matching lines...) Expand 10 before | Expand all | Expand 10 after
1553 } 1552 }
1554 1553
1555 EmbeddedVector<char, 128> filename_; 1554 EmbeddedVector<char, 128> filename_;
1556 FILE* file_; 1555 FILE* file_;
1557 int scope_depth_; 1556 int scope_depth_;
1558 }; 1557 };
1559 1558
1560 } } // namespace v8::internal 1559 } } // namespace v8::internal
1561 1560
1562 #endif // V8_ISOLATE_H_ 1561 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698