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

Unified Diff: runtime/vm/intrinsifier.h

Issue 484693003: Improve polymorphic inlining of int/int double/double operations. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 6 years, 4 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/intrinsifier.h
===================================================================
--- runtime/vm/intrinsifier.h (revision 39328)
+++ runtime/vm/intrinsifier.h (working copy)
@@ -148,6 +148,7 @@
// Forward declarations.
class Assembler;
class Function;
+class Library;
class Intrinsifier : public AllStatic {
public:
@@ -158,6 +159,12 @@
static bool CanIntrinsify(const Function& function);
static void InitializeState();
+ static bool TestFunction(const Library& lib,
+ const char* class_name,
+ const char* function_name,
+ const char* test_class_name,
+ const char* test_function_name);
+
private:
#define DECLARE_FUNCTION(test_class_name, test_function_name, destination, fp) \
static void destination(Assembler* assembler);

Powered by Google App Engine
This is Rietveld 408576698