< prev index next >

src/hotspot/share/services/nmtCommon.cpp

Print this page


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 #include "precompiled.hpp"
  25 #include "services/nmtCommon.hpp"
  26 #include "utilities/globalDefinitions.hpp"
  27 



  28 const char* NMTUtil::_memory_type_names[] = {
  29   "Java Heap",
  30   "Class",
  31   "Thread",
  32   "Thread Stack",
  33   "Code",
  34   "GC",
  35   "Compiler",
  36   "Internal",
  37   "Other",
  38   "Symbol",
  39   "Native Memory Tracking",
  40   "Shared class space",
  41   "Arena Chunk",
  42   "Test",
  43   "Tracing",
  44   "Logging",
  45   "Arguments",
  46   "Module",
  47   "Safepoint",
  48   "Unknown"
  49 };
  50 
  51 
  52 const char* NMTUtil::scale_name(size_t scale) {
  53   switch(scale) {
  54     case K: return "KB";
  55     case M: return "MB";
  56     case G: return "GB";
  57   }
  58   ShouldNotReachHere();
  59   return NULL;
  60 }
  61 
  62 size_t NMTUtil::scale_from_name(const char* scale) {
  63   assert(scale != NULL, "Null pointer check");
  64   if (strcasecmp(scale, "1") == 0 || strcasecmp(scale, "b") == 0) {
  65     return 1;
  66   } else if (strcasecmp(scale, "kb") == 0 || strcasecmp(scale, "k") == 0) {
  67     return K;
  68   } else if (strcasecmp(scale, "mb") == 0 || strcasecmp(scale, "m") == 0) {


   8  *
   9  * This code is distributed in the hope that it will be useful, but WITHOUT
  10  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  12  * version 2 for more details (a copy is included in the LICENSE file that
  13  * accompanied this code).
  14  *
  15  * You should have received a copy of the GNU General Public License version
  16  * 2 along with this work; if not, write to the Free Software Foundation,
  17  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  18  *
  19  * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  20  * or visit www.oracle.com if you need additional information or have any
  21  * questions.
  22  *
  23  */
  24 #include "precompiled.hpp"
  25 #include "services/nmtCommon.hpp"
  26 #include "utilities/globalDefinitions.hpp"
  27 
  28 #define MEMORY_TYPE_DECLARE_NAME(type, human_readable) \
  29   #human_readable,
  30 
  31 const char* NMTUtil::_memory_type_names[] = {
  32   MEMORY_TYPES_DO(MEMORY_TYPE_DECLARE_NAME)



















  33 };
  34 
  35 
  36 const char* NMTUtil::scale_name(size_t scale) {
  37   switch(scale) {
  38     case K: return "KB";
  39     case M: return "MB";
  40     case G: return "GB";
  41   }
  42   ShouldNotReachHere();
  43   return NULL;
  44 }
  45 
  46 size_t NMTUtil::scale_from_name(const char* scale) {
  47   assert(scale != NULL, "Null pointer check");
  48   if (strcasecmp(scale, "1") == 0 || strcasecmp(scale, "b") == 0) {
  49     return 1;
  50   } else if (strcasecmp(scale, "kb") == 0 || strcasecmp(scale, "k") == 0) {
  51     return K;
  52   } else if (strcasecmp(scale, "mb") == 0 || strcasecmp(scale, "m") == 0) {
< prev index next >