annotate agent/src/share/classes/sun/jvm/hotspot/debugger/win32/AddressDataSource.java @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children c18cbe5936b8
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 /*
a61af66fc99e Initial load
duke
parents:
diff changeset
2 * Copyright 2000-2004 Sun Microsystems, Inc. All Rights Reserved.
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 *
a61af66fc99e Initial load
duke
parents:
diff changeset
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
a61af66fc99e Initial load
duke
parents:
diff changeset
20 * CA 95054 USA or visit www.sun.com if you need additional information or
a61af66fc99e Initial load
duke
parents:
diff changeset
21 * have any questions.
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 package sun.jvm.hotspot.debugger.win32;
a61af66fc99e Initial load
duke
parents:
diff changeset
26
a61af66fc99e Initial load
duke
parents:
diff changeset
27 import java.io.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
28 import sun.jvm.hotspot.debugger.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
29 import sun.jvm.hotspot.debugger.win32.coff.*;
a61af66fc99e Initial load
duke
parents:
diff changeset
30
a61af66fc99e Initial load
duke
parents:
diff changeset
31 class AddressDataSource implements DataSource {
a61af66fc99e Initial load
duke
parents:
diff changeset
32 AddressDataSource(Address addr) {
a61af66fc99e Initial load
duke
parents:
diff changeset
33 this.addr = addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
34 offset = 0;
a61af66fc99e Initial load
duke
parents:
diff changeset
35 }
a61af66fc99e Initial load
duke
parents:
diff changeset
36
a61af66fc99e Initial load
duke
parents:
diff changeset
37 public byte readByte() throws IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
38 try {
a61af66fc99e Initial load
duke
parents:
diff changeset
39 byte res = (byte) addr.getCIntegerAt(offset, 1, false);
a61af66fc99e Initial load
duke
parents:
diff changeset
40 ++offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
41 return res;
a61af66fc99e Initial load
duke
parents:
diff changeset
42 } catch (UnmappedAddressException e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
43 throw (IOException) new IOException("Unmapped address at 0x" + Long.toHexString(e.getAddress())).initCause(e);
a61af66fc99e Initial load
duke
parents:
diff changeset
44 } catch (DebuggerException e) {
a61af66fc99e Initial load
duke
parents:
diff changeset
45 throw (IOException) new IOException(e.toString()).initCause(e);
a61af66fc99e Initial load
duke
parents:
diff changeset
46 }
a61af66fc99e Initial load
duke
parents:
diff changeset
47 }
a61af66fc99e Initial load
duke
parents:
diff changeset
48
a61af66fc99e Initial load
duke
parents:
diff changeset
49 public short readShort() throws IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
50 // NOTE: byte swapping is taken care of at the COFFFileImpl level
a61af66fc99e Initial load
duke
parents:
diff changeset
51 int b1 = readByte() & 0xFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
52 int b2 = readByte() & 0xFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
53 return (short) ((b1 << 8) | b2);
a61af66fc99e Initial load
duke
parents:
diff changeset
54 }
a61af66fc99e Initial load
duke
parents:
diff changeset
55
a61af66fc99e Initial load
duke
parents:
diff changeset
56 public int readInt() throws IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
57 // NOTE: byte swapping is taken care of at the COFFFileImpl level
a61af66fc99e Initial load
duke
parents:
diff changeset
58 int b1 = ((int) readByte()) & 0xFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
59 int b2 = ((int) readByte()) & 0xFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
60 int b3 = ((int) readByte()) & 0xFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
61 int b4 = ((int) readByte()) & 0xFF;
a61af66fc99e Initial load
duke
parents:
diff changeset
62 return ((b1 << 24) | (b2 << 16) | (b3 << 8) | b4);
a61af66fc99e Initial load
duke
parents:
diff changeset
63 }
a61af66fc99e Initial load
duke
parents:
diff changeset
64
a61af66fc99e Initial load
duke
parents:
diff changeset
65 public long readLong() throws IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
66 // NOTE: byte swapping is taken care of at the COFFFileImpl level
a61af66fc99e Initial load
duke
parents:
diff changeset
67 long b1 = ((long) readByte()) & 0xFFL;
a61af66fc99e Initial load
duke
parents:
diff changeset
68 long b2 = ((long) readByte()) & 0xFFL;
a61af66fc99e Initial load
duke
parents:
diff changeset
69 long b3 = ((long) readByte()) & 0xFFL;
a61af66fc99e Initial load
duke
parents:
diff changeset
70 long b4 = ((long) readByte()) & 0xFFL;
a61af66fc99e Initial load
duke
parents:
diff changeset
71 long b5 = ((long) readByte()) & 0xFFL;
a61af66fc99e Initial load
duke
parents:
diff changeset
72 long b6 = ((long) readByte()) & 0xFFL;
a61af66fc99e Initial load
duke
parents:
diff changeset
73 long b7 = ((long) readByte()) & 0xFFL;
a61af66fc99e Initial load
duke
parents:
diff changeset
74 long b8 = ((long) readByte()) & 0xFFL;
a61af66fc99e Initial load
duke
parents:
diff changeset
75 return (((((b1 << 24) | (b2 << 16) | (b3 << 8) | b4)) << 32) |
a61af66fc99e Initial load
duke
parents:
diff changeset
76 ((((b5 << 24) | (b6 << 16) | (b7 << 8) | b8))));
a61af66fc99e Initial load
duke
parents:
diff changeset
77 }
a61af66fc99e Initial load
duke
parents:
diff changeset
78
a61af66fc99e Initial load
duke
parents:
diff changeset
79 public int read(byte[] b) throws IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
80 for (int i = 0; i < b.length; i++) {
a61af66fc99e Initial load
duke
parents:
diff changeset
81 b[i] = readByte();
a61af66fc99e Initial load
duke
parents:
diff changeset
82 }
a61af66fc99e Initial load
duke
parents:
diff changeset
83 return b.length;
a61af66fc99e Initial load
duke
parents:
diff changeset
84 }
a61af66fc99e Initial load
duke
parents:
diff changeset
85
a61af66fc99e Initial load
duke
parents:
diff changeset
86 public void seek(long pos) throws IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
87 offset = pos;
a61af66fc99e Initial load
duke
parents:
diff changeset
88 }
a61af66fc99e Initial load
duke
parents:
diff changeset
89
a61af66fc99e Initial load
duke
parents:
diff changeset
90 public long getFilePointer() throws IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
91 return offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
92 }
a61af66fc99e Initial load
duke
parents:
diff changeset
93
a61af66fc99e Initial load
duke
parents:
diff changeset
94 public void close() throws IOException {
a61af66fc99e Initial load
duke
parents:
diff changeset
95 }
a61af66fc99e Initial load
duke
parents:
diff changeset
96
a61af66fc99e Initial load
duke
parents:
diff changeset
97 private Address addr;
a61af66fc99e Initial load
duke
parents:
diff changeset
98 private long offset;
a61af66fc99e Initial load
duke
parents:
diff changeset
99 }