annotate src/os/solaris/dtrace/libjvm_db.c @ 6725:da91efe96a93

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