author | hseigel |
Mon, 12 Nov 2012 16:15:05 -0500 | |
changeset 14488 | ab48109f7d1b |
parent 7397 | 5b173b4ca846 |
permissions | -rw-r--r-- |
1 | 1 |
<?xml version="1.0"?> |
2 |
<!-- |
|
7397 | 3 |
Copyright (c) 2002, 2010, Oracle and/or its affiliates. All rights reserved. |
1 | 4 |
DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER. |
5 |
||
6 |
This code is free software; you can redistribute it and/or modify it |
|
7 |
under the terms of the GNU General Public License version 2 only, as |
|
8 |
published by the Free Software Foundation. |
|
9 |
||
10 |
This code is distributed in the hope that it will be useful, but WITHOUT |
|
11 |
ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or |
|
12 |
FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License |
|
13 |
version 2 for more details (a copy is included in the LICENSE file that |
|
14 |
accompanied this code). |
|
15 |
||
16 |
You should have received a copy of the GNU General Public License version |
|
17 |
2 along with this work; if not, write to the Free Software Foundation, |
|
18 |
Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA. |
|
19 |
||
5547
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4491
diff
changeset
|
20 |
Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4491
diff
changeset
|
21 |
or visit www.oracle.com if you need additional information or have any |
f4b087cbb361
6941466: Oracle rebranding changes for Hotspot repositories
trims
parents:
4491
diff
changeset
|
22 |
questions. |
1 | 23 |
|
24 |
--> |
|
25 |
||
26 |
<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0"> |
|
27 |
||
28 |
<xsl:import href="jvmtiLib.xsl"/> |
|
29 |
||
30 |
<xsl:output method="text" indent="no" omit-xml-declaration="yes"/> |
|
31 |
||
32 |
<xsl:template match="/"> |
|
33 |
<xsl:apply-templates select="specification"/> |
|
34 |
</xsl:template> |
|
35 |
||
36 |
<xsl:template match="specification"> |
|
37 |
<xsl:call-template name="includeHeader"/> |
|
38 |
<xsl:text> |
|
39 |
||
7397 | 40 |
|
41 |
#ifndef GENERATED_JVMTIFILES_JVMTIENV_HPP |
|
42 |
#define GENERATED_JVMTIFILES_JVMTIENV_HPP |
|
43 |
||
44 |
#include "prims/jvmtiEnvBase.hpp" |
|
45 |
#include "prims/jvmtiImpl.hpp" |
|
46 |
||
1 | 47 |
enum { |
48 |
JVMTI_INTERNAL_CAPABILITY_COUNT = </xsl:text> |
|
49 |
<xsl:value-of select="count(//capabilityfield)"/> |
|
50 |
<xsl:text> |
|
51 |
}; |
|
52 |
||
53 |
||
54 |
class JvmtiEnv : public JvmtiEnvBase { |
|
55 |
||
56 |
private: |
|
57 |
||
4491 | 58 |
JvmtiEnv(jint version); |
1 | 59 |
~JvmtiEnv(); |
60 |
||
61 |
public: |
|
62 |
||
4491 | 63 |
static JvmtiEnv* create_a_jvmti(jint version); |
1 | 64 |
|
65 |
</xsl:text> |
|
66 |
<xsl:apply-templates select="functionsection"/> |
|
67 |
<xsl:text> |
|
68 |
}; |
|
7397 | 69 |
|
70 |
#endif // GENERATED_JVMTIFILES_JVMTIENV_HPP |
|
1 | 71 |
</xsl:text> |
72 |
</xsl:template> |
|
73 |
||
74 |
<xsl:template match="functionsection"> |
|
75 |
<xsl:apply-templates select="category"/> |
|
76 |
</xsl:template> |
|
77 |
||
78 |
<xsl:template match="category"> |
|
79 |
<xsl:text> |
|
80 |
// </xsl:text><xsl:value-of select="@label"/><xsl:text> functions |
|
81 |
</xsl:text> |
|
82 |
<xsl:apply-templates select="function[not(contains(@impl,'unimpl'))]"/> |
|
83 |
</xsl:template> |
|
84 |
||
85 |
<xsl:template match="function"> |
|
86 |
<xsl:text> jvmtiError </xsl:text> |
|
87 |
<xsl:if test="count(@hide)=1"> |
|
88 |
<xsl:value-of select="@hide"/> |
|
89 |
</xsl:if> |
|
90 |
<xsl:value-of select="@id"/> |
|
91 |
<xsl:text>(</xsl:text> |
|
92 |
<xsl:apply-templates select="parameters" mode="HotSpotSig"/> |
|
93 |
<xsl:text>); |
|
94 |
</xsl:text> |
|
95 |
</xsl:template> |
|
96 |
||
97 |
</xsl:stylesheet> |