src/share/vm/utilities/nativeCallStack.cpp

Mon, 25 Jun 2018 07:59:51 -0700

author
kevinw
date
Mon, 25 Jun 2018 07:59:51 -0700
changeset 9337
fc1c693e80bb
parent 7078
c6211b707068
child 9485
7a6239517d46
permissions
-rw-r--r--

8069124: runtime/NMT/MallocSiteHashOverflow.java failing in nightlies
Reviewed-by: ctornqvi, coleenp, gtriantafill, dholmes

     1 /*
     2  * Copyright (c) 2014, Oracle and/or its affiliates. All rights reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.
     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  */
    25 #include "precompiled.hpp"
    26 #include "runtime/os.hpp"
    27 #include "utilities/globalDefinitions.hpp"
    28 #include "utilities/nativeCallStack.hpp"
    30 const NativeCallStack NativeCallStack::EMPTY_STACK(0, false);
    32 NativeCallStack::NativeCallStack(int toSkip, bool fillStack) :
    33   _hash_value(0) {
    35 #if !PLATFORM_NATIVE_STACK_WALKING_SUPPORTED
    36   fillStack = false;
    37 #endif
    39   if (fillStack) {
    40     os::get_native_stack(_stack, NMT_TrackingStackDepth, toSkip);
    41   } else {
    42     for (int index = 0; index < NMT_TrackingStackDepth; index ++) {
    43       _stack[index] = NULL;
    44     }
    45   }
    46 }
    48 NativeCallStack::NativeCallStack(address* pc, int frameCount) {
    49   int frameToCopy = (frameCount < NMT_TrackingStackDepth) ?
    50     frameCount : NMT_TrackingStackDepth;
    51   int index;
    52   for (index = 0; index < frameToCopy; index ++) {
    53     _stack[index] = pc[index];
    54   }
    55   for (; index < NMT_TrackingStackDepth; index ++) {
    56     _stack[index] = NULL;
    57   }
    58   _hash_value = 0;
    59 }
    61 // number of stack frames captured
    62 int NativeCallStack::frames() const {
    63   int index;
    64   for (index = 0; index < NMT_TrackingStackDepth; index ++) {
    65     if (_stack[index] == NULL) {
    66       break;
    67     }
    68   }
    69   return index;
    70 }
    72 // Hash code. Any better algorithm?
    73 unsigned int NativeCallStack::hash() const {
    74   uintptr_t hash_val = _hash_value;
    75   if (hash_val == 0) {
    76     for (int index = 0; index < NMT_TrackingStackDepth; index++) {
    77       if (_stack[index] == NULL) break;
    78       hash_val += (uintptr_t)_stack[index];
    79     }
    81     NativeCallStack* p = const_cast<NativeCallStack*>(this);
    82     p->_hash_value = (unsigned int)(hash_val & 0xFFFFFFFF);
    83   }
    84   return _hash_value;
    85 }
    87 void NativeCallStack::print_on(outputStream* out) const {
    88   print_on(out, 0);
    89 }
    91 // Decode and print this call path
    92 void NativeCallStack::print_on(outputStream* out, int indent) const {
    93   address pc;
    94   char    buf[1024];
    95   int     offset;
    96   if (is_empty()) {
    97     for (int index = 0; index < indent; index ++) out->print(" ");
    98 #if PLATFORM_NATIVE_STACK_WALKING_SUPPORTED
    99     out->print("[BOOTSTRAP]");
   100 #else
   101     out->print("[No stack]");
   102 #endif
   103   } else {
   104     for (int frame = 0; frame < NMT_TrackingStackDepth; frame ++) {
   105       pc = get_frame(frame);
   106       if (pc == NULL) break;
   107       // Print indent
   108       for (int index = 0; index < indent; index ++) out->print(" ");
   109       if (os::dll_address_to_function_name(pc, buf, sizeof(buf), &offset)) {
   110         out->print_cr("[" PTR_FORMAT "] %s+0x%x", p2i(pc), buf, offset);
   111       } else {
   112         out->print_cr("[" PTR_FORMAT "]", p2i(pc));
   113       }
   114     }
   115   }
   116 }

mercurial