mirror of
https://github.com/openjdk/jdk.git
synced 2025-08-26 14:24:46 +02:00
6995781: Native Memory Tracking (Phase 1)
7151532: DCmd for hotspot native memory tracking Implementation of native memory tracking phase 1, which tracks VM native memory usage, and related DCmd Reviewed-by: acorn, coleenp, fparain
This commit is contained in:
parent
8e42425c92
commit
a39b17624a
315 changed files with 7245 additions and 1477 deletions
|
@ -32,6 +32,7 @@
|
|||
#include "runtime/java.hpp"
|
||||
#include "runtime/reflectionUtils.hpp"
|
||||
#include "utilities/hashtable.hpp"
|
||||
#include "utilities/hashtable.inline.hpp"
|
||||
|
||||
// The system dictionary stores all loaded classes and maps:
|
||||
//
|
||||
|
@ -72,7 +73,7 @@
|
|||
class Dictionary;
|
||||
class PlaceholderTable;
|
||||
class LoaderConstraintTable;
|
||||
class HashtableBucket;
|
||||
template <MEMFLAGS F> class HashtableBucket;
|
||||
class ResolutionErrorTable;
|
||||
class SymbolPropertyTable;
|
||||
|
||||
|
@ -363,7 +364,7 @@ public:
|
|||
static void copy_buckets(char** top, char* end);
|
||||
static void copy_table(char** top, char* end);
|
||||
static void reverse();
|
||||
static void set_shared_dictionary(HashtableBucket* t, int length,
|
||||
static void set_shared_dictionary(HashtableBucket<mtClass>* t, int length,
|
||||
int number_of_entries);
|
||||
// Printing
|
||||
static void print() PRODUCT_RETURN;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue