hotspot/src/os/solaris/dtrace/libjvm_db.c
author rbackman
Tue, 26 Apr 2016 10:28:51 +0200
changeset 38133 78b95467b9f1
parent 33619 90563f58e60a
permissions -rw-r--r--
8151956: Support non-continuous CodeBlobs in HotSpot Reviewed-by: iveresov, thartmann, simonis
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
/*
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
     2
 * Copyright (c) 2003, 2016, 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: 4493
diff changeset
    19
 * Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
f4b087cbb361 6941466: Oracle rebranding changes for Hotspot repositories
trims
parents: 4493
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: 4493
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
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
#include <stdio.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
#include <stdlib.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
#include <string.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
#include <errno.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
#include <gelf.h>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
#include "libjvm_db.h"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
#include "JvmOffsets.h"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
#define LIBJVM_SO "libjvm.so"
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
#if defined(i386) || defined(__i386) || defined(__amd64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
#ifdef COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
#define X86_COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
#endif /* COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
#endif /* i386 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
typedef struct {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
    short     vf_cnt; /* number of recognized java vframes */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
    short     bci;    /* current frame method byte code index */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
    int       line;   /* current frame method source line */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
    uint64_t new_fp; /* fp for the next frame */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
    uint64_t new_pc; /* pc for the next frame */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
    uint64_t new_sp; /* "raw" sp for the next frame (includes extension by interpreter/adapter */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
    char      locinf; /* indicates there is valid location info */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
} Jframe_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
int Jlookup_by_regs(jvm_agent_t* J, const prgregset_t regs, char *name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
                    size_t size, Jframe_t *jframe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
int main(int arg) { return arg; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
static int debug = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
static void failed(int err, const char * file, int line) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
    fprintf(stderr, "failed %d at %s:%d\n", err, file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
static void warn(const char * file, int line, const char * msg) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
    fprintf(stderr, "warning: %s at %s:%d\n", msg, file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
static void warn1(const char * file, int line, const char * msg, intptr_t arg1) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
    fprintf(stderr, "warning: ");
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
    fprintf(stderr, msg, arg1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
    fprintf(stderr, " at %s:%d\n", file, line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
#define CHECK_FAIL(err) \
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
        if (err != PS_OK) { failed(err, __FILE__, __LINE__); goto fail; }
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
#define WARN(msg)  warn(__FILE__, __LINE__, msg)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
#define WARN1(msg, arg1)  warn1(__FILE__, __LINE__, msg, arg1)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
typedef struct VMStructEntry {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
  const char * typeName;           /* The type name containing the given field (example: "Klass") */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
  const char * fieldName;          /* The field name within the type           (example: "_name") */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
  uint64_t address;                /* Address of field; only used for static fields */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
                                   /* ("offset" can not be reused because of apparent SparcWorks compiler bug */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    89
                                   /* in generation of initializer data) */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    90
} VMStructEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
    91
489c9b5090e2 Initial load
duke
parents:
diff changeset
    92
/* Prototyping inlined methods */
489c9b5090e2 Initial load
duke
parents:
diff changeset
    93
489c9b5090e2 Initial load
duke
parents:
diff changeset
    94
int sprintf(char *s, const char *format, ...);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    95
489c9b5090e2 Initial load
duke
parents:
diff changeset
    96
#define SZ16  sizeof(int16_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    97
#define SZ32  sizeof(int32_t)
489c9b5090e2 Initial load
duke
parents:
diff changeset
    98
489c9b5090e2 Initial load
duke
parents:
diff changeset
    99
#define COMP_METHOD_SIGN '*'
489c9b5090e2 Initial load
duke
parents:
diff changeset
   100
489c9b5090e2 Initial load
duke
parents:
diff changeset
   101
#define MAX_VFRAMES_CNT 256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   102
489c9b5090e2 Initial load
duke
parents:
diff changeset
   103
typedef struct vframe {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   104
  uint64_t method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   105
  int32_t  sender_decode_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   106
  int32_t  methodIdx;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   107
  int32_t  bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   108
  int32_t  line;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   109
} Vframe_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   110
489c9b5090e2 Initial load
duke
parents:
diff changeset
   111
typedef struct frame {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   112
  uintptr_t fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   113
  uintptr_t pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   114
  uintptr_t sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   115
  uintptr_t sender_sp; // The unextended sp of the caller
489c9b5090e2 Initial load
duke
parents:
diff changeset
   116
} Frame_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   117
489c9b5090e2 Initial load
duke
parents:
diff changeset
   118
typedef struct Nmethod_t {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   119
  struct jvm_agent* J;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   120
  Jframe_t *jframe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   121
489c9b5090e2 Initial load
duke
parents:
diff changeset
   122
  uint64_t nm;                  /* _nmethod */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   123
  uint64_t pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   124
  uint64_t pc_desc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   125
489c9b5090e2 Initial load
duke
parents:
diff changeset
   126
  int32_t  orig_pc_offset;      /* _orig_pc_offset */
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   127
  uint64_t  instrs_beg;          /* _code_offset */
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   128
  uint64_t  instrs_end;
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   129
  uint64_t  deopt_beg;           /* _deoptimize_offset */
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   130
  uint64_t  scopes_data_beg;     /* _scopes_data_begin */
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   131
  int32_t  scopes_data_end;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   132
  int32_t  metadata_beg;        /* _metadata_offset */
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   133
  int32_t  metadata_end;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   134
  int32_t  scopes_pcs_beg;      /* _scopes_pcs_offset */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   135
  int32_t  scopes_pcs_end;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   136
489c9b5090e2 Initial load
duke
parents:
diff changeset
   137
  int      vf_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   138
  Vframe_t vframes[MAX_VFRAMES_CNT];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   139
} Nmethod_t;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   140
489c9b5090e2 Initial load
duke
parents:
diff changeset
   141
struct jvm_agent {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   142
  struct ps_prochandle* P;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   143
489c9b5090e2 Initial load
duke
parents:
diff changeset
   144
  uint64_t nmethod_vtbl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   145
  uint64_t CodeBlob_vtbl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   146
  uint64_t BufferBlob_vtbl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   147
  uint64_t RuntimeStub_vtbl;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   148
  uint64_t Method_vtbl;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   149
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   150
  uint64_t Use_Compressed_Oops_address;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   151
  uint64_t Universe_narrow_oop_base_address;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   152
  uint64_t Universe_narrow_oop_shift_address;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   153
  uint64_t CodeCache_heaps_address;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   154
489c9b5090e2 Initial load
duke
parents:
diff changeset
   155
  /* Volatiles */
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   156
  uint8_t  Use_Compressed_Oops;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   157
  uint64_t Universe_narrow_oop_base;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   158
  uint32_t Universe_narrow_oop_shift;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   159
  // Code cache heaps
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   160
  int32_t  Number_of_heaps;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   161
  uint64_t* Heap_low;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   162
  uint64_t* Heap_high;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   163
  uint64_t* Heap_segmap_low;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   164
  uint64_t* Heap_segmap_high;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   165
489c9b5090e2 Initial load
duke
parents:
diff changeset
   166
  int32_t  SIZE_CodeCache_log2_segment;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   167
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   168
  uint64_t methodPtr;
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
   169
  uint64_t bcp;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   170
489c9b5090e2 Initial load
duke
parents:
diff changeset
   171
  Nmethod_t *N;                 /*Inlined methods support */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   172
  Frame_t   prev_fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   173
  Frame_t   curr_fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   174
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
   175
489c9b5090e2 Initial load
duke
parents:
diff changeset
   176
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   177
read_string(struct ps_prochandle *P,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   178
        char *buf,              /* caller's buffer */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   179
        size_t size,            /* upper limit on bytes to read */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   180
        uintptr_t addr)         /* address in process */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   181
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   182
  int err = PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   183
  while (size-- > 1 && err == PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   184
    err = ps_pread(P, addr, buf, 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   185
    if (*buf == '\0') {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   186
      return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   187
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   188
    addr += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   189
    buf += 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   190
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   191
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   192
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   193
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   194
static int read_compressed_pointer(jvm_agent_t* J, uint64_t base, uint32_t *ptr) {
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   195
  int err = -1;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   196
  uint32_t ptr32;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   197
  err = ps_pread(J->P, base, &ptr32, sizeof(uint32_t));
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   198
  *ptr = ptr32;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   199
  return err;
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   200
}
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   201
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   202
static int read_pointer(jvm_agent_t* J, uint64_t base, uint64_t* ptr) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   203
  int err = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   204
  uint32_t ptr32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   205
489c9b5090e2 Initial load
duke
parents:
diff changeset
   206
  switch (DATA_MODEL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   207
  case PR_MODEL_LP64:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   208
    err = ps_pread(J->P, base, ptr, sizeof(uint64_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   209
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   210
  case PR_MODEL_ILP32:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   211
    err = ps_pread(J->P, base, &ptr32, sizeof(uint32_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   212
    *ptr = ptr32;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   213
    break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   214
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   215
489c9b5090e2 Initial load
duke
parents:
diff changeset
   216
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   217
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   218
489c9b5090e2 Initial load
duke
parents:
diff changeset
   219
static int read_string_pointer(jvm_agent_t* J, uint64_t base, const char ** stringp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   220
  uint64_t ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   221
  int err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   222
  char buffer[1024];
489c9b5090e2 Initial load
duke
parents:
diff changeset
   223
489c9b5090e2 Initial load
duke
parents:
diff changeset
   224
  *stringp = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   225
  err = read_pointer(J, base, &ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   226
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   227
  if (ptr != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   228
    err = read_string(J->P, buffer, sizeof(buffer), ptr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   229
    CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   230
    *stringp = strdup(buffer);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   231
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   232
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   233
489c9b5090e2 Initial load
duke
parents:
diff changeset
   234
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   235
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   236
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   237
489c9b5090e2 Initial load
duke
parents:
diff changeset
   238
static int parse_vmstruct_entry(jvm_agent_t* J, uint64_t base, VMStructEntry* vmp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   239
  uint64_t ptr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   240
  int err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   241
489c9b5090e2 Initial load
duke
parents:
diff changeset
   242
  err = read_string_pointer(J, base + OFFSET_VMStructEntrytypeName, &vmp->typeName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   243
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   244
  err = read_string_pointer(J, base + OFFSET_VMStructEntryfieldName, &vmp->fieldName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   245
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   246
  err = read_pointer(J, base + OFFSET_VMStructEntryaddress, &vmp->address);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   247
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   248
489c9b5090e2 Initial load
duke
parents:
diff changeset
   249
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   250
489c9b5090e2 Initial load
duke
parents:
diff changeset
   251
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   252
  if (vmp->typeName != NULL) free((void*)vmp->typeName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   253
  if (vmp->fieldName != NULL) free((void*)vmp->fieldName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   254
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   255
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   256
489c9b5090e2 Initial load
duke
parents:
diff changeset
   257
static int parse_vmstructs(jvm_agent_t* J) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   258
  VMStructEntry  vmVar;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   259
  VMStructEntry* vmp = &vmVar;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   260
  uint64_t gHotSpotVMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   261
  psaddr_t sym_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   262
  uint64_t base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   263
  int err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   264
25720
28c69e9cf5e2 8049684: pstack crashes on java core dump
kevinw
parents: 25714
diff changeset
   265
  /* Clear *vmp now in case we jump to fail: */
28c69e9cf5e2 8049684: pstack crashes on java core dump
kevinw
parents: 25714
diff changeset
   266
  memset(vmp, 0, sizeof(VMStructEntry));
28c69e9cf5e2 8049684: pstack crashes on java core dump
kevinw
parents: 25714
diff changeset
   267
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   268
  err = ps_pglobal_lookup(J->P, LIBJVM_SO, "gHotSpotVMStructs", &sym_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   269
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   270
  err = read_pointer(J, sym_addr, &gHotSpotVMStructs);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   271
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   272
  base = gHotSpotVMStructs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   273
489c9b5090e2 Initial load
duke
parents:
diff changeset
   274
  err = PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   275
  while (err == PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   276
    memset(vmp, 0, sizeof(VMStructEntry));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   277
    err = parse_vmstruct_entry(J, base, vmp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   278
    if (err != PS_OK || vmp->typeName == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   279
      break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   280
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   281
489c9b5090e2 Initial load
duke
parents:
diff changeset
   282
    if (vmp->typeName[0] == 'C' && strcmp("CodeCache", vmp->typeName) == 0) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   283
      /* Read _heaps field of type GrowableArray<CodeHeaps*>*      */
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   284
      if (strcmp("_heaps", vmp->fieldName) == 0) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   285
        err = read_pointer(J, vmp->address, &J->CodeCache_heaps_address);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   286
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   287
    } else if (vmp->typeName[0] == 'U' && strcmp("Universe", vmp->typeName) == 0) {
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   288
      if (strcmp("_narrow_oop._base", vmp->fieldName) == 0) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   289
        J->Universe_narrow_oop_base_address = vmp->address;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   290
      }
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   291
      if (strcmp("_narrow_oop._shift", vmp->fieldName) == 0) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   292
        J->Universe_narrow_oop_shift_address = vmp->address;
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   293
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   294
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   295
    CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   296
489c9b5090e2 Initial load
duke
parents:
diff changeset
   297
    base += SIZE_VMStructEntry;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   298
    if (vmp->typeName != NULL) free((void*)vmp->typeName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   299
    if (vmp->fieldName != NULL) free((void*)vmp->fieldName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   300
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   301
489c9b5090e2 Initial load
duke
parents:
diff changeset
   302
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   303
489c9b5090e2 Initial load
duke
parents:
diff changeset
   304
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   305
  if (vmp->typeName != NULL) free((void*)vmp->typeName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   306
  if (vmp->fieldName != NULL) free((void*)vmp->fieldName);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   307
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   308
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   309
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   310
static int find_symbol(jvm_agent_t* J, const char *name, uint64_t* valuep) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   311
  psaddr_t sym_addr;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   312
  int err;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   313
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   314
  err = ps_pglobal_lookup(J->P, LIBJVM_SO, name, &sym_addr);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   315
  if (err != PS_OK) goto fail;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   316
  *valuep = sym_addr;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   317
  return PS_OK;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   318
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   319
 fail:
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   320
  return err;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   321
}
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   322
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   323
static int read_volatiles(jvm_agent_t* J) {
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   324
  int i;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   325
  uint64_t array_data;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   326
  uint64_t code_heap_address;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   327
  int err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   328
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   329
  err = find_symbol(J, "UseCompressedOops", &J->Use_Compressed_Oops_address);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   330
  if (err == PS_OK) {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   331
    err = ps_pread(J->P,  J->Use_Compressed_Oops_address, &J->Use_Compressed_Oops, sizeof(uint8_t));
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   332
    CHECK_FAIL(err);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   333
  } else {
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   334
    J->Use_Compressed_Oops = 0;
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   335
  }
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   336
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   337
  err = read_pointer(J, J->Universe_narrow_oop_base_address, &J->Universe_narrow_oop_base);
360
21d113ecbf6a 6420645: Create a vm that uses compressed oops for up to 32gb heapsizes
coleenp
parents: 1
diff changeset
   338
  CHECK_FAIL(err);
2254
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   339
  err = ps_pread(J->P,  J->Universe_narrow_oop_shift_address, &J->Universe_narrow_oop_shift, sizeof(uint32_t));
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   340
  CHECK_FAIL(err);
f13dda645a4b 6791178: Specialize for zero as the compressed oop vm heap base
kvn
parents: 670
diff changeset
   341
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   342
  /* CodeCache_heaps_address points to GrowableArray<CodeHeaps*>, read _data field
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   343
     pointing to the first entry of type CodeCache* in the array */
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   344
  err = read_pointer(J, J->CodeCache_heaps_address + OFFSET_GrowableArray_CodeHeap_data, &array_data);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   345
  /* Read _len field containing the number of code heaps */
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   346
  err = ps_pread(J->P, J->CodeCache_heaps_address + OFFSET_GrowableArray_CodeHeap_len,
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   347
                 &J->Number_of_heaps, sizeof(J->Number_of_heaps));
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   348
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   349
  /* Allocate memory for heap configurations */
27158
d94370732d09 8059904: libjvm_db.c warnings in solaris/sparc build with SS
sspitsyn
parents: 26809
diff changeset
   350
  J->Heap_low         = (uint64_t*)calloc(J->Number_of_heaps, sizeof(uint64_t));
d94370732d09 8059904: libjvm_db.c warnings in solaris/sparc build with SS
sspitsyn
parents: 26809
diff changeset
   351
  J->Heap_high        = (uint64_t*)calloc(J->Number_of_heaps, sizeof(uint64_t));
d94370732d09 8059904: libjvm_db.c warnings in solaris/sparc build with SS
sspitsyn
parents: 26809
diff changeset
   352
  J->Heap_segmap_low  = (uint64_t*)calloc(J->Number_of_heaps, sizeof(uint64_t));
d94370732d09 8059904: libjvm_db.c warnings in solaris/sparc build with SS
sspitsyn
parents: 26809
diff changeset
   353
  J->Heap_segmap_high = (uint64_t*)calloc(J->Number_of_heaps, sizeof(uint64_t));
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   354
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   355
  /* Read code heap configurations */
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   356
  for (i = 0; i < J->Number_of_heaps; ++i) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   357
    /* Read address of heap */
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   358
    err = read_pointer(J, array_data, &code_heap_address);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   359
    CHECK_FAIL(err);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   360
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   361
    err = read_pointer(J, code_heap_address + OFFSET_CodeHeap_memory +
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   362
                       OFFSET_VirtualSpace_low, &J->Heap_low[i]);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   363
    CHECK_FAIL(err);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   364
    err = read_pointer(J, code_heap_address + OFFSET_CodeHeap_memory +
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   365
                       OFFSET_VirtualSpace_high, &J->Heap_high[i]);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   366
    CHECK_FAIL(err);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   367
    err = read_pointer(J, code_heap_address + OFFSET_CodeHeap_segmap +
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   368
                       OFFSET_VirtualSpace_low, &J->Heap_segmap_low[i]);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   369
    CHECK_FAIL(err);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   370
    err = read_pointer(J, code_heap_address + OFFSET_CodeHeap_segmap +
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   371
                       OFFSET_VirtualSpace_high, &J->Heap_segmap_high[i]);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   372
    CHECK_FAIL(err);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   373
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   374
    /* Increment pointer to next entry */
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   375
    array_data = array_data + POINTER_SIZE;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   376
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   377
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   378
  err = ps_pread(J->P, code_heap_address + OFFSET_CodeHeap_log2_segment_size,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   379
                 &J->SIZE_CodeCache_log2_segment, sizeof(J->SIZE_CodeCache_log2_segment));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   380
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   381
489c9b5090e2 Initial load
duke
parents:
diff changeset
   382
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   383
489c9b5090e2 Initial load
duke
parents:
diff changeset
   384
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   385
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   386
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   387
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   388
static int codeheap_contains(int heap_num, jvm_agent_t* J, uint64_t ptr) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   389
  return (J->Heap_low[heap_num] <= ptr && ptr < J->Heap_high[heap_num]);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   390
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   391
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   392
static int codecache_contains(jvm_agent_t* J, uint64_t ptr) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   393
  int i;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   394
  for (i = 0; i < J->Number_of_heaps; ++i) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   395
    if (codeheap_contains(i, J, ptr)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   396
      return 1;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   397
    }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   398
  }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   399
  return 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   400
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   401
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   402
static uint64_t segment_for(int heap_num, jvm_agent_t* J, uint64_t p) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   403
  return (p - J->Heap_low[heap_num]) >> J->SIZE_CodeCache_log2_segment;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   404
}
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   405
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   406
static uint64_t block_at(int heap_num, jvm_agent_t* J, int i) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   407
  return J->Heap_low[heap_num] + (i << J->SIZE_CodeCache_log2_segment);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   408
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   409
489c9b5090e2 Initial load
duke
parents:
diff changeset
   410
static int find_start(jvm_agent_t* J, uint64_t ptr, uint64_t *startp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   411
  int err;
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   412
  int i;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   413
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   414
  for (i = 0; i < J->Number_of_heaps; ++i) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   415
    *startp = 0;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   416
    if (codeheap_contains(i, J, ptr)) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   417
      int32_t used;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   418
      uint64_t segment = segment_for(i, J, ptr);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   419
      uint64_t block = J->Heap_segmap_low[i];
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   420
      uint8_t tag;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   421
      err = ps_pread(J->P, block + segment, &tag, sizeof(tag));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   422
      CHECK_FAIL(err);
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   423
      if (tag == 0xff)
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   424
        return PS_OK;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   425
      while (tag > 0) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   426
        err = ps_pread(J->P, block + segment, &tag, sizeof(tag));
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   427
        CHECK_FAIL(err);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   428
        segment -= tag;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   429
      }
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   430
      block = block_at(i, J, segment);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   431
      err = ps_pread(J->P, block + OFFSET_HeapBlockHeader_used, &used, sizeof(used));
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   432
      CHECK_FAIL(err);
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   433
      if (used) {
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   434
        *startp = block + SIZE_HeapBlockHeader;
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   435
      }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   436
    }
26796
666464578742 8015774: Add support for multiple code heaps
thartmann
parents: 25720
diff changeset
   437
    return PS_OK;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   438
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   439
489c9b5090e2 Initial load
duke
parents:
diff changeset
   440
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   441
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   442
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   443
489c9b5090e2 Initial load
duke
parents:
diff changeset
   444
static int find_jlong_constant(jvm_agent_t* J, const char *name, uint64_t* valuep) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   445
  psaddr_t sym_addr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   446
  int err = ps_pglobal_lookup(J->P, LIBJVM_SO, name, &sym_addr);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   447
  if (err == PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   448
    err = ps_pread(J->P, sym_addr, valuep, sizeof(uint64_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   449
    return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   450
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   451
  *valuep = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   452
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   453
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   454
489c9b5090e2 Initial load
duke
parents:
diff changeset
   455
jvm_agent_t *Jagent_create(struct ps_prochandle *P, int vers) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   456
  jvm_agent_t* J;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   457
  int err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   458
489c9b5090e2 Initial load
duke
parents:
diff changeset
   459
  if (vers != JVM_DB_VERSION) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   460
    errno = ENOTSUP;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   461
    return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   462
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   463
489c9b5090e2 Initial load
duke
parents:
diff changeset
   464
  J = (jvm_agent_t*)calloc(sizeof(struct jvm_agent), 1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   465
489c9b5090e2 Initial load
duke
parents:
diff changeset
   466
  debug = getenv("LIBJVMDB_DEBUG") != NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   467
  if (debug) debug = 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   468
489c9b5090e2 Initial load
duke
parents:
diff changeset
   469
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   470
      fprintf(stderr, "Jagent_create: debug=%d\n", debug);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   471
#ifdef X86_COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
   472
      fprintf(stderr, "Jagent_create: R_SP=%d, R_FP=%d, POINTER_SIZE=%d\n", R_SP, R_FP, POINTER_SIZE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   473
#endif  /* X86_COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   475
489c9b5090e2 Initial load
duke
parents:
diff changeset
   476
  J->P = P;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   477
489c9b5090e2 Initial load
duke
parents:
diff changeset
   478
  // Initialize the initial previous frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
   479
489c9b5090e2 Initial load
duke
parents:
diff changeset
   480
  J->prev_fr.fp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   481
  J->prev_fr.pc = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   482
  J->prev_fr.sp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   483
  J->prev_fr.sender_sp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   484
489c9b5090e2 Initial load
duke
parents:
diff changeset
   485
  err = find_symbol(J, "__1cHnmethodG__vtbl_", &J->nmethod_vtbl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   486
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   487
  err = find_symbol(J, "__1cKBufferBlobG__vtbl_", &J->BufferBlob_vtbl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   488
  if (err != PS_OK) J->BufferBlob_vtbl = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   489
  err = find_symbol(J, "__1cICodeBlobG__vtbl_", &J->CodeBlob_vtbl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   490
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   491
  err = find_symbol(J, "__1cLRuntimeStubG__vtbl_", &J->RuntimeStub_vtbl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   492
  CHECK_FAIL(err);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   493
  err = find_symbol(J, "__1cGMethodG__vtbl_", &J->Method_vtbl);
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   494
  CHECK_FAIL(err);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   495
489c9b5090e2 Initial load
duke
parents:
diff changeset
   496
  err = parse_vmstructs(J);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   497
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   498
  err = read_volatiles(J);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   499
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   500
489c9b5090e2 Initial load
duke
parents:
diff changeset
   501
  return J;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   502
489c9b5090e2 Initial load
duke
parents:
diff changeset
   503
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   504
  Jagent_destroy(J);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   505
  return NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   506
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   507
489c9b5090e2 Initial load
duke
parents:
diff changeset
   508
void Jagent_destroy(jvm_agent_t *J) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   509
  if (J != NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   510
    free(J);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   511
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   512
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   513
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   514
static int is_method(jvm_agent_t* J, uint64_t methodPtr) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   515
  uint64_t klass;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   516
  int err = read_pointer(J, methodPtr, &klass);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   517
  if (err != PS_OK) goto fail;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   518
  return klass == J->Method_vtbl;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   519
489c9b5090e2 Initial load
duke
parents:
diff changeset
   520
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   521
  return 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   523
489c9b5090e2 Initial load
duke
parents:
diff changeset
   524
static int
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   525
name_for_methodPtr(jvm_agent_t* J, uint64_t methodPtr, char * result, size_t size)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   526
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   527
  short nameIndex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   528
  short signatureIndex;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   529
  uint64_t constantPool;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   530
  uint64_t constMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   531
  uint64_t nameSymbol;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   532
  uint64_t signatureSymbol;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   533
  uint64_t klassPtr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   534
  uint64_t klassSymbol;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   535
  short klassSymbolLength;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   536
  short nameSymbolLength;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   537
  short signatureSymbolLength;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   538
  char * nameString = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   539
  char * klassString = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   540
  char * signatureString = NULL;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   541
  int err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   542
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   543
  err = read_pointer(J, methodPtr + OFFSET_Method_constMethod, &constMethod);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   544
  CHECK_FAIL(err);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   545
  err = read_pointer(J, constMethod + OFFSET_ConstMethod_constants, &constantPool);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   546
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   547
489c9b5090e2 Initial load
duke
parents:
diff changeset
   548
  /* To get name string */
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   549
  err = ps_pread(J->P, constMethod + OFFSET_ConstMethod_name_index, &nameIndex, 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   550
  CHECK_FAIL(err);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   551
  err = read_pointer(J, constantPool + nameIndex * POINTER_SIZE + SIZE_ConstantPool, &nameSymbol);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   552
  CHECK_FAIL(err);
8663
47d64a4e510e 7019165: Incorrect symbols in pstack output after SymbolTable changes
coleenp
parents: 8076
diff changeset
   553
  // The symbol is a CPSlot and has lower bit set to indicate metadata
47d64a4e510e 7019165: Incorrect symbols in pstack output after SymbolTable changes
coleenp
parents: 8076
diff changeset
   554
  nameSymbol &= (~1); // remove metadata lsb
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 6418
diff changeset
   555
  err = ps_pread(J->P, nameSymbol + OFFSET_Symbol_length, &nameSymbolLength, 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   556
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   557
  nameString = (char*)calloc(nameSymbolLength + 1, 1);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 6418
diff changeset
   558
  err = ps_pread(J->P, nameSymbol + OFFSET_Symbol_body, nameString, nameSymbolLength);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   559
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   560
489c9b5090e2 Initial load
duke
parents:
diff changeset
   561
  /* To get signature string */
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   562
  err = ps_pread(J->P, constMethod + OFFSET_ConstMethod_signature_index, &signatureIndex, 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   563
  CHECK_FAIL(err);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   564
  err = read_pointer(J, constantPool + signatureIndex * POINTER_SIZE + SIZE_ConstantPool, &signatureSymbol);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   565
  CHECK_FAIL(err);
8663
47d64a4e510e 7019165: Incorrect symbols in pstack output after SymbolTable changes
coleenp
parents: 8076
diff changeset
   566
  signatureSymbol &= (~1);  // remove metadata lsb
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 6418
diff changeset
   567
  err = ps_pread(J->P, signatureSymbol + OFFSET_Symbol_length, &signatureSymbolLength, 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   568
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   569
  signatureString = (char*)calloc(signatureSymbolLength + 1, 1);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 6418
diff changeset
   570
  err = ps_pread(J->P, signatureSymbol + OFFSET_Symbol_body, signatureString, signatureSymbolLength);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   571
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   572
489c9b5090e2 Initial load
duke
parents:
diff changeset
   573
  /* To get klass string */
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   574
  err = read_pointer(J, constantPool + OFFSET_ConstantPool_pool_holder, &klassPtr);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   575
  CHECK_FAIL(err);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   576
  err = read_pointer(J, klassPtr + OFFSET_Klass_name, &klassSymbol);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   577
  CHECK_FAIL(err);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 6418
diff changeset
   578
  err = ps_pread(J->P, klassSymbol + OFFSET_Symbol_length, &klassSymbolLength, 2);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   579
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   580
  klassString = (char*)calloc(klassSymbolLength + 1, 1);
8076
96d498ec7ae1 6990754: Use native memory and reference counting to implement SymbolTable
coleenp
parents: 6418
diff changeset
   581
  err = ps_pread(J->P, klassSymbol + OFFSET_Symbol_body, klassString, klassSymbolLength);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   582
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   583
489c9b5090e2 Initial load
duke
parents:
diff changeset
   584
  result[0] = '\0';
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
   585
  if (snprintf(result, size,
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
   586
    "%s.%s%s",
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
   587
    klassString,
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
   588
    nameString,
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
   589
    signatureString) >= size) {
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
   590
    // truncation
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
   591
    goto fail;
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
   592
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   593
489c9b5090e2 Initial load
duke
parents:
diff changeset
   594
  if (nameString != NULL) free(nameString);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   595
  if (klassString != NULL) free(klassString);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   596
  if (signatureString != NULL) free(signatureString);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   597
489c9b5090e2 Initial load
duke
parents:
diff changeset
   598
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   599
489c9b5090e2 Initial load
duke
parents:
diff changeset
   600
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   601
  if (debug) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   602
      fprintf(stderr, "name_for_methodPtr: FAIL \n\n");
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   603
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   604
  if (nameString != NULL) free(nameString);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   605
  if (klassString != NULL) free(klassString);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   606
  if (signatureString != NULL) free(signatureString);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   607
  return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   608
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   609
489c9b5090e2 Initial load
duke
parents:
diff changeset
   610
static int nmethod_info(Nmethod_t *N)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   611
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   612
  jvm_agent_t *J = N->J;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   613
  uint64_t    nm = N->nm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   614
  int32_t err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   615
489c9b5090e2 Initial load
duke
parents:
diff changeset
   616
  if (debug > 2 )
489c9b5090e2 Initial load
duke
parents:
diff changeset
   617
      fprintf(stderr, "\t nmethod_info: BEGIN \n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   618
489c9b5090e2 Initial load
duke
parents:
diff changeset
   619
  /* Instructions */
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   620
  err = read_pointer(J, nm + OFFSET_CodeBlob_code_begin, &N->instrs_beg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   621
  CHECK_FAIL(err);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   622
  err = read_pointer(J, nm + OFFSET_CodeBlob_code_end, &N->instrs_end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   623
  CHECK_FAIL(err);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   624
  err = read_pointer(J, nm + OFFSET_nmethod_deopt_handler_begin, &N->deopt_beg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   625
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   626
  err = ps_pread(J->P, nm + OFFSET_nmethod_orig_pc_offset, &N->orig_pc_offset, SZ32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   627
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   628
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   629
  /* Metadata */
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   630
  err = ps_pread(J->P, nm + OFFSET_nmethod_metadata_offset, &N->metadata_beg, SZ32);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   631
  CHECK_FAIL(err);
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   632
  err = ps_pread(J->P, nm + OFFSET_nmethod_scopes_data_begin, &N->metadata_end, SZ32);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   633
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   634
489c9b5090e2 Initial load
duke
parents:
diff changeset
   635
  /* scopes_pcs */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   636
  err = ps_pread(J->P, nm + OFFSET_nmethod_scopes_pcs_offset, &N->scopes_pcs_beg, SZ32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   637
  CHECK_FAIL(err);
26686
d7bc560b0ee9 8054174: minor buglet in computation of end of pc descs in libjvm_db.c
dsamersoff
parents: 25720
diff changeset
   638
  err = ps_pread(J->P, nm + OFFSET_nmethod_dependencies_offset, &N->scopes_pcs_end, SZ32);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   639
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   640
489c9b5090e2 Initial load
duke
parents:
diff changeset
   641
  /* scopes_data */
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   642
  err = ps_pread(J->P, nm + OFFSET_nmethod_scopes_data_begin, &N->scopes_data_beg, POINTER_SIZE);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   643
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   644
489c9b5090e2 Initial load
duke
parents:
diff changeset
   645
  if (debug > 2 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   646
      N->scopes_data_end = N->scopes_pcs_beg;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   647
489c9b5090e2 Initial load
duke
parents:
diff changeset
   648
      fprintf(stderr, "\t nmethod_info: instrs_beg: %#x, instrs_end: %#x\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   649
                       N->instrs_beg, N->instrs_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   650
489c9b5090e2 Initial load
duke
parents:
diff changeset
   651
      fprintf(stderr, "\t nmethod_info: deopt_beg: %#x \n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   652
                       N->deopt_beg);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   653
489c9b5090e2 Initial load
duke
parents:
diff changeset
   654
      fprintf(stderr, "\t nmethod_info: orig_pc_offset: %#x \n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   655
                       N->orig_pc_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   656
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   657
      fprintf(stderr, "\t nmethod_info: metadata_beg: %#x, metadata_end: %#x\n",
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   658
                       N->metadata_beg, N->metadata_end);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   659
489c9b5090e2 Initial load
duke
parents:
diff changeset
   660
      fprintf(stderr, "\t nmethod_info: scopes_data_beg: %#x, scopes_data_end: %#x\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   661
                       N->scopes_data_beg, N->scopes_data_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   662
489c9b5090e2 Initial load
duke
parents:
diff changeset
   663
      fprintf(stderr, "\t nmethod_info: scopes_pcs_beg: %#x, scopes_pcs_end: %#x\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   664
                       N->scopes_pcs_beg, N->scopes_pcs_end);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   665
489c9b5090e2 Initial load
duke
parents:
diff changeset
   666
      fprintf(stderr, "\t nmethod_info: END \n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   667
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   668
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   669
489c9b5090e2 Initial load
duke
parents:
diff changeset
   670
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   671
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   672
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   673
489c9b5090e2 Initial load
duke
parents:
diff changeset
   674
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   675
raw_read_int(jvm_agent_t* J, uint64_t *buffer, int32_t *val)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   676
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   677
  int shift = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   678
  int value = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   679
  uint8_t ch = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   680
  int32_t  err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   681
  int32_t sum;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   682
  // Constants for UNSIGNED5 coding of Pack200
489c9b5090e2 Initial load
duke
parents:
diff changeset
   683
  // see compressedStream.hpp
489c9b5090e2 Initial load
duke
parents:
diff changeset
   684
  enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   685
    lg_H = 6,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   686
    H = 1<<lg_H,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   687
    BitsPerByte = 8,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   688
    L = (1<<BitsPerByte)-H,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   689
  };
489c9b5090e2 Initial load
duke
parents:
diff changeset
   690
  int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   691
489c9b5090e2 Initial load
duke
parents:
diff changeset
   692
  err = ps_pread(J->P, (*buffer)++, &ch, sizeof(uint8_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   693
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   694
  if (debug > 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   695
      fprintf(stderr, "\t\t\t raw_read_int: *buffer: %#llx, ch: %#x\n", *buffer, ch);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   696
489c9b5090e2 Initial load
duke
parents:
diff changeset
   697
  sum = ch;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   698
  if ( sum >= L ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   699
    int32_t lg_H_i = lg_H;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   700
    // Read maximum of 5 total bytes (we've already read 1).
489c9b5090e2 Initial load
duke
parents:
diff changeset
   701
    // See CompressedReadStream::read_int_mb
489c9b5090e2 Initial load
duke
parents:
diff changeset
   702
    for ( i = 0;  i < 4; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   703
      err = ps_pread(J->P, (*buffer)++, &ch, sizeof(uint8_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   704
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   705
      sum += ch << lg_H_i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   706
      if (ch < L ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   707
        *val = sum;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   708
        return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   709
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   710
      lg_H_i += lg_H;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   711
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   712
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   713
  *val = sum;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   714
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   715
489c9b5090e2 Initial load
duke
parents:
diff changeset
   716
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   717
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   718
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   719
489c9b5090e2 Initial load
duke
parents:
diff changeset
   720
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   721
read_pair(jvm_agent_t* J, uint64_t *buffer, int32_t *bci, int32_t *line)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   722
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   723
  uint8_t next = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   724
  int32_t bci_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   725
  int32_t line_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   726
  int32_t err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   727
489c9b5090e2 Initial load
duke
parents:
diff changeset
   728
  if (debug > 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   729
      fprintf(stderr, "\t\t read_pair: BEGIN\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   730
489c9b5090e2 Initial load
duke
parents:
diff changeset
   731
  err = ps_pread(J->P, (*buffer)++, &next, sizeof(uint8_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
   732
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   733
489c9b5090e2 Initial load
duke
parents:
diff changeset
   734
  if (next == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   735
      if (debug > 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   736
          fprintf(stderr, "\t\t read_pair: END: next == 0\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   737
      return 1; /* stream terminated */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   738
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   739
  if (next == 0xFF) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   740
      if (debug > 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   741
          fprintf(stderr, "\t\t read_pair: END: next == 0xFF\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   742
489c9b5090e2 Initial load
duke
parents:
diff changeset
   743
      /* Escape character, regular compression used */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   744
489c9b5090e2 Initial load
duke
parents:
diff changeset
   745
      err = raw_read_int(J, buffer, &bci_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   746
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   747
489c9b5090e2 Initial load
duke
parents:
diff changeset
   748
      err = raw_read_int(J, buffer, &line_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   749
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   750
489c9b5090e2 Initial load
duke
parents:
diff changeset
   751
      *bci  += bci_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   752
      *line += line_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   753
489c9b5090e2 Initial load
duke
parents:
diff changeset
   754
      if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   755
          fprintf(stderr, "\t\t read_pair: delta = (line %d: %d)\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   756
                          line_delta, bci_delta);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   757
          fprintf(stderr, "\t\t read_pair: unpack= (line %d: %d)\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   758
                          *line, *bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   759
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   760
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   761
      /* Single byte compression used */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   762
      *bci  += next >> 3;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   763
      *line += next & 0x7;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   764
      if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   765
          fprintf(stderr, "\t\t read_pair: delta = (line %d: %d)\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   766
                          next & 0x7, next >> 3);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   767
          fprintf(stderr, "\t\t read_pair: unpack= (line %d: %d)\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   768
                          *line, *bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   769
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   770
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   771
  if (debug > 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   772
      fprintf(stderr, "\t\t read_pair: END\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   773
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   774
489c9b5090e2 Initial load
duke
parents:
diff changeset
   775
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   776
  if (debug)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   777
      fprintf(stderr, "\t\t read_pair: FAIL\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   778
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   779
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   780
489c9b5090e2 Initial load
duke
parents:
diff changeset
   781
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   782
line_number_from_bci(jvm_agent_t* J, Vframe_t *vf)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   783
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   784
  uint64_t buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   785
  uint16_t code_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   786
  uint64_t code_end_delta;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   787
  uint64_t constMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   788
  int8_t   access_flags;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   789
  int32_t  best_bci    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   790
  int32_t  stream_bci  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   791
  int32_t  stream_line = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   792
  int32_t  err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   793
489c9b5090e2 Initial load
duke
parents:
diff changeset
   794
  if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   795
      char name[256];
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   796
      err = name_for_methodPtr(J, vf->method, name, 256);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   797
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   798
      fprintf(stderr, "\t line_number_from_bci: BEGIN, method name: %s, targ bci: %d\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   799
                       name, vf->bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   800
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   801
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   802
  err = read_pointer(J, vf->method + OFFSET_Method_constMethod, &constMethod);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   803
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   804
489c9b5090e2 Initial load
duke
parents:
diff changeset
   805
  vf->line = 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   806
  err = ps_pread(J->P, constMethod + OFFSET_ConstMethod_flags, &access_flags, sizeof(int8_t));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   807
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   808
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   809
  if (!(access_flags & ConstMethod_has_linenumber_table)) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   810
      if (debug > 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   811
          fprintf(stderr, "\t line_number_from_bci: END: !HAS_LINE_NUMBER_TABLE \n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   812
      return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   813
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   814
489c9b5090e2 Initial load
duke
parents:
diff changeset
   815
  /*  The line numbers are a short array of 2-tuples [start_pc, line_number].
489c9b5090e2 Initial load
duke
parents:
diff changeset
   816
   *  Not necessarily sorted and not necessarily one-to-one.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   817
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   818
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   819
  err = ps_pread(J->P, constMethod + OFFSET_ConstMethod_code_size, &code_size, SZ16);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   820
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   821
489c9b5090e2 Initial load
duke
parents:
diff changeset
   822
  /* inlined_table_start() */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   823
  code_end_delta = (uint64_t) (access_flags & AccessFlags_NATIVE) ? 2*POINTER_SIZE : 0;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   824
  buffer = constMethod + (uint64_t) SIZE_ConstMethod + (uint64_t) code_size + code_end_delta;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   825
489c9b5090e2 Initial load
duke
parents:
diff changeset
   826
  if (debug > 2) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   827
      fprintf(stderr, "\t\t line_number_from_bci: method: %#llx, native: %d\n",
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   828
                      vf->method, (access_flags & AccessFlags_NATIVE));
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   829
      fprintf(stderr, "\t\t line_number_from_bci: buffer: %#llx, code_size: %d\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   830
                      buffer, (int) code_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   831
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   832
489c9b5090e2 Initial load
duke
parents:
diff changeset
   833
  while (read_pair(J, &buffer, &stream_bci, &stream_line) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   834
      if (stream_bci == vf->bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   835
          /* perfect match */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   836
          if (debug > 2)
33619
90563f58e60a 8139762: Format warnings in libjvm_db.c
dsamersoff
parents: 32192
diff changeset
   837
              fprintf(stderr, "\t line_number_from_bci: END: exact line: %d \n\n", vf->line);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   838
          vf->line = stream_line;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   839
          return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   840
      } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   841
          /* update best_bci/line */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   842
          if (stream_bci < vf->bci && stream_bci >= best_bci) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   843
              best_bci = stream_bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   844
              vf->line = stream_line;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   845
              if (debug > 2) {
33619
90563f58e60a 8139762: Format warnings in libjvm_db.c
dsamersoff
parents: 32192
diff changeset
   846
                  fprintf(stderr, "\t line_number_from_bci: best_bci: %d, best_line: %d\n",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   847
                                   best_bci, vf->line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   848
              }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   849
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   850
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   851
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   852
  if (debug > 2)
33619
90563f58e60a 8139762: Format warnings in libjvm_db.c
dsamersoff
parents: 32192
diff changeset
   853
      fprintf(stderr, "\t line_number_from_bci: END: line: %d \n\n", vf->line);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   854
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   855
489c9b5090e2 Initial load
duke
parents:
diff changeset
   856
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   857
  if (debug)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   858
      fprintf(stderr, "\t line_number_from_bci: FAIL\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   859
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   860
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   861
489c9b5090e2 Initial load
duke
parents:
diff changeset
   862
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   863
get_real_pc(Nmethod_t *N, uint64_t pc_desc, uint64_t *real_pc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   864
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   865
  int32_t pc_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   866
  int32_t err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   867
489c9b5090e2 Initial load
duke
parents:
diff changeset
   868
  err = ps_pread(N->J->P, pc_desc + OFFSET_PcDesc_pc_offset, &pc_offset, SZ32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   869
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   870
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   871
  *real_pc = N->instrs_beg + pc_offset;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   872
  if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   873
      fprintf(stderr, "\t\t get_real_pc: pc_offset: %lx, real_pc: %llx\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   874
                       pc_offset, *real_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   875
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   876
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   877
489c9b5090e2 Initial load
duke
parents:
diff changeset
   878
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   879
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   880
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   881
489c9b5090e2 Initial load
duke
parents:
diff changeset
   882
/* Finds a PcDesc with real-pc equal to N->pc */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   883
static int pc_desc_at(Nmethod_t *N)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   884
{
32192
147f23238b67 8080401: Uninitialised variable in hotspot/src/os/solaris/dtrace/
sspitsyn
parents: 30281
diff changeset
   885
  uint64_t pc_diff = 999;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   886
  int32_t offs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   887
  int32_t err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   888
489c9b5090e2 Initial load
duke
parents:
diff changeset
   889
  if (debug > 2)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   890
      fprintf(stderr, "\t pc_desc_at: BEGIN\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   891
489c9b5090e2 Initial load
duke
parents:
diff changeset
   892
  N->vf_cnt  = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   893
  N->pc_desc = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   894
489c9b5090e2 Initial load
duke
parents:
diff changeset
   895
  for (offs = N->scopes_pcs_beg; offs < N->scopes_pcs_end; offs += SIZE_PcDesc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   896
      uint64_t pd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   897
      uint64_t best_pc_diff = 16;       /* some approximation */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   898
      uint64_t real_pc = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   899
489c9b5090e2 Initial load
duke
parents:
diff changeset
   900
      pd = N->nm + offs;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   901
      err = get_real_pc(N, pd, &real_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   902
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   903
489c9b5090e2 Initial load
duke
parents:
diff changeset
   904
      pc_diff = real_pc - N->pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   905
489c9b5090e2 Initial load
duke
parents:
diff changeset
   906
      /* In general, this fragment should work */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   907
      if (pc_diff == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   908
          N->pc_desc = pd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   909
          if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   910
            fprintf(stderr, "\t pc_desc_at: END: pc_desc: FOUND: %#lx \n\n", pd);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   911
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   912
          return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   913
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   914
      /* This fragment is to be able to find out an appropriate
489c9b5090e2 Initial load
duke
parents:
diff changeset
   915
       * pc_desc entry even if pc_desc info is inaccurate.
489c9b5090e2 Initial load
duke
parents:
diff changeset
   916
       */
489c9b5090e2 Initial load
duke
parents:
diff changeset
   917
      if (best_pc_diff > pc_diff && pc_diff > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   918
          best_pc_diff = pc_diff;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   919
          N->pc_desc = pd;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   920
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   921
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   922
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   923
      fprintf(stderr, "\t pc_desc_at: END: pc_desc NOT FOUND");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   924
      if (pc_diff < 20)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   925
          fprintf(stderr, ", best pc_diff: %d\n\n", pc_diff);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   926
      else
489c9b5090e2 Initial load
duke
parents:
diff changeset
   927
          fprintf(stderr, "\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   928
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   929
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   930
489c9b5090e2 Initial load
duke
parents:
diff changeset
   931
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   932
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   933
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   934
489c9b5090e2 Initial load
duke
parents:
diff changeset
   935
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
   936
scope_desc_at(Nmethod_t *N, int32_t decode_offset, Vframe_t *vf)
489c9b5090e2 Initial load
duke
parents:
diff changeset
   937
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
   938
  uint64_t buffer;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   939
  int32_t  err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   940
489c9b5090e2 Initial load
duke
parents:
diff changeset
   941
  if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   942
      fprintf(stderr, "\t\t scope_desc_at: BEGIN \n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   943
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   944
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
   945
  buffer = N->scopes_data_beg + decode_offset;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   946
489c9b5090e2 Initial load
duke
parents:
diff changeset
   947
  err = raw_read_int(N->J, &buffer, &vf->sender_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   948
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   949
489c9b5090e2 Initial load
duke
parents:
diff changeset
   950
  err = raw_read_int(N->J, &buffer, &vf->methodIdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   951
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   952
489c9b5090e2 Initial load
duke
parents:
diff changeset
   953
  err = raw_read_int(N->J, &buffer, &vf->bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   954
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   955
489c9b5090e2 Initial load
duke
parents:
diff changeset
   956
  if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
   957
      fprintf(stderr, "\t\t scope_desc_at: sender_decode_offset: %#x\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
   958
                      vf->sender_decode_offset);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   959
      fprintf(stderr, "\t\t scope_desc_at: methodIdx: %d\n", vf->methodIdx);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   960
      fprintf(stderr, "\t\t scope_desc_at: bci: %d\n", vf->bci);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   961
489c9b5090e2 Initial load
duke
parents:
diff changeset
   962
      fprintf(stderr, "\t\t scope_desc_at: END \n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
   963
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
   964
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   965
489c9b5090e2 Initial load
duke
parents:
diff changeset
   966
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
   967
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   968
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
   969
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   970
static int scopeDesc_chain(Nmethod_t *N) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   971
  int32_t decode_offset = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   972
  int32_t err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
   973
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   974
  if (debug > 2) {
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   975
    fprintf(stderr, "\t scopeDesc_chain: BEGIN\n");
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   976
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   977
489c9b5090e2 Initial load
duke
parents:
diff changeset
   978
  err = ps_pread(N->J->P, N->pc_desc + OFFSET_PcDesc_scope_decode_offset,
489c9b5090e2 Initial load
duke
parents:
diff changeset
   979
                 &decode_offset, SZ32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   980
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
   981
489c9b5090e2 Initial load
duke
parents:
diff changeset
   982
  while (decode_offset > 0) {
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   983
    Vframe_t *vf = &N->vframes[N->vf_cnt];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   984
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   985
    if (debug > 2) {
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   986
      fprintf(stderr, "\t scopeDesc_chain: decode_offset: %#x\n", decode_offset);
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   987
    }
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   988
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   989
    err = scope_desc_at(N, decode_offset, vf);
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   990
    CHECK_FAIL(err);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   991
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   992
    if (vf->methodIdx > ((N->metadata_end - N->metadata_beg) / POINTER_SIZE)) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   993
      fprintf(stderr, "\t scopeDesc_chain: (methodIdx > metadata length) !\n");
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   994
      return -1;
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   995
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   996
    err = read_pointer(N->J, N->nm + N->metadata_beg + (vf->methodIdx-1)*POINTER_SIZE,
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
   997
                       &vf->method);
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
   998
    CHECK_FAIL(err);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
   999
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1000
    if (vf->method) {
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1001
      N->vf_cnt++;
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1002
      err = line_number_from_bci(N->J, vf);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1003
      CHECK_FAIL(err);
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1004
      if (debug > 2) {
33619
90563f58e60a 8139762: Format warnings in libjvm_db.c
dsamersoff
parents: 32192
diff changeset
  1005
        fprintf(stderr, "\t scopeDesc_chain: method: %#8llx, line: %d\n",
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1006
                vf->method, vf->line);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1007
      }
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1008
    }
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1009
    decode_offset = vf->sender_decode_offset;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1010
  }
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1011
  if (debug > 2) {
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1012
    fprintf(stderr, "\t scopeDesc_chain: END \n\n");
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1013
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1014
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1015
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1016
 fail:
4493
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1017
  if (debug) {
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1018
    fprintf(stderr, "\t scopeDesc_chain: FAIL \n\n");
9204129f065e 6843629: Make current hotspot build part of jdk5 control build
phh
parents: 3261
diff changeset
  1019
  }
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1020
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1021
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1022
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1023
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1024
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1025
name_for_nmethod(jvm_agent_t* J,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1026
                 uint64_t nm,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1027
                 uint64_t pc,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1028
                 uint64_t method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1029
                 char *result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1030
                 size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1031
                 Jframe_t *jframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1032
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1033
  Nmethod_t *N;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1034
  Vframe_t *vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1035
  int32_t err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1036
  int deoptimized = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1037
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1038
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1039
      fprintf(stderr, "name_for_nmethod: BEGIN: nmethod: %#llx, pc: %#llx\n", nm, pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1040
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1041
  if (J->N == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1042
    J->N = (Nmethod_t *) malloc(sizeof(Nmethod_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1043
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1044
  memset(J->N, 0, sizeof(Nmethod_t));   /* Initial stat: all values are zeros */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1045
  N     = J->N;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1046
  N->J  = J;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1047
  N->nm = nm;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1048
  N->pc = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1049
  N->jframe = jframe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1050
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1051
  err = nmethod_info(N);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1052
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1053
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1054
      fprintf(stderr, "name_for_nmethod: pc: %#llx, deopt_pc:  %#llx\n",
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
  1055
              pc, N->deopt_beg);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1056
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1057
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1058
  /* check for a deoptimized frame */
38133
78b95467b9f1 8151956: Support non-continuous CodeBlobs in HotSpot
rbackman
parents: 33619
diff changeset
  1059
  if ( pc == N->deopt_beg) {
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1060
    uint64_t base;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1061
    if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1062
        fprintf(stderr, "name_for_nmethod: found deoptimized frame\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1063
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1064
    if (J->prev_fr.sender_sp != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1065
      base = J->prev_fr.sender_sp + N->orig_pc_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1066
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1067
      base = J->curr_fr.sp + N->orig_pc_offset;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1068
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1069
    err = read_pointer(J, base, &N->pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1070
    CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1071
    if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1072
        fprintf(stderr, "name_for_nmethod: found deoptimized frame converting pc from %#8llx to %#8llx\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1073
        pc,  N->pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1074
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1075
    deoptimized = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1076
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1077
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1078
  err = pc_desc_at(N);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1079
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1080
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1081
  if (N->pc_desc > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1082
      jframe->locinf = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1083
      err = scopeDesc_chain(N);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1084
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1085
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1086
  result[0] = COMP_METHOD_SIGN;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1087
  vf = &N->vframes[0];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1088
  if (N->vf_cnt > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1089
      jframe->vf_cnt = N->vf_cnt;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1090
      jframe->bci  = vf->bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1091
      jframe->line = vf->line;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1092
      err = name_for_methodPtr(J, N->vframes[0].method, result+1, size-1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1093
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1094
  } else {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1095
      err = name_for_methodPtr(J, method, result+1, size-1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1096
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1097
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1098
  if (deoptimized) {
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
  1099
    strncat(result, " [deoptimized frame]; ", size - strlen(result) - 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1100
  } else {
30281
b1608535e50f 8076475: Misuses of strncpy/strncat
stuefe
parents: 27158
diff changeset
  1101
    strncat(result, " [compiled] ", size - strlen(result) - 1);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1102
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1103
  if (debug)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1104
      fprintf(stderr, "name_for_nmethod: END: method name: %s, vf_cnt: %d\n\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1105
                      result, N->vf_cnt);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1106
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1107
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1108
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1109
  if (debug)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1110
      fprintf(stderr, "name_for_nmethod: FAIL \n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1111
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1112
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1113
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1114
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1115
name_for_imethod(jvm_agent_t* J,
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1116
                 uint64_t bcp,
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1117
                 uint64_t method,
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1118
                 char *result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1119
                 size_t size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1120
                 Jframe_t *jframe
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1121
) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1122
  uint64_t bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1123
  uint64_t constMethod;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1124
  Vframe_t vframe = {0};
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1125
  Vframe_t *vf = &vframe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1126
  int32_t   err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1127
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1128
  err = read_pointer(J, method + OFFSET_Method_constMethod, &constMethod);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1129
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1130
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1131
  bci = bcp - (constMethod + (uint64_t) SIZE_ConstMethod);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1132
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1133
  if (debug)
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1134
      fprintf(stderr, "\t name_for_imethod: BEGIN: method: %#llx\n", method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1135
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1136
  err = name_for_methodPtr(J, method, result, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1137
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1138
  if (debug)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1139
      fprintf(stderr, "\t name_for_imethod: method name: %s\n", result);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1140
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1141
  if (bci > 0) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1142
      vf->method = method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1143
      vf->bci       = bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1144
      err = line_number_from_bci(J, vf);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1145
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1146
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1147
  jframe->bci  = vf->bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1148
  jframe->line = vf->line;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1149
  jframe->locinf = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1150
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1151
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1152
      fprintf(stderr, "\t name_for_imethod: END: bci: %d, line: %d\n\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1153
                      vf->bci, vf->line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1154
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1155
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1156
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1157
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1158
  if (debug)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1159
      fprintf(stderr, "\t name_for_imethod: FAIL\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1160
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1161
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1162
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1163
static int
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1164
name_for_codecache(jvm_agent_t* J, uint64_t fp, uint64_t pc, char * result,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1165
                   size_t size, Jframe_t *jframe, int* is_interpreted)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1166
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1167
  uint64_t start;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1168
  uint64_t vtbl;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1169
  int32_t err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1170
  *is_interpreted = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1171
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1172
  result[0] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1173
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1174
  err = find_start(J, pc, &start);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1175
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1176
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1177
  err = read_pointer(J, start, &vtbl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1178
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1179
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1180
  if (vtbl == J->nmethod_vtbl) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1181
    uint64_t method;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1182
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1183
    err = read_pointer(J, start + OFFSET_nmethod_method, &method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1184
    CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1185
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1186
    if (debug) {
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1187
        fprintf(stderr, "name_for_codecache: start: %#8llx, pc: %#8llx, method: %#8llx \n",
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1188
                        start, pc, method);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1189
    }
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1190
    err = name_for_nmethod(J, start, pc, method, result, size, jframe);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1191
    CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1192
  } else if (vtbl == J->BufferBlob_vtbl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1193
    const char * name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1194
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1195
    err = read_string_pointer(J, start + OFFSET_CodeBlob_name, &name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1196
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1197
    /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1198
     * Temporary usage of string "Interpreter".
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1199
     * We need some other way to distinguish "StubRoutines"
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1200
     * and regular interpreted frames.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1201
     */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1202
    if (err == PS_OK && strncmp(name, "Interpreter", 11) == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1203
      *is_interpreted = 1;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1204
      if (is_method(J, J->methodPtr)) {
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1205
        return name_for_imethod(J, J->bcp, J->methodPtr, result, size, jframe);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1206
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1207
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1208
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1209
    if (err == PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1210
      strncpy(result, name, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1211
      free((void*)name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1212
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1213
      strncpy(result, "<unknown BufferBlob>", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1214
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1215
    /* return PS_OK; */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1216
  } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1217
    const char * name;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1218
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1219
    err = read_string_pointer(J, start + OFFSET_CodeBlob_name, &name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1220
    if (err == PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1221
      strncpy(result, name, size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1222
      free((void*)name);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1223
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1224
      strncpy(result, "<unknown CodeBlob>", size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1225
      WARN1("unknown CodeBlob: vtbl = 0x%x", vtbl);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1226
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1227
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1228
  result[size-1] = '\0';
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1229
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1230
#ifdef X86_COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1231
  if (vtbl != J->RuntimeStub_vtbl) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1232
    uint64_t trial_pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1233
    int frame_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1234
    err = ps_pread(J->P, start + OFFSET_CodeBlob_frame_size,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1235
                         &frame_size, SZ32);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1236
    CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1237
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1238
    // frame_size is in words, we want bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1239
    frame_size *= POINTER_SIZE; /* word => byte conversion */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1240
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1241
    /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1242
      Because c2 doesn't use FP as a framepointer the value of sp/fp we receive
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1243
      in the initial entry to a set of stack frames containing server frames
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1244
      will pretty much be nonsense. We can detect that nonsense by looking to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1245
      see if the PC we received is correct if we look at the expected storage
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1246
      location in relation to the FP (ie. POINTER_SIZE(FP) )
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1247
    */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1248
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1249
    err = read_pointer(J, fp + POINTER_SIZE , &trial_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1250
    if ( (err != PS_OK || trial_pc != pc) && frame_size > 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1251
      // Either we couldn't even read at the "fp" or the pc didn't match
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1252
      // both are sure clues that the fp is bogus. We no search the stack
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1253
      // for a reasonable number of words trying to find the bogus fp
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1254
      // and the current pc in adjacent words. The we will be able to
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1255
      // deduce an approximation of the frame pointer and actually get
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1256
      // the correct stack pointer. Which we can then unwind for the
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1257
      // next frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1258
      int i;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1259
      uint64_t check;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1260
      uint64_t base = J->curr_fr.sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1261
      uint64_t prev_fp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1262
      for ( i = 0; i < frame_size * 5 ; i++, base += POINTER_SIZE ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1263
        err = read_pointer(J, base , &check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1264
        CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1265
        if (check == fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1266
          base += POINTER_SIZE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1267
          err = read_pointer(J, base , &check);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1268
          CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1269
          if (check == pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1270
            if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1271
              fprintf(stderr, "name_for_codecache: found matching fp/pc combo at 0x%llx\n", base - POINTER_SIZE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1272
            }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1273
            prev_fp = base - 2 * POINTER_SIZE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1274
            break;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1275
          }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1276
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1277
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1278
      if ( prev_fp != 0 ) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1279
        // real_sp is the sp we should have received for this frame
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1280
        uint64_t real_sp = prev_fp + 2 * POINTER_SIZE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1281
        // +POINTER_SIZE because callee owns the return address so caller's sp is +1 word
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1282
        jframe->new_sp = real_sp + frame_size + POINTER_SIZE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1283
        err = read_pointer(J, jframe->new_sp - POINTER_SIZE , &jframe->new_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1284
        CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1285
        err = read_pointer(J, jframe->new_sp - 2*POINTER_SIZE, &jframe->new_fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1286
        CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1287
        return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1288
      }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1289
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1290
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1291
    /* A prototype to workaround FP absence */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1292
    /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1293
     * frame_size can be 0 for StubRoutines (1) frame.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1294
     * In this case it should work with fp as usual.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1295
     */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1296
    if (frame_size > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1297
      jframe->new_fp = J->prev_fr.fp + frame_size;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1298
      jframe->new_sp = jframe->new_fp + 2 * POINTER_SIZE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1299
    } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1300
      memset(&J->curr_fr, 0, sizeof(Frame_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1301
      err = read_pointer(J,  fp, &jframe->new_fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1302
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1303
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1304
      err = read_pointer(J,  jframe->new_fp + POINTER_SIZE,  &jframe->new_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1305
      CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1306
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1307
    if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1308
      fprintf(stderr, "name_for_codecache: %s, frame_size=%#lx\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1309
                       result, frame_size);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1310
      fprintf(stderr, "name_for_codecache: prev_fr.fp=%#lx, fp=%#lx\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1311
                       J->prev_fr.fp, jframe->new_fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1312
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1313
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1314
#endif /* X86_COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1315
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1316
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1317
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1318
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1319
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1320
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1321
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1322
int Jget_vframe(jvm_agent_t* J, int vframe_no,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1323
                char *name, size_t size, Jframe_t *jframe)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1324
{
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1325
  Nmethod_t *N = J->N;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1326
  Vframe_t  *vf;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1327
  int32_t   err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1328
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1329
  if (vframe_no >= N->vf_cnt) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1330
     (void) sprintf(name, "Wrong inlinedMethod%1d()", vframe_no);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1331
     return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1332
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1333
  vf = N->vframes + vframe_no;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1334
  name[0] = COMP_METHOD_SIGN;
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1335
  err = name_for_methodPtr(J, vf->method, name + 1, size);
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1336
  CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1337
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1338
  jframe->bci = vf->bci;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1339
  jframe->line = vf->line;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1340
  if (debug) {
33619
90563f58e60a 8139762: Format warnings in libjvm_db.c
dsamersoff
parents: 32192
diff changeset
  1341
      fprintf(stderr, "\t Jget_vframe: method name: %s, line: %d\n",
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1342
                       name, vf->line);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1343
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1344
  return PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1345
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1346
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1347
  if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1348
      fprintf(stderr, "\t Jget_vframe: FAIL\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1349
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1350
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1351
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1352
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1353
#define MAX_SYM_SIZE 256
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1354
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1355
int Jlookup_by_regs(jvm_agent_t* J, const prgregset_t regs, char *name,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1356
                    size_t size, Jframe_t *jframe) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1357
  uintptr_t fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1358
  uintptr_t pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1359
  /* arguments given to read_pointer need to be worst case sized */
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1360
  uint64_t methodPtr = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1361
  uint64_t sender_sp;
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1362
  uint64_t bcp = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1363
  int is_interpreted = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1364
  int result = PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1365
  int err = PS_OK;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1366
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1367
  if (J == NULL) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1368
    return -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1369
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1370
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1371
  jframe->vf_cnt = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1372
  jframe->new_fp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1373
  jframe->new_pc = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1374
  jframe->line   = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1375
  jframe->bci    = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1376
  jframe->locinf = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1377
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1378
  read_volatiles(J);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1379
  pc = (uintptr_t) regs[R_PC];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1380
  J->curr_fr.pc = pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1381
  J->curr_fr.fp = regs[R_FP];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1382
  J->curr_fr.sp = regs[R_SP];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1383
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1384
  if (debug)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1385
      fprintf(stderr, "Jlookup_by_regs: BEGINs: fp=%#lx, pc=%#lx\n", regs[R_FP], pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1386
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1387
#if defined(sparc) || defined(__sparc)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1388
    /* The following workaround is for SPARC. CALL instruction occupates 8 bytes.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1389
     * In the pcDesc structure return pc offset is recorded for CALL instructions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1390
     * regs[R_PC] contains a CALL instruction pc offset.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1391
     */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1392
    pc += 8;
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1393
    bcp          = (uintptr_t) regs[R_L1];
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1394
    methodPtr = (uintptr_t) regs[R_L2];
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1395
    sender_sp = regs[R_I5];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1396
    if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1397
        fprintf(stderr, "\nregs[R_I1]=%lx, regs[R_I2]=%lx, regs[R_I5]=%lx, regs[R_L1]=%lx, regs[R_L2]=%lx\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1398
                         regs[R_I1], regs[R_I2], regs[R_I5], regs[R_L1], regs[R_L2]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1399
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1400
#elif defined(i386) || defined(__i386) || defined(__amd64)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1401
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1402
    fp = (uintptr_t) regs[R_FP];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1403
    if (J->prev_fr.fp == 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1404
#ifdef X86_COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1405
        /* A workaround for top java frames */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1406
        J->prev_fr.fp = (uintptr_t)(regs[R_SP] - 2 * POINTER_SIZE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1407
#else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1408
        J->prev_fr.fp = (uintptr_t)(regs[R_SP] - POINTER_SIZE);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1409
#endif /* COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1410
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1411
    if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1412
        printf("Jlookup_by_regs: J->prev_fr.fp = %#lx\n", J->prev_fr.fp);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1413
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1414
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1415
    if (read_pointer(J,  fp + OFFSET_interpreter_frame_method, &methodPtr) != PS_OK) {
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1416
      methodPtr = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1417
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1418
    if (read_pointer(J,  fp + OFFSET_interpreter_frame_sender_sp, &sender_sp) != PS_OK) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1419
      sender_sp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1420
    }
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1421
    if (read_pointer(J,  fp + OFFSET_interpreter_frame_bcp_offset, &bcp) != PS_OK) {
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1422
      bcp = 0;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1423
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1424
#endif /* i386 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1425
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1426
  J->methodPtr = methodPtr;
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1427
  J->bcp = bcp;
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1428
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1429
  /* On x86 with C2 JVM: native frame may have wrong regs[R_FP]
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1430
   * For example: JVM_SuspendThread frame poins to the top interpreted frame.
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1431
   * If we call is_method(J, methodPtr) before codecache_contains(J, pc)
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1432
   * then we go over and omit both: nmethod and I2CAdapter frames.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1433
   * Note, that regs[R_PC] is always correct if frame defined correctly.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1434
   * So it is better to call codecache_contains(J, pc) from the beginning.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1435
   */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1436
#ifndef X86_COMPILER2
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1437
  if (is_method(J, J->methodPtr)) {
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1438
    result = name_for_imethod(J, bcp, J->methodPtr, name, size, jframe);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1439
    /* If the methodPtr is a method then this is highly likely to be
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1440
       an interpreter frame */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1441
    if (result >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1442
      is_interpreted = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1443
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1444
  } else
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1445
#endif /* ! X86_COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1446
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1447
  if (codecache_contains(J, pc)) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1448
    result = name_for_codecache(J, fp, pc, name, size, jframe, &is_interpreted);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1449
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1450
#ifdef X86_COMPILER2
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1451
  else if (is_method(J, J->methodPtr)) {
25714
87fa6860b5ae 8004128: NPG: remove stackwalking in Threads::gc_prologue and gc_epilogue code
coleenp
parents: 13728
diff changeset
  1452
    result = name_for_imethod(J, bcp, J->methodPtr, name, size, jframe);
13728
882756847a04 6964458: Reimplement class meta-data storage to use native memory
coleenp
parents: 13284
diff changeset
  1453
    /* If the methodPtr is a method then this is highly likely to be
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1454
       an interpreter frame */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1455
    if (result >= 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1456
      is_interpreted = 1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1457
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1458
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1459
#endif /* X86_COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1460
  else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1461
    if (debug) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1462
        fprintf(stderr, "Jlookup_by_regs: END with -1\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1463
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1464
    result = -1;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1465
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1466
  if (!is_interpreted) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1467
    sender_sp = 0;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1468
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1469
  J->curr_fr.sender_sp = sender_sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1470
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1471
#ifdef X86_COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1472
  if (!J->curr_fr.fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1473
    J->curr_fr.fp = (jframe->new_fp) ? jframe->new_fp : (uintptr_t)regs[R_FP];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1474
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1475
  if (!jframe->new_pc && jframe->new_fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1476
    // This seems dubious
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1477
    read_pointer(J,  jframe->new_fp + POINTER_SIZE,  &jframe->new_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1478
    CHECK_FAIL(err);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1479
    if (debug > 2) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1480
        printf("Jlookup_by_regs: (update pc) jframe->new_fp: %#llx, jframe->new_pc: %#llx\n",
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1481
               jframe->new_fp, jframe->new_pc);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1482
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1483
  }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1484
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1485
#endif /* X86_COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1486
  J->prev_fr = J->curr_fr;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1487
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1488
  if (debug)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1489
      fprintf(stderr, "Jlookup_by_regs: END\n\n");
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1490
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1491
  return result;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1492
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1493
 fail:
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1494
  return err;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1495
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1496
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1497
void update_gregs(prgregset_t gregs, Jframe_t jframe) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1498
#ifdef X86_COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1499
    if (debug > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1500
      fprintf(stderr, "update_gregs: before update sp = 0x%llx, fp = 0x%llx, pc = 0x%llx\n", gregs[R_SP], gregs[R_FP], gregs[R_PC]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1501
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1502
    /*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1503
     * A workaround for java C2 frames with unconventional FP.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1504
     * may have to modify regset with new values for FP/PC/SP when needed.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1505
     */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1506
     if (jframe.new_sp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1507
         *((uintptr_t *) &gregs[R_SP]) = (uintptr_t) jframe.new_sp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1508
     } else {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1509
         // *((uintptr_t *) &gregs[R_SP]) = (uintptr_t) gregs[R_FP] + 2 * POINTER_SIZE;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1510
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1511
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1512
     if (jframe.new_fp) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1513
         *((uintptr_t *) &gregs[R_FP]) = (uintptr_t) jframe.new_fp;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1514
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1515
     if (jframe.new_pc) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1516
         *((uintptr_t *) &gregs[R_PC]) = (uintptr_t) jframe.new_pc;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1517
     }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1518
    if (debug > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1519
      fprintf(stderr, "update_gregs: after update sp = 0x%llx, fp = 0x%llx, pc = 0x%llx\n", gregs[R_SP], gregs[R_FP], gregs[R_PC]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1520
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1521
#endif  /* X86_COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1522
}
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1523
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1524
/*
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1525
 * Iterates over java frames at current location given by 'gregs'.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1526
 *
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1527
 *  Returns -1 if no java frames are present or if an error is encountered.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1528
 *  Returns the result of calling 'func' if the return value is non-zero.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1529
 *  Returns 0 otherwise.
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1530
 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1531
int Jframe_iter(jvm_agent_t *J, prgregset_t gregs, java_stack_f *func, void* cld) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1532
    char buf[MAX_SYM_SIZE + 1];
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1533
    Jframe_t jframe;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1534
    int i = 0, res;
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1535
#ifdef X86_COMPILER2
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1536
    if (debug > 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1537
      fprintf(stderr, "Jframe_iter: Entry sp = 0x%llx, fp = 0x%llx, pc = 0x%llx\n", gregs[R_SP], gregs[R_FP], gregs[R_PC]);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1538
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1539
#endif  /* X86_COMPILER2 */
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1540
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1541
    memset(&jframe, 0, sizeof(Jframe_t));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1542
    memset(buf, 0, sizeof(buf));
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1543
    res =  Jlookup_by_regs(J, gregs, buf, sizeof(buf), &jframe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1544
    if (res != PS_OK)
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1545
        return (-1);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1546
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1547
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1548
    res = func(cld, gregs, buf, (jframe.locinf)? jframe.bci : -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1549
               jframe.line, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1550
    if (res != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1551
        update_gregs(gregs, jframe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1552
        return (res);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1553
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1554
    for (i = 1; i < jframe.vf_cnt; i++) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1555
        Jget_vframe(J, i, buf, sizeof(buf), &jframe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1556
        res = func(cld, gregs, buf, (jframe.locinf)? jframe.bci : -1,
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1557
                   jframe.line, NULL);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1558
        if (res != 0) {
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1559
            update_gregs(gregs, jframe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1560
            return (res);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1561
        }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1562
    }
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1563
    update_gregs(gregs, jframe);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1564
    return (0);
489c9b5090e2 Initial load
duke
parents:
diff changeset
  1565
}