comparison src/share/vm/runtime/vmStructs.hpp @ 7066:7d815d842ee0

Merge.
author Christian Haeubl <haeubl@ssw.jku.at>
date Fri, 23 Nov 2012 11:50:27 +0100
parents da91efe96a93
children 7c15faa95ce7
comparison
equal deleted inserted replaced
7065:cfacf5d5bade 7066:7d815d842ee0
1 /* 1 /*
2 * Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. 2 * Copyright (c) 2000, 2012, Oracle and/or its affiliates. All rights reserved.
3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. 3 * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
4 * 4 *
5 * This code is free software; you can redistribute it and/or modify it 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 6 * under the terms of the GNU General Public License version 2 only, as
7 * published by the Free Software Foundation. 7 * published by the Free Software Foundation.
76 // ("offset" can not be reused because of apparent SparcWorks compiler bug 76 // ("offset" can not be reused because of apparent SparcWorks compiler bug
77 // in generation of initializer data) 77 // in generation of initializer data)
78 } VMStructEntry; 78 } VMStructEntry;
79 79
80 typedef struct { 80 typedef struct {
81 const char* typeName; // Type name (example: "methodOopDesc") 81 const char* typeName; // Type name (example: "Method")
82 const char* superclassName; // Superclass name, or null if none (example: "oopDesc") 82 const char* superclassName; // Superclass name, or null if none (example: "oopDesc")
83 int32_t isOopType; // Does this type represent an oop typedef? (i.e., "methodOop" or 83 int32_t isOopType; // Does this type represent an oop typedef? (i.e., "Method*" or
84 // "klassOop", but NOT "methodOopDesc") 84 // "Klass*", but NOT "Method")
85 int32_t isIntegerType; // Does this type represent an integer type (of arbitrary size)? 85 int32_t isIntegerType; // Does this type represent an integer type (of arbitrary size)?
86 int32_t isUnsigned; // If so, is it unsigned? 86 int32_t isUnsigned; // If so, is it unsigned?
87 uint64_t size; // Size, in bytes, of the type 87 uint64_t size; // Size, in bytes, of the type
88 } VMTypeEntry; 88 } VMTypeEntry;
89 89