Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(161)

Unified Diff: tools/ic-explorer.html

Issue 2797253009: Fix static initializer in ic.cc (Closed)
Patch Set: Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/callstats.html ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ic-explorer.html
diff --git a/tools/ic-explorer.html b/tools/ic-explorer.html
index 02214e3ee997cea274d8ff74f6e509b25721e111..1e111deab169576e6a5d76b1e1d312be6058a42b 100644
--- a/tools/ic-explorer.html
+++ b/tools/ic-explorer.html
@@ -7,30 +7,30 @@ code is governed by a BSD-style license that can be found in the LICENSE file.
<head>
<style>
.entry-details {}
-
+
.entry-details TD {}
-
+
.details {
width: 2em;
border: 1px black dotted;
}
-
+
.count {
text-align: right;
width: 5em;
font-family: monospace;
}
-
+
.percentage {
text-align: right;
width: 5em;
font-family: monospace;
}
-
+
.key {
padding-left: 1em;
}
-
+
.drilldown-group-title {
font-weight: bold;
padding: 0.5em 0 0.2em 0;
@@ -93,7 +93,7 @@ code is governed by a BSD-style license that can be found in the LICENSE file.
offset++;
}
if (this.map == "(nil)") this.map = "unknown";
- }
+ }
if (this.type !== "CompareIC") {
// if there is no address we have a smi key
var address = parts[++offset];
@@ -128,7 +128,7 @@ code is governed by a BSD-style license that can be found in the LICENSE file.
parseMapProperties(parts, offset) {
var next = parts[++offset];
if (!next.startsWith('dict')) return offset;
- this.propertiesMode =
+ this.propertiesMode =
next.substr(5) == "0" ? "fast" : "slow";
this.numberOfOwnProperties = parts[++offset].substr(4);
next = parts[++offset];
@@ -355,7 +355,7 @@ code is governed by a BSD-style license that can be found in the LICENSE file.
select.add(option);
}
}
-
+
function handleOnLoad() {
document.querySelector("#uploadInput").focus();
}
« no previous file with comments | « tools/callstats.html ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698