blob: 3c84c4c35af8e6f6f6aa263fb551756c40facb4e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
<?xml version="1.0"?>
<!--
Copyright 2008 Tungsten Graphics, Inc.
This program is free software: you can redistribute it and/or modify it
under the terms of the GNU Lesser General Public License as published
by the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
!-->
<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:output method="html" />
<xsl:strip-space elements="*" />
<xsl:template match="/trace">
<html>
<head>
<title>Gallium Trace</title>
<link rel="stylesheet" type="text/css" href="trace.css"/>
</head>
<body>
<ul class="calls">
<xsl:apply-templates/>
</ul>
</body>
</html>
</xsl:template>
<xsl:template match="call">
<li>
<span class="fun">
<xsl:value-of select="@class"/>
<xsl:text>::</xsl:text>
<xsl:value-of select="@method"/>
</span>
<xsl:text>(</xsl:text>
<ul class="args">
<xsl:apply-templates select="arg"/>
</ul>
<xsl:text>)</xsl:text>
<xsl:apply-templates select="ret"/>
</li>
</xsl:template>
<xsl:template match="arg|member">
<li>
<xsl:apply-templates select="@name"/>
<xsl:text> = </xsl:text>
<xsl:apply-templates />
<xsl:if test="position() != last()">
<xsl:text>, </xsl:text>
</xsl:if>
</li>
</xsl:template>
<xsl:template match="ret">
<xsl:text> = </xsl:text>
<xsl:apply-templates />
</xsl:template>
<xsl:template match="bool|int|uint|enum">
<span class="lit">
<xsl:value-of select="text()"/>
</span>
</xsl:template>
<xsl:template match="string">
<span class="lit">
<xsl:text>"</xsl:text>
<xsl:value-of select="text()"/>
<xsl:text>"</xsl:text>
</span>
</xsl:template>
<xsl:template match="array|struct">
<xsl:text>{</xsl:text>
<xsl:apply-templates />
<xsl:text>}</xsl:text>
</xsl:template>
<xsl:template match="elem">
<li>
<xsl:apply-templates />
<xsl:if test="position() != last()">
<xsl:text>, </xsl:text>
</xsl:if>
</li>
</xsl:template>
<xsl:template match="null">
<span class="ptr">
<xsl:text>NULL</xsl:text>
</span>
</xsl:template>
<xsl:template match="ptr">
<span class="ptr">
<xsl:value-of select="text()"/>
</span>
</xsl:template>
<xsl:template match="@name">
<span class="var">
<xsl:value-of select="."/>
</span>
</xsl:template>
</xsl:transform>
|