]> git.ozlabs.org Git - hiprofile/blobdiff - share/hiprofile/symbol.html
Convert to a python package
[hiprofile] / share / hiprofile / symbol.html
diff --git a/share/hiprofile/symbol.html b/share/hiprofile/symbol.html
deleted file mode 100644 (file)
index 17b8cd9..0000000
+++ /dev/null
@@ -1,47 +0,0 @@
-
-{% extends "base.html" %}
-
-{% block heading %}Symbol: {{ symbol.name }}{% endblock %}
-
-{% block content %}
-
-<table class="meta">
- <tr>
-  <th>Total samples:</th>
-  <td>{{ symbol.count }}</td>
- </tr>
- <tr>
-  <th>Module:</th>
-  <td><span class="path">{{ symbol.module }}</span></td>
- </tr>
-</table>
-
-<table class="instructions">
- <tr>
-  <th>Address</th>
-  <th>Samples</th>
-  <th>%</th>
-  <th/>
-  <th>Instruction</th>
- </tr>
-
-{% for insn in symbol.insns %}
- <tr>
-  <td><span class="address">0x{{ insn.addr }}</span></td>
-  <td style="color: {{insn.colour()}}">{{ insn.samples }}</td>
-  <td style="color: {{insn.colour()}}">{{ "%.2f"|format(insn.percentage) }}</td>
-{% if insn.source %}
-  <td class="source-expander" onclick="expand_source(this);">+</td>
-{% else %}
-  <td/>
-{% endif %}
-  <td>
-   <pre class="source">{{insn.source}}</pre>
-   <pre class="assembly" style="color: {{insn.colour()}}">{{ insn.asm }}</pre>
-  </td>
- </tr>
-{% endfor %}
-</table>
-
-
-{% endblock %}