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

Unified Diff: runtime/vm/raw_object.h

Issue 11567012: Store optimized flow graph statistics on the function itself. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 8 years 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
Index: runtime/vm/raw_object.h
diff --git a/runtime/vm/raw_object.h b/runtime/vm/raw_object.h
index bf5164e5fc640b7e9e31cf4d9522e13bef9cc61a..399e77d9e76e82528ada541d00e65c059d7b45c7 100644
--- a/runtime/vm/raw_object.h
+++ b/runtime/vm/raw_object.h
@@ -559,6 +559,8 @@ class RawFunction : public RawObject {
int16_t num_optional_parameters_; // > 0: positional; < 0: named.
uint16_t deoptimization_counter_;
uint16_t kind_tag_;
+ uint16_t optimized_instruction_count_;
+ uint16_t optimized_call_site_count_;
};

Powered by Google App Engine
This is Rietveld 408576698