hotspot/src/share/vm/runtime/perfMemory.cpp
changeset 46619 a3919f5e8d2b
parent 46560 388aa8d67c80
child 46625 edefffab74e2
equal deleted inserted replaced
46618:d503911aa948 46619:a3919f5e8d2b
    89 
    89 
    90   if (_prologue != NULL)
    90   if (_prologue != NULL)
    91     // initialization already performed
    91     // initialization already performed
    92     return;
    92     return;
    93 
    93 
    94   size_t capacity = align_size_up(PerfDataMemorySize,
    94   size_t capacity = align_up(PerfDataMemorySize,
    95                                   os::vm_allocation_granularity());
    95                              os::vm_allocation_granularity());
    96 
    96 
    97   log_debug(perf, memops)("PerfDataMemorySize = " SIZE_FORMAT ","
    97   log_debug(perf, memops)("PerfDataMemorySize = " SIZE_FORMAT ","
    98                           " os::vm_allocation_granularity = %d,"
    98                           " os::vm_allocation_granularity = %d,"
    99                           " adjusted size = " SIZE_FORMAT "\n",
    99                           " adjusted size = " SIZE_FORMAT "\n",
   100                           PerfDataMemorySize,
   100                           PerfDataMemorySize,