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

Side by Side Diff: src/isolate.cc

Issue 1847543002: Expose a lower bound of malloc'd memory via heap statistics (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: updates Created 4 years, 8 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') | src/json-parser.h » ('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 #include "src/isolate.h" 5 #include "src/isolate.h"
6 6
7 #include <stdlib.h> 7 #include <stdlib.h>
8 8
9 #include <fstream> // NOLINT(readability/streams) 9 #include <fstream> // NOLINT(readability/streams)
10 #include <sstream> 10 #include <sstream>
(...skipping 1798 matching lines...) Expand 10 before | Expand all | Expand 10 after
1809 materialized_object_store_(NULL), 1809 materialized_object_store_(NULL),
1810 capture_stack_trace_for_uncaught_exceptions_(false), 1810 capture_stack_trace_for_uncaught_exceptions_(false),
1811 stack_trace_for_uncaught_exceptions_frame_limit_(0), 1811 stack_trace_for_uncaught_exceptions_frame_limit_(0),
1812 stack_trace_for_uncaught_exceptions_options_(StackTrace::kOverview), 1812 stack_trace_for_uncaught_exceptions_options_(StackTrace::kOverview),
1813 memory_allocator_(NULL), 1813 memory_allocator_(NULL),
1814 keyed_lookup_cache_(NULL), 1814 keyed_lookup_cache_(NULL),
1815 context_slot_cache_(NULL), 1815 context_slot_cache_(NULL),
1816 descriptor_lookup_cache_(NULL), 1816 descriptor_lookup_cache_(NULL),
1817 handle_scope_implementer_(NULL), 1817 handle_scope_implementer_(NULL),
1818 unicode_cache_(NULL), 1818 unicode_cache_(NULL),
1819 runtime_zone_(&allocator_),
1820 interface_descriptor_zone_(&allocator_),
1819 inner_pointer_to_code_cache_(NULL), 1821 inner_pointer_to_code_cache_(NULL),
1820 global_handles_(NULL), 1822 global_handles_(NULL),
1821 eternal_handles_(NULL), 1823 eternal_handles_(NULL),
1822 thread_manager_(NULL), 1824 thread_manager_(NULL),
1823 has_installed_extensions_(false), 1825 has_installed_extensions_(false),
1824 regexp_stack_(NULL), 1826 regexp_stack_(NULL),
1825 date_cache_(NULL), 1827 date_cache_(NULL),
1826 call_descriptor_data_(NULL), 1828 call_descriptor_data_(NULL),
1827 // TODO(bmeurer) Initialized lazily because it depends on flags; can 1829 // TODO(bmeurer) Initialized lazily because it depends on flags; can
1828 // be fixed once the default isolate cleanup is done. 1830 // be fixed once the default isolate cleanup is done.
(...skipping 1159 matching lines...) Expand 10 before | Expand all | Expand 10 after
2988 // Then check whether this scope intercepts. 2990 // Then check whether this scope intercepts.
2989 if ((flag & intercept_mask_)) { 2991 if ((flag & intercept_mask_)) {
2990 intercepted_flags_ |= flag; 2992 intercepted_flags_ |= flag;
2991 return true; 2993 return true;
2992 } 2994 }
2993 return false; 2995 return false;
2994 } 2996 }
2995 2997
2996 } // namespace internal 2998 } // namespace internal
2997 } // namespace v8 2999 } // namespace v8
OLDNEW
« no previous file with comments | « src/isolate.h ('k') | src/json-parser.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698