Commit f4b3a59c authored by Camillo Bruni's avatar Camillo Bruni Committed by Commit Bot

[tools] Remove sodium

The tool is no longer supported since we migrated to Turbofan.

Change-Id: I55b911f47867b2a6985ce14f973cd837f71ec4b4
Reviewed-on: https://chromium-review.googlesource.com/c/v8/v8/+/2288859Reviewed-by: 's avatarDaniel Clifford <danno@chromium.org>
Commit-Queue: Camillo Bruni <cbruni@chromium.org>
Cr-Commit-Position: refs/heads/master@{#68753}
parent b429b8f9
...@@ -84,10 +84,6 @@ a:hover, a:active { ...@@ -84,10 +84,6 @@ a:hover, a:active {
<a href="./profview/index.html">Profview</a> <a href="./profview/index.html">Profview</a>
<p>Fancy sampling profile viewer.</p> <p>Fancy sampling profile viewer.</p>
</div> </div>
<div class="card">
<a href="./sodium/index.html">Sodium</a>
<p>IC event tracker.</p>
</div>
<div class="card"> <div class="card">
<a href="./system-analyzer/index.html">System Analyzer</a> <a href="./system-analyzer/index.html">System Analyzer</a>
<p>A unified web interface to trace, debug and analyse patterns of how Maps/ICs are created in the real world applications.</p> <p>A unified web interface to trace, debug and analyse patterns of how Maps/ICs are created in the real world applications.</p>
......
<!DOCTYPE html>
<html>
<head>
<title>Sodium</title>
<meta charset="utf-8">
<link href="styles.css" rel="stylesheet" type="text/css">
</head>
<script src="https://google-code-prettify.googlecode.com/svn/loader/run_prettify.js"></script>
<script src="./sodium.js"></script>
<script type="text/javascript"></script>
<body>
<table style='top:5px; width:100%;'>
<tr><td id='table-header'>
<input type='file' id='log-file-id' />
<select id="kind-selector-id" onchange="Sodium.kindChangedHandler(this);"></select><br>
<select id="function-selector-id" onchange="Sodium.functionChangedHandler();"></select>
</td></tr>
<tr>
<table style='height:90%;'>
<tr>
<td id='asm-container'>
<div id='asm-text'></div>
</td>
<td id='source-container'>
<div id='source-text'><pre id='source-text-pre'/></div>
</td>
</tr>
</table>
</tr>
</table>
<script>
Sodium.buildFunctionKindSelector(document.getElementById('kind-selector-id'));
document.getElementById('log-file-id').addEventListener('change', Sodium.readLog, false);
</script>
</body>
</html>
This diff is collapsed.
#table-header {
background-color: rgba(150, 150, 255, 0.4);
}
#asm-container {
background-color: rgba(200, 200, 255, 0.4);
position:absolute;
overflow:auto;
cursor:default;
width:50%;
height:92%;
}
#source-container {
position:absolute;
overflow:auto;
width:48%;
left:51%;
height:92%;
}
table {
border-collapse: collapse;
}
.hover-underline:hover {
text-decoration: underline;
}
.highlight-flash-blue {
-webkit-transition: all 1s ease;
background-color: rgba(50, 50, 245, 0.4);
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.highlight-green {
background-color: rgba(0, 255, 0, 0.4);
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.highlight-yellow {
background-color: rgba(255, 255, 0, 0.4);
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.highlight-gray {
background-color: rgba(128, 128, 128, 0.4);
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
.highlight-red {
background-color: rgba(255, 0, 0, 0.4);
border-radius: 10px;
-o-border-radius: 10px;
-moz-border-radius: 10px;
-webkit-border-radius: 10px;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment