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

Unified Diff: runtime/vm/object.h

Issue 2579413002: Revert "Save and restore feedback from JIT." (Closed)
Patch Set: Created 4 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
« no previous file with comments | « runtime/vm/method_recognizer.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/object.h
diff --git a/runtime/vm/object.h b/runtime/vm/object.h
index f3a4d29266e3bb331e2381c53724bc3dbd8bf53f..7b733490252acaf9a66238c67bbb3ebbf76547ac 100644
--- a/runtime/vm/object.h
+++ b/runtime/vm/object.h
@@ -1506,7 +1506,7 @@ class Class : public Object {
friend class Object;
friend class Type;
friend class Intrinsifier;
- friend class ProgramVisitor;
+ friend class Precompiler;
};
@@ -1974,8 +1974,7 @@ class ICData : public Object {
// Adds one more class test to ICData. Length of 'classes' must be equal to
// the number of arguments tested. Use only for num_args_tested > 1.
void AddCheck(const GrowableArray<intptr_t>& class_ids,
- const Function& target,
- intptr_t count = 1) const;
+ const Function& target) const;
// Adds sorted so that Smi is the first class-id. Use only for
// num_args_tested == 1.
void AddReceiverCheck(intptr_t receiver_class_id,
@@ -3548,9 +3547,6 @@ class Script : public Object {
TokenPosition* first_token_index,
TokenPosition* last_token_index) const;
- int32_t SourceFingerprint() const;
- int32_t SourceFingerprint(TokenPosition start, TokenPosition end) const;
-
static intptr_t InstanceSize() {
return RoundedAllocationSize(sizeof(RawScript));
}
@@ -6906,8 +6902,6 @@ class String : public Instance {
static RawString* ToLowerCase(const String& str,
Heap::Space space = Heap::kNew);
- static RawString* RemovePrivateKey(const String& name);
-
static RawString* ScrubName(const String& name);
static RawString* ScrubNameRetainPrivate(const String& name);
« no previous file with comments | « runtime/vm/method_recognizer.h ('k') | runtime/vm/object.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698