bytecodeInterpreterWithChecks.xsl revision 1472:c18cbe5936b8
114596Snate<?xml version="1.0"?> 
214596Snate<!-- 
314596Snate     Copyright (c) 1997, 2008, Oracle and/or its affiliates. All rights reserved.
414596Snate     DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
514596Snate
614596Snate     This code is free software; you can redistribute it and/or modify it
714596Snate     under the terms of the GNU General Public License version 2 only, as
814596Snate     published by the Free Software Foundation.
914596Snate
1014596Snate     This code is distributed in the hope that it will be useful, but WITHOUT
1114596Snate     ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
1214596Snate     FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
1315366Snate     version 2 for more details (a copy is included in the LICENSE file that
1414596Snate     accompanied this code).
1514596Snate
1614596Snate     You should have received a copy of the GNU General Public License version
1714596Snate     2 along with this work; if not, write to the Free Software Foundation,
1814596Snate     Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
1914596Snate
2014596Snate     Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
2114596Snate     or visit www.oracle.com if you need additional information or have any
22     questions.
23-->
24
25<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
26<xsl:output method="text" indent="no" omit-xml-declaration="yes"/>
27
28<xsl:template match="processcode">
29<xsl:text>
30#define VM_JVMTI
31#include "bytecodeInterpreter.cpp"
32</xsl:text>
33<xsl:text disable-output-escaping = "yes">
34
35</xsl:text>
36
37</xsl:template>
38
39</xsl:stylesheet>
40