hotspot/src/share/vm/prims/jvmtiHpp.xsl
author xlu
Mon, 06 Apr 2009 15:47:39 -0700
changeset 2526 39a58a50be35
parent 1 489c9b5090e2
child 4491 212bd48525d4
permissions -rw-r--r--
6699669: Hotspot server leaves synchronized block with monitor in bad state Summary: Remove usage of _highest_lock field in Thread so that is_lock_owned won't depend on the correct update of that field. Reviewed-by: never, dice, acorn
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
1
489c9b5090e2 Initial load
duke
parents:
diff changeset
     1
<?xml version="1.0"?> 
489c9b5090e2 Initial load
duke
parents:
diff changeset
     2
<!--
489c9b5090e2 Initial load
duke
parents:
diff changeset
     3
 Copyright 2002-2005 Sun Microsystems, Inc.  All Rights Reserved.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     4
 DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     5
489c9b5090e2 Initial load
duke
parents:
diff changeset
     6
 This code is free software; you can redistribute it and/or modify it
489c9b5090e2 Initial load
duke
parents:
diff changeset
     7
 under the terms of the GNU General Public License version 2 only, as
489c9b5090e2 Initial load
duke
parents:
diff changeset
     8
 published by the Free Software Foundation.
489c9b5090e2 Initial load
duke
parents:
diff changeset
     9
489c9b5090e2 Initial load
duke
parents:
diff changeset
    10
 This code is distributed in the hope that it will be useful, but WITHOUT
489c9b5090e2 Initial load
duke
parents:
diff changeset
    11
 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    12
 FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
489c9b5090e2 Initial load
duke
parents:
diff changeset
    13
 version 2 for more details (a copy is included in the LICENSE file that
489c9b5090e2 Initial load
duke
parents:
diff changeset
    14
 accompanied this code).
489c9b5090e2 Initial load
duke
parents:
diff changeset
    15
489c9b5090e2 Initial load
duke
parents:
diff changeset
    16
 You should have received a copy of the GNU General Public License version
489c9b5090e2 Initial load
duke
parents:
diff changeset
    17
 2 along with this work; if not, write to the Free Software Foundation,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    18
 Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    19
489c9b5090e2 Initial load
duke
parents:
diff changeset
    20
 Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
489c9b5090e2 Initial load
duke
parents:
diff changeset
    21
 CA 95054 USA or visit www.sun.com if you need additional information or
489c9b5090e2 Initial load
duke
parents:
diff changeset
    22
 have any questions.
489c9b5090e2 Initial load
duke
parents:
diff changeset
    23
  
489c9b5090e2 Initial load
duke
parents:
diff changeset
    24
-->
489c9b5090e2 Initial load
duke
parents:
diff changeset
    25
489c9b5090e2 Initial load
duke
parents:
diff changeset
    26
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
489c9b5090e2 Initial load
duke
parents:
diff changeset
    27
489c9b5090e2 Initial load
duke
parents:
diff changeset
    28
<xsl:import href="jvmtiLib.xsl"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    29
489c9b5090e2 Initial load
duke
parents:
diff changeset
    30
<xsl:output method="text" indent="no" omit-xml-declaration="yes"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    31
489c9b5090e2 Initial load
duke
parents:
diff changeset
    32
<xsl:template match="/">
489c9b5090e2 Initial load
duke
parents:
diff changeset
    33
  <xsl:apply-templates select="specification"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    34
</xsl:template>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    35
489c9b5090e2 Initial load
duke
parents:
diff changeset
    36
<xsl:template match="specification">
489c9b5090e2 Initial load
duke
parents:
diff changeset
    37
  <xsl:call-template name="includeHeader"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    38
  <xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    39
    
489c9b5090e2 Initial load
duke
parents:
diff changeset
    40
enum {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    41
    JVMTI_INTERNAL_CAPABILITY_COUNT = </xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    42
  <xsl:value-of select="count(//capabilityfield)"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    43
  <xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    44
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    45
489c9b5090e2 Initial load
duke
parents:
diff changeset
    46
489c9b5090e2 Initial load
duke
parents:
diff changeset
    47
class JvmtiEnv : public JvmtiEnvBase {
489c9b5090e2 Initial load
duke
parents:
diff changeset
    48
489c9b5090e2 Initial load
duke
parents:
diff changeset
    49
private:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    50
    
489c9b5090e2 Initial load
duke
parents:
diff changeset
    51
    JvmtiEnv();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    52
    ~JvmtiEnv();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    53
489c9b5090e2 Initial load
duke
parents:
diff changeset
    54
public:
489c9b5090e2 Initial load
duke
parents:
diff changeset
    55
489c9b5090e2 Initial load
duke
parents:
diff changeset
    56
    static JvmtiEnv* create_a_jvmti();
489c9b5090e2 Initial load
duke
parents:
diff changeset
    57
489c9b5090e2 Initial load
duke
parents:
diff changeset
    58
</xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    59
  <xsl:apply-templates select="functionsection"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    60
  <xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    61
};
489c9b5090e2 Initial load
duke
parents:
diff changeset
    62
</xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    63
</xsl:template>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    64
489c9b5090e2 Initial load
duke
parents:
diff changeset
    65
<xsl:template match="functionsection">
489c9b5090e2 Initial load
duke
parents:
diff changeset
    66
  <xsl:apply-templates select="category"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    67
</xsl:template>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    68
489c9b5090e2 Initial load
duke
parents:
diff changeset
    69
<xsl:template match="category">
489c9b5090e2 Initial load
duke
parents:
diff changeset
    70
  <xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    71
  // </xsl:text><xsl:value-of select="@label"/><xsl:text> functions
489c9b5090e2 Initial load
duke
parents:
diff changeset
    72
</xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    73
  <xsl:apply-templates select="function[not(contains(@impl,'unimpl'))]"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    74
</xsl:template>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    75
489c9b5090e2 Initial load
duke
parents:
diff changeset
    76
<xsl:template match="function">
489c9b5090e2 Initial load
duke
parents:
diff changeset
    77
  <xsl:text>    jvmtiError </xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    78
  <xsl:if test="count(@hide)=1">
489c9b5090e2 Initial load
duke
parents:
diff changeset
    79
    <xsl:value-of select="@hide"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    80
  </xsl:if>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    81
  <xsl:value-of select="@id"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    82
  <xsl:text>(</xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    83
  <xsl:apply-templates select="parameters" mode="HotSpotSig"/>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    84
  <xsl:text>);
489c9b5090e2 Initial load
duke
parents:
diff changeset
    85
</xsl:text>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    86
</xsl:template>
489c9b5090e2 Initial load
duke
parents:
diff changeset
    87
489c9b5090e2 Initial load
duke
parents:
diff changeset
    88
</xsl:stylesheet>