hotspot/src/share/vm/prims/forte.cpp
author coleenp
Fri, 08 Mar 2013 11:47:57 -0500
changeset 15928 f9d5c6e4107f
parent 14579 7f6ce6e3dd80
child 17837 113909c12a8e
permissions -rw-r--r--
8003553: NPG: metaspace objects should be zeroed in constructors Summary: Zero metadata in constructors, not in allocation (and some in constructors) Reviewed-by: jmasa, sspitsyn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
     2
 * Copyright (c) 2003, 2012, Oracle and/or its affiliates. All rights reserved.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
 * This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 * under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 * published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
 * This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 * version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 * accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
 * You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 * 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 *
5547
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5402
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5402
diff changeset
    20
 * or visit www.oracle.com if you need additional information or have any
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 5402
diff changeset
    21
 * questions.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
7397
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    25
#include "precompiled.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    26
#include "code/debugInfoRec.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    27
#include "code/pcDesc.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    28
#include "gc_interface/collectedHeap.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    29
#include "memory/space.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    30
#include "memory/universe.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    31
#include "oops/oop.inline.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    32
#include "oops/oop.inline2.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    33
#include "prims/forte.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    34
#include "runtime/thread.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    35
#include "runtime/vframe.hpp"
5b173b4ca846 6989984: Use standard include model for Hospot
stefank
parents: 5547
diff changeset
    36
#include "runtime/vframeArray.hpp"
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    38
// These name match the names reported by the forte quality kit
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    39
enum {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    40
  ticks_no_Java_frame         =  0,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    41
  ticks_no_class_load         = -1,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    42
  ticks_GC_active             = -2,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    43
  ticks_unknown_not_Java      = -3,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    44
  ticks_not_walkable_not_Java = -4,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    45
  ticks_unknown_Java          = -5,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    46
  ticks_not_walkable_Java     = -6,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    47
  ticks_unknown_state         = -7,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    48
  ticks_thread_exit           = -8,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    49
  ticks_deopt                 = -9,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    50
  ticks_safepoint             = -10
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    51
};
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
//-------------------------------------------------------
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
// Native interfaces for use by Forte tools.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
#ifndef IA64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
class vframeStreamForte : public vframeStreamCommon {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
 public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  // constructor that starts with sender of frame fr (top_frame)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
  vframeStreamForte(JavaThread *jt, frame fr, bool stop_at_java_call_stub);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
  void forte_next();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
    68
static bool is_decipherable_compiled_frame(JavaThread* thread, frame* fr, nmethod* nm);
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    69
static bool is_decipherable_interpreted_frame(JavaThread* thread,
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
    70
                                              frame* fr,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
    71
                                              Method** method_p,
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
    72
                                              int* bci_p);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    77
vframeStreamForte::vframeStreamForte(JavaThread *jt,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    78
                                     frame fr,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    79
                                     bool stop_at_java_call_stub) : vframeStreamCommon(jt) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  _stop_at_java_call_stub = stop_at_java_call_stub;
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    82
  _frame = fr;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    84
  // We must always have a valid frame to start filling
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    86
  bool filled_in = fill_from_frame();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
    88
  assert(filled_in, "invariant");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
// Solaris SPARC Compiler1 needs an additional check on the grandparent
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
// of the top_frame when the parent of the top_frame is interpreted and
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
// the grandparent is compiled. However, in this method we do not know
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
// the relationship of the current _frame relative to the top_frame so
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
// we implement a more broad sanity check. When the previous callee is
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
// interpreted and the current sender is compiled, we verify that the
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
// current sender is also walkable. If it is not walkable, then we mark
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
// the current vframeStream as at the end.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
void vframeStreamForte::forte_next() {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
  // handle frames with inlining
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
  if (_mode == compiled_mode &&
489c9b5090e2 Initial load
duke
parents:
diff changeset
   104
      vframeStreamCommon::fill_in_compiled_inlined_sender()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  // handle general case
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
  int loop_count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
  int loop_max = MaxJavaStackTraceDepth * 2;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  do {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   116
    loop_count++;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   118
    // By the time we get here we should never see unsafe but better
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   119
    // safe then segv'd
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   121
    if (loop_count > loop_max || !_frame.safe_for_sender(_thread)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
      _mode = at_end_mode;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   126
    _frame = _frame.sender(&_reg_map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   127
489c9b5090e2 Initial load
duke
parents:
diff changeset
   128
  } while (!fill_from_frame());
489c9b5090e2 Initial load
duke
parents:
diff changeset
   129
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   130
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   131
// Determine if 'fr' is a decipherable compiled frame. We are already
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   132
// assured that fr is for a java nmethod.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   133
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   134
static bool is_decipherable_compiled_frame(JavaThread* thread, frame* fr, nmethod* nm) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   135
  assert(nm->is_java_method(), "invariant");
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   136
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   137
  if (thread->has_last_Java_frame() && thread->last_Java_pc() == fr->pc()) {
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   138
    // We're stopped at a call into the JVM so look for a PcDesc with
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   139
    // the actual pc reported by the frame.
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   140
    PcDesc* pc_desc = nm->pc_desc_at(fr->pc());
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   141
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   142
    // Did we find a useful PcDesc?
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   143
    if (pc_desc != NULL &&
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   144
        pc_desc->scope_decode_offset() != DebugInformationRecorder::serialized_null) {
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   145
      return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  }
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   148
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   149
  // We're at some random pc in the nmethod so search for the PcDesc
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   150
  // whose pc is greater than the current PC.  It's done this way
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   151
  // because the extra PcDescs that are recorded for improved debug
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   152
  // info record the end of the region covered by the ScopeDesc
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   153
  // instead of the beginning.
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   154
  PcDesc* pc_desc = nm->pc_desc_near(fr->pc() + 1);
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   155
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   156
  // Now do we have a useful PcDesc?
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   157
  if (pc_desc == NULL ||
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   158
      pc_desc->scope_decode_offset() == DebugInformationRecorder::serialized_null) {
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   159
    // No debug information available for this pc
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   160
    // vframeStream would explode if we try and walk the frames.
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   161
    return false;
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   162
  }
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   163
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   164
  // This PcDesc is useful however we must adjust the frame's pc
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   165
  // so that the vframeStream lookups will use this same pc
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   166
  fr->set_pc(pc_desc->real_pc(nm));
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   167
  return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   168
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   169
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   170
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
// Determine if 'fr' is a walkable interpreted frame. Returns false
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
// if it is not. *method_p, and *bci_p are not set when false is
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
// returned. *method_p is non-NULL if frame was executing a Java
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
// method. *bci_p is != -1 if a valid BCI in the Java method could
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
// be found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
// Note: this method returns true when a valid Java method is found
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
// even if a valid BCI cannot be found.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   179
static bool is_decipherable_interpreted_frame(JavaThread* thread,
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   180
                                              frame* fr,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
   181
                                              Method** method_p,
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   182
                                              int* bci_p) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  assert(fr->is_interpreted_frame(), "just checking");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
  // top frame is an interpreted frame
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
   186
  // check if it is walkable (i.e. valid Method* and valid bci)
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   187
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   188
  // Because we may be racing a gc thread the method and/or bci
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   189
  // of a valid interpreter frame may look bad causing us to
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   190
  // fail the is_interpreted_frame_valid test. If the thread
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   191
  // is in any of the following states we are assured that the
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   192
  // frame is in fact valid and we must have hit the race.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   193
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   194
  JavaThreadState state = thread->thread_state();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   195
  bool known_valid = (state == _thread_in_native ||
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   196
                      state == _thread_in_vm ||
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   197
                      state == _thread_blocked );
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   198
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   199
  if (known_valid || fr->is_interpreted_frame_valid(thread)) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   200
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   201
    // The frame code should completely validate the frame so that
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
   202
    // references to Method* and bci are completely safe to access
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   203
    // If they aren't the frame code should be fixed not this
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   204
    // code. However since gc isn't locked out the values could be
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   205
    // stale. This is a race we can never completely win since we can't
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   206
    // lock out gc so do one last check after retrieving their values
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   207
    // from the frame for additional safety
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   208
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
   209
    Method* method = fr->interpreter_frame_method();
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   210
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   211
    // We've at least found a method.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   212
    // NOTE: there is something to be said for the approach that
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   213
    // if we don't find a valid bci then the method is not likely
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   214
    // a valid method. Then again we may have caught an interpreter
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   215
    // frame in the middle of construction and the bci field is
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   216
    // not yet valid.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   217
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   218
    *method_p = method;
14579
7f6ce6e3dd80 8003635: NPG: AsynchGetCallTrace broken by Method* virtual call
coleenp
parents: 13728
diff changeset
   219
    if (!method->is_valid_method()) return false;
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   220
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   221
    intptr_t bcx = fr->interpreter_frame_bcx();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   222
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   223
    int      bci = method->validate_bci_from_bcx(bcx);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   224
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   225
    // note: bci is set to -1 if not a valid bci
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   226
    *bci_p = bci;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   227
    return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
  }
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   229
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
  return false;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   234
// Determine if 'fr' can be used to find an initial Java frame.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   235
// Return false if it can not find a fully decipherable Java frame
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   236
// (in other words a frame that isn't safe to use in a vframe stream).
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   237
// Obviously if it can't even find a Java frame false will also be returned.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   238
//
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   239
// If we find a Java frame decipherable or not then by definition we have
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   240
// identified a method and that will be returned to the caller via method_p.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   241
// If we can determine a bci that is returned also. (Hmm is it possible
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   242
// to return a method and bci and still return false? )
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   243
//
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   244
// The initial Java frame we find (if any) is return via initial_frame_p.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
//
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   246
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   247
static bool find_initial_Java_frame(JavaThread* thread,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   248
                                    frame* fr,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   249
                                    frame* initial_frame_p,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
   250
                                    Method** method_p,
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   251
                                    int* bci_p) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   252
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   253
  // It is possible that for a frame containing an nmethod
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   254
  // we can capture the method but no bci. If we get no
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   255
  // bci the frame isn't walkable but the method is usable.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
   256
  // Therefore we init the returned Method* to NULL so the
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   257
  // caller can make the distinction.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   258
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   259
  *method_p = NULL;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   260
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   261
  // On the initial call to this method the frame we get may not be
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   262
  // recognizable to us. This should only happen if we are in a JRT_LEAF
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   263
  // or something called by a JRT_LEAF method.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   264
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   265
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   266
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   267
  frame candidate = *fr;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   268
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   269
  // If the starting frame we were given has no codeBlob associated with
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   270
  // it see if we can find such a frame because only frames with codeBlobs
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   271
  // are possible Java frames.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   272
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   273
  if (fr->cb() == NULL) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   274
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   275
    // See if we can find a useful frame
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   276
    int loop_count;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   277
    int loop_max = MaxJavaStackTraceDepth * 2;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   278
    RegisterMap map(thread, false);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   279
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   280
    for (loop_count = 0; loop_count < loop_max; loop_count++) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   281
      if (!candidate.safe_for_sender(thread)) return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   282
      candidate = candidate.sender(&map);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   283
      if (candidate.cb() != NULL) break;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   284
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   285
    if (candidate.cb() == NULL) return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   288
  // We have a frame known to be in the codeCache
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   289
  // We will hopefully be able to figure out something to do with it.
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   290
  int loop_count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   291
  int loop_max = MaxJavaStackTraceDepth * 2;
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   292
  RegisterMap map(thread, false);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   293
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
  for (loop_count = 0; loop_count < loop_max; loop_count++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   296
    if (candidate.is_first_frame()) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   297
      // If initial frame is frame from StubGenerator and there is no
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   298
      // previous anchor, there are no java frames associated with a method
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   299
      return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   300
    }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   302
    if (candidate.is_interpreted_frame()) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   303
      if (is_decipherable_interpreted_frame(thread, &candidate, method_p, bci_p)) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   304
        *initial_frame_p = candidate;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   305
        return true;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   306
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   308
      // Hopefully we got some data
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   309
      return false;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   310
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   311
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   312
    if (candidate.cb()->is_nmethod()) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   313
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   314
      nmethod* nm = (nmethod*) candidate.cb();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   315
      *method_p = nm->method();
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   316
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   317
      // If the frame isn't fully decipherable then the default
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   318
      // value for the bci is a signal that we don't have a bci.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   319
      // If we have a decipherable frame this bci value will
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   320
      // not be used.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   321
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   322
      *bci_p = -1;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   324
      *initial_frame_p = candidate;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   325
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   326
      // Native wrapper code is trivial to decode by vframeStream
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   327
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   328
      if (nm->is_native_method()) return true;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   329
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   330
      // If it isn't decipherable then we have found a pc that doesn't
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   331
      // have a PCDesc that can get us a bci however we did find
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   332
      // a method
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   333
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   334
      if (!is_decipherable_compiled_frame(thread, &candidate, nm)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   335
        return false;
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   336
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   337
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   338
      // is_decipherable_compiled_frame may modify candidate's pc
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   339
      *initial_frame_p = candidate;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   340
5233
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   341
      assert(nm->pc_desc_at(candidate.pc()) != NULL, "if it's decipherable then pc must be valid");
6fd5e41e3f54 6936709: AsyncGetCallTrace doesn't handle inexact stack walking properly
never
parents: 670
diff changeset
   342
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   343
      return true;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   344
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   345
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   346
    // Must be some stub frame that we don't care about
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   347
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   348
    if (!candidate.safe_for_sender(thread)) return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   349
    candidate = candidate.sender(&map);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   350
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   351
    // If it isn't in the code cache something is wrong
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   352
    // since once we find a frame in the code cache they
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   353
    // all should be there.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   355
    if (candidate.cb() == NULL) return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   356
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   357
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   358
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   359
  return false;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   360
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   361
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   362
489c9b5090e2 Initial load
duke
parents:
diff changeset
   363
489c9b5090e2 Initial load
duke
parents:
diff changeset
   364
// call frame copied from old .h file and renamed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   365
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   366
    jint lineno;                      // line number in the source file
489c9b5090e2 Initial load
duke
parents:
diff changeset
   367
    jmethodID method_id;              // method executed in this frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   368
} ASGCT_CallFrame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   369
489c9b5090e2 Initial load
duke
parents:
diff changeset
   370
// call trace copied from old .h file and renamed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   371
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   372
    JNIEnv *env_id;                   // Env where trace was recorded
489c9b5090e2 Initial load
duke
parents:
diff changeset
   373
    jint num_frames;                  // number of frames in this trace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   374
    ASGCT_CallFrame *frames;          // frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
   375
} ASGCT_CallTrace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   376
489c9b5090e2 Initial load
duke
parents:
diff changeset
   377
static void forte_fill_call_trace_given_top(JavaThread* thd,
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   378
                                            ASGCT_CallTrace* trace,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   379
                                            int depth,
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   380
                                            frame top_frame) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
  NoHandleMark nhm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   383
  frame initial_Java_frame;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 10565
diff changeset
   384
  Method* method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  int bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
  int count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
489c9b5090e2 Initial load
duke
parents:
diff changeset
   388
  count = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   389
  assert(trace->frames != NULL, "trace->frames must be non-NULL");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   391
  bool fully_decipherable = find_initial_Java_frame(thd, &top_frame, &initial_Java_frame, &method, &bci);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   392
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   393
  // The frame might not be walkable but still recovered a method
14579
7f6ce6e3dd80 8003635: NPG: AsynchGetCallTrace broken by Method* virtual call
coleenp
parents: 13728
diff changeset
   394
  // (e.g. an nmethod with no scope info for the pc)
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   395
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   396
  if (method == NULL) return;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   397
14579
7f6ce6e3dd80 8003635: NPG: AsynchGetCallTrace broken by Method* virtual call
coleenp
parents: 13728
diff changeset
   398
  if (!method->is_valid_method()) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   399
    trace->num_frames = ticks_GC_active; // -2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   402
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   403
  // We got a Java frame however it isn't fully decipherable
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   404
  // so it won't necessarily be safe to use it for the
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   405
  // initial frame in the vframe stream.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   406
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   407
  if (!fully_decipherable) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   408
    // Take whatever method the top-frame decoder managed to scrape up.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   409
    // We look further at the top frame only if non-safepoint
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   410
    // debugging information is available.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   411
    count++;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   412
    trace->num_frames = count;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   413
    trace->frames[0].method_id = method->find_jmethod_id_or_null();
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   414
    if (!method->is_native()) {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   415
      trace->frames[0].lineno = bci;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   416
    } else {
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   417
      trace->frames[0].lineno = -3;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   418
    }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   419
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   420
    if (!initial_Java_frame.safe_for_sender(thd)) return;
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   421
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   422
    RegisterMap map(thd, false);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   423
    initial_Java_frame = initial_Java_frame.sender(&map);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   424
  }
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   425
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   426
  vframeStreamForte st(thd, initial_Java_frame, false);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   427
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   428
  for (; !st.at_end() && count < depth; st.forte_next(), count++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   429
    bci = st.bci();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   430
    method = st.method();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   431
14579
7f6ce6e3dd80 8003635: NPG: AsynchGetCallTrace broken by Method* virtual call
coleenp
parents: 13728
diff changeset
   432
    if (!method->is_valid_method()) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   433
      // we throw away everything we've gathered in this sample since
489c9b5090e2 Initial load
duke
parents:
diff changeset
   434
      // none of it is safe
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   435
      trace->num_frames = ticks_GC_active; // -2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
      return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   437
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
    trace->frames[count].method_id = method->find_jmethod_id_or_null();
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
    if (!method->is_native()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
      trace->frames[count].lineno = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
      trace->frames[count].lineno = -3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  trace->num_frames = count;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
// Forte Analyzer AsyncGetCallTrace() entry point. Currently supported
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
// on Linux X86, Solaris SPARC and Solaris X86.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
// Async-safe version of GetCallTrace being called from a signal handler
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
// when a LWP gets interrupted by SIGPROF but the stack traces are filled
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
// with different content (see below).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
// This function must only be called when JVM/TI
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
// CLASS_LOAD events have been enabled since agent startup. The enabled
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
// event will cause the jmethodIDs to be allocated at class load time.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
// The jmethodIDs cannot be allocated in a signal handler because locks
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
// cannot be grabbed in a signal handler safely.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
// void (*AsyncGetCallTrace)(ASGCT_CallTrace *trace, jint depth, void* ucontext)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
// Called by the profiler to obtain the current method call stack trace for
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
// a given thread. The thread is identified by the env_id field in the
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
// ASGCT_CallTrace structure. The profiler agent should allocate a ASGCT_CallTrace
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
// structure with enough memory for the requested stack depth. The VM fills in
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
// the frames buffer and the num_frames field.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
// Arguments:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
//   trace    - trace data structure to be filled by the VM.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
//   depth    - depth of the call stack trace.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
//   ucontext - ucontext_t of the LWP
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
// ASGCT_CallTrace:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
//   typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
//       JNIEnv *env_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
//       jint num_frames;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
//       ASGCT_CallFrame *frames;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
//   } ASGCT_CallTrace;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
// Fields:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
//   env_id     - ID of thread which executed this trace.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
//   num_frames - number of frames in the trace.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
//                (< 0 indicates the frame is not walkable).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
//   frames     - the ASGCT_CallFrames that make up this trace. Callee followed by callers.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
//  ASGCT_CallFrame:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
//    typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   493
//        jint lineno;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   494
//        jmethodID method_id;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
//    } ASGCT_CallFrame;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
//  Fields:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
//    1) For Java frame (interpreted and compiled),
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
//       lineno    - bci of the method being executed or -1 if bci is not available
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
//       method_id - jmethodID of the method being executed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
//    2) For native method
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
//       lineno    - (-3)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
//       method_id - jmethodID of the method being executed
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
extern "C" {
8106
19106a0203fb 6588413: Use -fvisibility=hidden for gcc compiles
coleenp
parents: 7397
diff changeset
   506
JNIEXPORT
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
void AsyncGetCallTrace(ASGCT_CallTrace *trace, jint depth, void* ucontext) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
  JavaThread* thread;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
  if (trace->env_id == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
    (thread = JavaThread::thread_from_jni_environment(trace->env_id)) == NULL ||
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
    thread->is_exiting()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
489c9b5090e2 Initial load
duke
parents:
diff changeset
   514
    // bad env_id, thread has exited or thread is exiting
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   515
    trace->num_frames = ticks_thread_exit; // -8
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   516
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   518
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
  if (thread->in_deopt_handler()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
    // thread is in the deoptimization handler so return no frames
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   521
    trace->num_frames = ticks_deopt; // -9
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
489c9b5090e2 Initial load
duke
parents:
diff changeset
   525
  assert(JavaThread::current() == thread,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
         "AsyncGetCallTrace must be called by the current interrupted thread");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  if (!JvmtiExport::should_post_class_load()) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   529
    trace->num_frames = ticks_no_class_load; // -1
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  if (Universe::heap()->is_gc_active()) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   534
    trace->num_frames = ticks_GC_active; // -2
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
    return;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  switch (thread->thread_state()) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  case _thread_new:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  case _thread_uninitialized:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  case _thread_new_trans:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
    // We found the thread on the threads list above, but it is too
489c9b5090e2 Initial load
duke
parents:
diff changeset
   543
    // young to be useful so return that there are no Java frames.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
    trace->num_frames = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   545
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  case _thread_in_native:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
  case _thread_in_native_trans:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  case _thread_blocked:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   549
  case _thread_blocked_trans:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  case _thread_in_vm:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   551
  case _thread_in_vm_trans:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   553
      frame fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   554
489c9b5090e2 Initial load
duke
parents:
diff changeset
   555
      // param isInJava == false - indicate we aren't in Java code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
      if (!thread->pd_get_top_frame_for_signal_handler(&fr, ucontext, false)) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   557
        trace->num_frames = ticks_unknown_not_Java;  // -3 unknown frame
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   558
      } else {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
        if (!thread->has_last_Java_frame()) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   560
          trace->num_frames = 0; // No Java frames
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
        } else {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   562
          trace->num_frames = ticks_not_walkable_not_Java;    // -4 non walkable frame by default
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   563
          forte_fill_call_trace_given_top(thread, trace, depth, fr);
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   564
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   565
          // This assert would seem to be valid but it is not.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   566
          // It would be valid if we weren't possibly racing a gc
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   567
          // thread. A gc thread can make a valid interpreted frame
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   568
          // look invalid. It's a small window but it does happen.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   569
          // The assert is left here commented out as a reminder.
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   570
          // assert(trace->num_frames != ticks_not_walkable_not_Java, "should always be walkable");
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   571
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   574
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   576
  case _thread_in_Java:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  case _thread_in_Java_trans:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   578
    {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
      frame fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
489c9b5090e2 Initial load
duke
parents:
diff changeset
   581
      // param isInJava == true - indicate we are in Java code
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
      if (!thread->pd_get_top_frame_for_signal_handler(&fr, ucontext, true)) {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   583
        trace->num_frames = ticks_unknown_Java;  // -5 unknown frame
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
      } else {
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   585
        trace->num_frames = ticks_not_walkable_Java;  // -6, non walkable frame by default
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   586
        forte_fill_call_trace_given_top(thread, trace, depth, fr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   587
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   588
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   589
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   590
  default:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   591
    // Unknown thread state
354
3b42d6fdcb82 6603919: Stackwalking crash on x86 -server with Sun Studio's collect -j on
sgoldman
parents: 1
diff changeset
   592
    trace->num_frames = ticks_unknown_state; // -7
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
#ifndef _WINDOWS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
// Support for the Forte(TM) Peformance Tools collector.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
//
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
// The method prototype is derived from libcollector.h. For more
489c9b5090e2 Initial load
duke
parents:
diff changeset
   602
// information, please see the libcollect man page.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
// Method to let libcollector know about a dynamically loaded function.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
// Because it is weakly bound, the calls become NOP's when the library
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
// isn't present.
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10508
diff changeset
   607
#ifdef __APPLE__
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10508
diff changeset
   608
// XXXDARWIN: Link errors occur even when __attribute__((weak_import))
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10508
diff changeset
   609
// is added
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10508
diff changeset
   610
#define collector_func_load(x0,x1,x2,x3,x4,x5,x6) (0)
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10508
diff changeset
   611
#else
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
void    collector_func_load(char* name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
                            void* null_argument_1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
                            void* null_argument_2,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
                            void *vaddr,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
                            int size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
                            int zero_argument,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
                            void* null_argument_3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
#pragma weak collector_func_load
489c9b5090e2 Initial load
duke
parents:
diff changeset
   620
#define collector_func_load(x0,x1,x2,x3,x4,x5,x6) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
        ( collector_func_load ? collector_func_load(x0,x1,x2,x3,x4,x5,x6),0 : 0 )
10565
dc90c239f4ec 7089790: integrate bsd-port changes
never
parents: 10508
diff changeset
   622
#endif // __APPLE__
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
#endif // !_WINDOWS
489c9b5090e2 Initial load
duke
parents:
diff changeset
   624
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
} // end extern "C"
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
#endif // !IA64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
void Forte::register_stub(const char* name, address start, address end) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   629
#if !defined(_WINDOWS) && !defined(IA64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   630
  assert(pointer_delta(end, start, sizeof(jbyte)) < INT_MAX,
5402
c51fd0c1d005 6888953: some calls to function-like macros are missing semicolons
jcoomes
parents: 5233
diff changeset
   631
         "Code size exceeds maximum range");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   632
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  collector_func_load((char*)name, NULL, NULL, start,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
    pointer_delta(end, start, sizeof(jbyte)), 0, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
#endif // !_WINDOWS && !IA64
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
}