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

Unified Diff: runtime/vm/object.h

Issue 17723002: Remove skip_static_calls_ as it uses an obsolete way to check for uncalled static calls. Will be re… (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 7 years, 6 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
Index: runtime/vm/object.h
===================================================================
--- runtime/vm/object.h (revision 24431)
+++ runtime/vm/object.h (working copy)
@@ -2546,7 +2546,8 @@
kPatchCode, // Buffer for patching code entry.
kLazyDeoptJump, // Lazy deoptimization trampoline.
kIcCall, // IC call.
- kFuncCall, // Call to known target, e.g. static call.
+ kOptStaticCall, // Call directly to known target, e.g. static call.
+ kUnoptStaticCall, // Call to a known target via a stub.
kClosureCall, // Closure call.
kRuntimeCall, // Runtime call.
kReturn, // Return from function.
@@ -2990,11 +2991,6 @@
// Returns an array indexed by deopt id, containing the extracted ICData.
RawArray* ExtractTypeFeedbackArray() const;
- // Returns deopt-ids of all static calls that were never resolved, i.e.,
- // never executed.
- void ExtractUncalledStaticCallDeoptIds(
- GrowableArray<intptr_t>* deopt_ids) const;
-
private:
// An object finder visitor interface.
class FindRawCodeVisitor : public FindObjectVisitor {

Powered by Google App Engine
This is Rietveld 408576698