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

Unified Diff: runtime/vm/code_generator_ia32.h

Issue 9921017: Intrinsify methods early. Fix some bugs in trinsified code, mark one precision-related bug as SKIP … (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 years, 9 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 | runtime/vm/code_generator_ia32.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/code_generator_ia32.h
===================================================================
--- runtime/vm/code_generator_ia32.h (revision 5980)
+++ runtime/vm/code_generator_ia32.h (working copy)
@@ -122,9 +122,14 @@
// Forward declarations.
class HandlerList;
- // Return true if intrinsification was completed and no other code
- // needs to be generated.
- virtual bool TryIntrinsify() { return false; }
+ // Return true if intrinsification succeeded and no more code is needed.
+ // Returns false if either no intrinsification occured or if intrinsified
+ // code needs the rest for slow case execution.
+ bool TryIntrinsify();
+
+ void IntrinsifyGetter();
+ void IntrinsifySetter();
+
virtual void GeneratePreEntryCode();
void GenerateLegacyEntryCode();
void GenerateEntryCode();
« no previous file with comments | « no previous file | runtime/vm/code_generator_ia32.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698