Chromium Code Reviews

Side by Side Diff: include/v8.h

Issue 12207076: Added new GetHeapStatistics API entry and deprecated old one. (Closed) Base URL: https://v8.googlecode.com/svn/branches/bleeding_edge
Patch Set: Created 7 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments.
Jump to:
View unified diff | | Annotate | Revision Log
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/api.cc » ('J')
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 // Redistribution and use in source and binary forms, with or without 2 // Redistribution and use in source and binary forms, with or without
3 // modification, are permitted provided that the following conditions are 3 // modification, are permitted provided that the following conditions are
4 // met: 4 // met:
5 // 5 //
6 // * Redistributions of source code must retain the above copyright 6 // * Redistributions of source code must retain the above copyright
7 // notice, this list of conditions and the following disclaimer. 7 // notice, this list of conditions and the following disclaimer.
8 // * Redistributions in binary form must reproduce the above 8 // * Redistributions in binary form must reproduce the above
9 // copyright notice, this list of conditions and the following 9 // copyright notice, this list of conditions and the following
10 // disclaimer in the documentation and/or other materials provided 10 // disclaimer in the documentation and/or other materials provided
(...skipping 2822 matching lines...)
2833 class V8EXPORT HeapStatistics { 2833 class V8EXPORT HeapStatistics {
2834 public: 2834 public:
2835 HeapStatistics(); 2835 HeapStatistics();
2836 size_t total_heap_size() { return total_heap_size_; } 2836 size_t total_heap_size() { return total_heap_size_; }
2837 size_t total_heap_size_executable() { return total_heap_size_executable_; } 2837 size_t total_heap_size_executable() { return total_heap_size_executable_; }
2838 size_t total_physical_size() { return total_physical_size_; } 2838 size_t total_physical_size() { return total_physical_size_; }
2839 size_t used_heap_size() { return used_heap_size_; } 2839 size_t used_heap_size() { return used_heap_size_; }
2840 size_t heap_size_limit() { return heap_size_limit_; } 2840 size_t heap_size_limit() { return heap_size_limit_; }
2841 2841
2842 private: 2842 private:
2843 void set_total_heap_size(size_t size) { total_heap_size_ = size; } 2843 void Clear();
2844 void set_total_heap_size_executable(size_t size) {
2845 total_heap_size_executable_ = size;
2846 }
2847 void set_total_physical_size(size_t size) {
2848 total_physical_size_ = size;
2849 }
2850 void set_used_heap_size(size_t size) { used_heap_size_ = size; }
2851 void set_heap_size_limit(size_t size) { heap_size_limit_ = size; }
2852 2844
2853 size_t total_heap_size_; 2845 size_t total_heap_size_;
2854 size_t total_heap_size_executable_; 2846 size_t total_heap_size_executable_;
2855 size_t total_physical_size_; 2847 size_t total_physical_size_;
2856 size_t used_heap_size_; 2848 size_t used_heap_size_;
2857 size_t heap_size_limit_; 2849 size_t heap_size_limit_;
2858 2850
2859 friend class V8; 2851 friend class V8;
2852 friend class Isolate;
2860 }; 2853 };
2861 2854
2862 2855
2863 class RetainedObjectInfo; 2856 class RetainedObjectInfo;
2864 2857
2865 /** 2858 /**
2866 * Isolate represents an isolated instance of the V8 engine. V8 2859 * Isolate represents an isolated instance of the V8 engine. V8
2867 * isolates have completely separate states. Objects from one isolate 2860 * isolates have completely separate states. Objects from one isolate
2868 * must not be used in other isolates. When V8 is initialized a 2861 * must not be used in other isolates. When V8 is initialized a
2869 * default isolate is implicitly created and entered. The embedder 2862 * default isolate is implicitly created and entered. The embedder
(...skipping 69 matching lines...)
2939 * Associate embedder-specific data with the isolate 2932 * Associate embedder-specific data with the isolate
2940 */ 2933 */
2941 V8_INLINE(void SetData(void* data)); 2934 V8_INLINE(void SetData(void* data));
2942 2935
2943 /** 2936 /**
2944 * Retrieve embedder-specific data from the isolate. 2937 * Retrieve embedder-specific data from the isolate.
2945 * Returns NULL if SetData has never been called. 2938 * Returns NULL if SetData has never been called.
2946 */ 2939 */
2947 V8_INLINE(void* GetData()); 2940 V8_INLINE(void* GetData());
2948 2941
2942 /**
2943 * Get statistics about the heap memory usage.
2944 */
2945 void GetHeapStatistics(HeapStatistics* heap_statistics);
2946
2949 private: 2947 private:
2950 Isolate(); 2948 Isolate();
2951 Isolate(const Isolate&); 2949 Isolate(const Isolate&);
2952 ~Isolate(); 2950 ~Isolate();
2953 Isolate& operator=(const Isolate&); 2951 Isolate& operator=(const Isolate&);
2954 void* operator new(size_t size); 2952 void* operator new(size_t size);
2955 void operator delete(void*, size_t); 2953 void operator delete(void*, size_t);
2956 }; 2954 };
2957 2955
2958 2956
(...skipping 534 matching lines...)
3493 * Releases any resources used by v8 and stops any utility threads 3491 * Releases any resources used by v8 and stops any utility threads
3494 * that may be running. Note that disposing v8 is permanent, it 3492 * that may be running. Note that disposing v8 is permanent, it
3495 * cannot be reinitialized. 3493 * cannot be reinitialized.
3496 * 3494 *
3497 * It should generally not be necessary to dispose v8 before exiting 3495 * It should generally not be necessary to dispose v8 before exiting
3498 * a process, this should happen automatically. It is only necessary 3496 * a process, this should happen automatically. It is only necessary
3499 * to use if the process needs the resources taken up by v8. 3497 * to use if the process needs the resources taken up by v8.
3500 */ 3498 */
3501 static bool Dispose(); 3499 static bool Dispose();
3502 3500
3503 /** 3501 /** Deprecated. Use Isolate::GetHeapStatistics instead. */
3504 * Get statistics about the heap memory usage. 3502 V8_DEPRECATED(static void GetHeapStatistics(HeapStatistics* heap_statistics));
3505 */
3506 static void GetHeapStatistics(HeapStatistics* heap_statistics);
3507 3503
3508 /** 3504 /**
3509 * Iterates through all external resources referenced from current isolate 3505 * Iterates through all external resources referenced from current isolate
3510 * heap. GC is not invoked prior to iterating, therefore there is no 3506 * heap. GC is not invoked prior to iterating, therefore there is no
3511 * guarantee that visited objects are still alive. 3507 * guarantee that visited objects are still alive.
3512 */ 3508 */
3513 static void VisitExternalResources(ExternalResourceVisitor* visitor); 3509 static void VisitExternalResources(ExternalResourceVisitor* visitor);
3514 3510
3515 /** 3511 /**
3516 * Iterates through all the persistent handles in the current isolate's heap 3512 * Iterates through all the persistent handles in the current isolate's heap
(...skipping 1411 matching lines...)
4928 4924
4929 4925
4930 } // namespace v8 4926 } // namespace v8
4931 4927
4932 4928
4933 #undef V8EXPORT 4929 #undef V8EXPORT
4934 #undef TYPE_CHECK 4930 #undef TYPE_CHECK
4935 4931
4936 4932
4937 #endif // V8_H_ 4933 #endif // V8_H_
OLDNEW
« no previous file with comments | « no previous file | src/api.cc » ('j') | src/api.cc » ('J')

Powered by Google App Engine