comparison agent/src/share/classes/sun/jvm/hotspot/debugger/win32/coff/DebugVC50MemberAttributes.java @ 0:a61af66fc99e jdk7-b24

Initial load
author duke
date Sat, 01 Dec 2007 00:00:00 +0000
parents
children c18cbe5936b8
comparison
equal deleted inserted replaced
-1:000000000000 0:a61af66fc99e
1 /*
2 * Copyright 2001 Sun Microsystems, Inc. All Rights Reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 *
5 * This code is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation.
8 *
9 * This code is distributed in the hope that it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
12 * version 2 for more details (a copy is included in the LICENSE file that
13 * accompanied this code).
14 *
15 * You should have received a copy of the GNU General Public License version
16 * 2 along with this work; if not, write to the Free Software Foundation,
17 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
20 * CA 95054 USA or visit www.sun.com if you need additional information or
21 * have any questions.
22 *
23 */
24
25 package sun.jvm.hotspot.debugger.win32.coff;
26
27 /** Member attributes used to describe fields and methods, represented
28 as a 16-bit bit field. */
29
30 public interface DebugVC50MemberAttributes {
31 /** Access protection of the item */
32 // FIXME: verify these are correct (properly aligned)
33 public static final short MEMATTR_ACCESS_MASK = (short) 0x0003;
34 public static final short MEMATTR_ACCESS_NO_PROTECTION = (short) 0;
35 public static final short MEMATTR_ACCESS_PRIVATE = (short) 1;
36 public static final short MEMATTR_ACCESS_PROTECTED = (short) 2;
37 public static final short MEMATTR_ACCESS_PUBLIC = (short) 3;
38
39 /** Method attribute bit field for various type records */
40 // FIXME: verify these are correct (properly aligned)
41 public static final short MEMATTR_MPROP_MASK = (short) 0x001C;
42 // 00000
43 public static final short MEMATTR_MPROP_VANILLA = (short) 0x0000;
44 // 00100
45 public static final short MEMATTR_MPROP_VIRTUAL = (short) 0x0004;
46 // 01000
47 public static final short MEMATTR_MPROP_STATIC = (short) 0x0008;
48 // 01100
49 public static final short MEMATTR_MPROP_FRIEND = (short) 0x000C;
50 // 10000
51 public static final short MEMATTR_MPROP_INTRODUCING_VIRTUAL = (short) 0x0010;
52 // 10100
53 public static final short MEMATTR_MPROP_PURE_VIRTUAL = (short) 0x0014;
54 // 11000
55 public static final short MEMATTR_MPROP_PURE_INTRODUCING_VIRTUAL = (short) 0x0018;
56
57 /** Set if the method is never instantiated by the compiler */
58 public static final short MEMATTR_PSEUDO_MASK = (short) 0x0020;
59
60 /** Set if the class cannot be inherited */
61 public static final short MEMATTR_NOINHERIT_MASK = (short) 0x0040;
62
63 /** Set if the class cannot be constructed */
64 public static final short MEMATTR_NOCONSTRUCT_MASK = (short) 0x0080;
65
66 /** Set if the method is instantiated by the compiler */
67 public static final short MEMATTR_COMPGENX_MASK = (short) 0x0100;
68 }