annotate src/share/vm/interpreter/bytecodeInterpreterWithChecks.xsl @ 100:c7c777385a15

6667042: PrintAssembly option does not work without special plugin Summary: remove old private plugin interface, simplify, rework old plugin to use unchanged Gnu sources Reviewed-by: kvn, rasbold
author jrose
date Wed, 02 Apr 2008 12:09:59 -0700
parents a61af66fc99e
children aaa1137c5ef4 2a8ec427fbe1
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
a61af66fc99e Initial load
duke
parents:
diff changeset
1 <?xml version="1.0"?>
a61af66fc99e Initial load
duke
parents:
diff changeset
2 <!--
a61af66fc99e Initial load
duke
parents:
diff changeset
3 Copyright 2006 Sun Microsystems, Inc. All rights reserved.
a61af66fc99e Initial load
duke
parents:
diff changeset
4 SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
a61af66fc99e Initial load
duke
parents:
diff changeset
5 -->
a61af66fc99e Initial load
duke
parents:
diff changeset
6
a61af66fc99e Initial load
duke
parents:
diff changeset
7 <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
a61af66fc99e Initial load
duke
parents:
diff changeset
8
a61af66fc99e Initial load
duke
parents:
diff changeset
9 <xsl:template match="processcode">
a61af66fc99e Initial load
duke
parents:
diff changeset
10 <xsl:text>
a61af66fc99e Initial load
duke
parents:
diff changeset
11 #define VM_JVMTI
a61af66fc99e Initial load
duke
parents:
diff changeset
12 #include "bytecodeInterpreter.cpp"
a61af66fc99e Initial load
duke
parents:
diff changeset
13 </xsl:text>
a61af66fc99e Initial load
duke
parents:
diff changeset
14 <xsl:text disable-output-escaping = "yes">
a61af66fc99e Initial load
duke
parents:
diff changeset
15
a61af66fc99e Initial load
duke
parents:
diff changeset
16 </xsl:text>
a61af66fc99e Initial load
duke
parents:
diff changeset
17
a61af66fc99e Initial load
duke
parents:
diff changeset
18 <xsl:output method="text" indent="no" omit-xml-declaration="yes"/>
a61af66fc99e Initial load
duke
parents:
diff changeset
19 </xsl:template>
a61af66fc99e Initial load
duke
parents:
diff changeset
20
a61af66fc99e Initial load
duke
parents:
diff changeset
21 </xsl:stylesheet>