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

Side by Side Diff: src/isolate.h

Issue 2246963002: [isolate] Remove unused exception handle (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: microtaskq.js 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 unified diff | Download patch
« no previous file with comments | « src/contexts.h ('k') | src/isolate.cc » ('j') | 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 <memory> 8 #include <memory>
9 #include <queue> 9 #include <queue>
10 #include <set> 10 #include <set>
(...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after
415 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, \ 415 V(ExternalReferenceRedirectorPointer*, external_reference_redirector, \
416 nullptr) \ 416 nullptr) \
417 /* State for Relocatable. */ \ 417 /* State for Relocatable. */ \
418 V(Relocatable*, relocatable_top, nullptr) \ 418 V(Relocatable*, relocatable_top, nullptr) \
419 V(DebugObjectCache*, string_stream_debug_object_cache, nullptr) \ 419 V(DebugObjectCache*, string_stream_debug_object_cache, nullptr) \
420 V(Object*, string_stream_current_security_token, nullptr) \ 420 V(Object*, string_stream_current_security_token, nullptr) \
421 V(ExternalReferenceTable*, external_reference_table, nullptr) \ 421 V(ExternalReferenceTable*, external_reference_table, nullptr) \
422 V(intptr_t*, api_external_references, nullptr) \ 422 V(intptr_t*, api_external_references, nullptr) \
423 V(base::HashMap*, external_reference_map, nullptr) \ 423 V(base::HashMap*, external_reference_map, nullptr) \
424 V(base::HashMap*, root_index_map, nullptr) \ 424 V(base::HashMap*, root_index_map, nullptr) \
425 V(int, pending_microtask_count, 0) \ 425 V(int, pending_microtask_count, 1) \
426 V(HStatistics*, hstatistics, nullptr) \ 426 V(HStatistics*, hstatistics, nullptr) \
427 V(CompilationStatistics*, turbo_statistics, nullptr) \ 427 V(CompilationStatistics*, turbo_statistics, nullptr) \
428 V(HTracer*, htracer, nullptr) \ 428 V(HTracer*, htracer, nullptr) \
429 V(CodeTracer*, code_tracer, nullptr) \ 429 V(CodeTracer*, code_tracer, nullptr) \
430 V(bool, fp_stubs_generated, false) \ 430 V(bool, fp_stubs_generated, false) \
431 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \ 431 V(uint32_t, per_isolate_assert_data, 0xFFFFFFFFu) \
432 V(PromiseRejectCallback, promise_reject_callback, nullptr) \ 432 V(PromiseRejectCallback, promise_reject_callback, nullptr) \
433 V(const v8::StartupData*, snapshot_blob, nullptr) \ 433 V(const v8::StartupData*, snapshot_blob, nullptr) \
434 V(int, code_and_metadata_size, 0) \ 434 V(int, code_and_metadata_size, 0) \
435 V(int, bytecode_and_metadata_size, 0) \ 435 V(int, bytecode_and_metadata_size, 0) \
(...skipping 1241 matching lines...) Expand 10 before | Expand all | Expand 10 after
1677 1677
1678 EmbeddedVector<char, 128> filename_; 1678 EmbeddedVector<char, 128> filename_;
1679 FILE* file_; 1679 FILE* file_;
1680 int scope_depth_; 1680 int scope_depth_;
1681 }; 1681 };
1682 1682
1683 } // namespace internal 1683 } // namespace internal
1684 } // namespace v8 1684 } // namespace v8
1685 1685
1686 #endif // V8_ISOLATE_H_ 1686 #endif // V8_ISOLATE_H_
OLDNEW
« no previous file with comments | « src/contexts.h ('k') | src/isolate.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698