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

Unified Diff: tools/ic-processor.js

Issue 2835923004: [Ic-Processor] Let us know if an IC is in opt. or unopt. code. (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 | « no previous file | tools/profile.js » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/ic-processor.js
diff --git a/tools/ic-processor.js b/tools/ic-processor.js
index 41bd336c9aa4a0f36bc8b8c96a2c9b6031f278b0..6623b69ed55a26e4fa0145f767b52a56a1f5ba70 100644
--- a/tools/ic-processor.js
+++ b/tools/ic-processor.js
@@ -168,7 +168,7 @@ IcProcessor.prototype.formatName = function(entry) {
var re = /(.*):[0-9]+:[0-9]+$/;
var array = re.exec(name);
if (!array) return name;
- return array[1];
+ return entry.getState() + array[1];
}
IcProcessor.prototype.processPropertyIC = function (
« no previous file with comments | « no previous file | tools/profile.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698