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

Side by Side Diff: src/isolate.cc

Issue 1300663002: Revert "Regularly check hash set addresses to verify memory integrity." (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Created 5 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/isolate.h ('k') | 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 #include <stdlib.h> 5 #include <stdlib.h>
6 6
7 #include <fstream> // NOLINT(readability/streams) 7 #include <fstream> // NOLINT(readability/streams)
8 #include <sstream> 8 #include <sstream>
9 9
10 #include "src/v8.h" 10 #include "src/v8.h"
(...skipping 1740 matching lines...) Expand 10 before | Expand all | Expand 10 after
1751 global_handles_(NULL), 1751 global_handles_(NULL),
1752 eternal_handles_(NULL), 1752 eternal_handles_(NULL),
1753 thread_manager_(NULL), 1753 thread_manager_(NULL),
1754 has_installed_extensions_(false), 1754 has_installed_extensions_(false),
1755 regexp_stack_(NULL), 1755 regexp_stack_(NULL),
1756 date_cache_(NULL), 1756 date_cache_(NULL),
1757 call_descriptor_data_(NULL), 1757 call_descriptor_data_(NULL),
1758 // TODO(bmeurer) Initialized lazily because it depends on flags; can 1758 // TODO(bmeurer) Initialized lazily because it depends on flags; can
1759 // be fixed once the default isolate cleanup is done. 1759 // be fixed once the default isolate cleanup is done.
1760 random_number_generator_(NULL), 1760 random_number_generator_(NULL),
1761 store_buffer_hash_set_1_address_(NULL),
1762 store_buffer_hash_set_2_address_(NULL),
1763 serializer_enabled_(enable_serializer), 1761 serializer_enabled_(enable_serializer),
1764 has_fatal_error_(false), 1762 has_fatal_error_(false),
1765 initialized_from_snapshot_(false), 1763 initialized_from_snapshot_(false),
1766 cpu_profiler_(NULL), 1764 cpu_profiler_(NULL),
1767 heap_profiler_(NULL), 1765 heap_profiler_(NULL),
1768 function_entry_hook_(NULL), 1766 function_entry_hook_(NULL),
1769 deferred_handles_head_(NULL), 1767 deferred_handles_head_(NULL),
1770 optimizing_compile_dispatcher_(NULL), 1768 optimizing_compile_dispatcher_(NULL),
1771 stress_deopt_count_(0), 1769 stress_deopt_count_(0),
1772 next_optimization_id_(0), 1770 next_optimization_id_(0),
(...skipping 1044 matching lines...) Expand 10 before | Expand all | Expand 10 after
2817 // Then check whether this scope intercepts. 2815 // Then check whether this scope intercepts.
2818 if ((flag & intercept_mask_)) { 2816 if ((flag & intercept_mask_)) {
2819 intercepted_flags_ |= flag; 2817 intercepted_flags_ |= flag;
2820 return true; 2818 return true;
2821 } 2819 }
2822 return false; 2820 return false;
2823 } 2821 }
2824 2822
2825 } // namespace internal 2823 } // namespace internal
2826 } // namespace v8 2824 } // namespace v8
OLDNEW
« no previous file with comments | « src/isolate.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698