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

Unified Diff: tools/metrics/histograms/histograms.xml

Issue 930003002: Add V8.CodeCacheRejectReason to histograms.xml. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 10 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:
Download patch
« no previous file with comments | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/metrics/histograms/histograms.xml
diff --git a/tools/metrics/histograms/histograms.xml b/tools/metrics/histograms/histograms.xml
index 4bb24b9ec4344b8123cb50efd9432abc317e7931..30a1d58441f7a86ef31823c99da143ee508a9156 100644
--- a/tools/metrics/histograms/histograms.xml
+++ b/tools/metrics/histograms/histograms.xml
@@ -40443,6 +40443,13 @@ Therefore, the affected-histogram name has to have at least one dot in it.
<summary>TBD</summary>
</histogram>
+<histogram name="V8.CodeCacheRejectReason" enum="V8CodeCacheRejectReason">
+ <owner>yangguo@chromium.org</owner>
+ <summary>
+ Reason code data has been rejected when attempting to deserialize.
+ </summary>
+</histogram>
+
<histogram name="V8.CodeCacheSizeRatio" units="percent">
<owner>yangguo@chromium.org</owner>
<summary>Cache size to source size ratio when caching compiled code.</summary>
@@ -59483,6 +59490,23 @@ To add a new entry, add it with any value and run test to compute valid value.
<int value="6" label="Regular Supervised"/>
</enum>
+<enum name="V8CodeCacheRejectReason" type="int">
+ <int value="1" label="MAGIC_NUMBER_MISMATCH">
+ Reject due to magic number mismatch
+ </int>
+ <int value="2" label="VERSION_MISMATCH">
+ Reject due to version hash mismatch
+ </int>
+ <int value="3" label="SOURCE_MISMATCH">
+ Reject due to source hash mismatch
+ </int>
+ <int value="4" label="CPU_FEATURES_MISMATCH">
+ Reject due to CPU features mismatch
+ </int>
+ <int value="5" label="FLAGS_MISMATCH">Reject due to flags hash mismatch</int>
+ <int value="6" label="CHECKSUM_MISMATCH">Reject due to checksum mismatch</int>
+</enum>
+
<enum name="ValidationFailures" type="int">
<int value="0" label="DBus"/>
<int value="1" label="Load Key"/>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698