-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
73 lines (69 loc) · 3.57 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Intrinsics viewer</title>
<link rel="stylesheet" href="style.css" charset="utf-8" />
<script type="text/javascript" src="pako.min.js"></script>
<script type="text/javascript" src="main.js" defer></script>
</head>
<body class="dark">
<div class="flex-horiz" style="padding: 0.2em;">
<div style="flex-grow: 1; flex-basis: 65%">
<label class="flex-horiz" style="padding: 0.2em; align-items: center;">
Search: <input id="search-field" class="mono" type="search" oninput="searchTyped()" onchange="updateLink()" style="flex-grow: 1;" accesskey="q">
</label>
<script type="text/javascript">document.getElementById("search-field").focus();</script>
<div class="flex-horiz" style="padding: 0.2em;">
<div id=options style="flex-basis: 25%">
<select id="cpu-list" onchange="newDefaultCPU(); updateLink();" aria-label="architecture"></select>
<br>
<div id="arch-list"></div>
<div style="padding: 0.2em;"></div>
Categories:
<div id="category-list"></div>
</div>
<div style="flex-basis: 75%">
<div>
<span class="flex-horiz" style="width: 100%; align-items: center; padding-bottom: 0.1em;" role="group">
<span>Search in:</span>
<label class="flex-grow" style="text-align: center;"><input type="checkbox" onclick="updateSearch()" id="s-name" checked tabindex="-1"> intrinsic</label>
<label class="flex-grow" style="text-align: center;"><input type="checkbox" onclick="updateSearch()" id="s-desc" checked tabindex="-1"> description</label>
<label class="flex-grow" style="text-align: center;"><input type="checkbox" onclick="updateSearch()" id="s-inst" checked tabindex="-1"> instruction</label>
<label class="flex-grow" style="text-align: center;"><input type="checkbox" onclick="updateSearch()" id="s-oper" checked tabindex="-1"> operation</label>
<label class="flex-grow" style="text-align: center;"><input type="checkbox" onclick="updateSearch()" id="s-catg" checked tabindex="-1"> category</label>
<span style="flex-grow:2; text-align: right; min-width: 6em; width: min-content;"><span id="result-count" tabindex="0">loading…</span></span>
</span>
</div>
<div class="flex-horiz" style="width: 100%;" role="navigation" aria-label="pagination">
<div id="pages-0"></div>
<div id="pages-1" style="flex-grow: 1;"></div>
<div id="pages-2" style="flex-grow: 1; text-align: center;"></div>
<div id="pages-3" style="flex-grow: 1; text-align: right;"></div>
<div id="pages-4"></div>
</div>
<table id="search-table">
<thead>
<colgroup>
<col style="width: 15%">
<col style="width: 63%">
<!-- <col style="width: 22%"> -->
</colgroup>
<tr id="main-table-header" class="table-header">
<th style="text-align: right; padding-right: 0.5em">Result</th>
<th>Name</th>
<!-- <th>Arch</th> -->
</tr>
</thead>
<tbody id="result-list">
</tbody>
</table>
<div id="center-info" style="text-align: center"></div>
</div>
</div>
</div>
<div id='desc-place' style="flex-grow: 1; flex-basis: 25%; padding-left: 0.5em; padding-top: 1em" tabindex="0">
</div>
</div>
</body>
</html>