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

Unified Diff: runtime/vm/flow_graph_compiler.cc

Issue 10542167: Inline Math.sqrt in new compilers. (Closed) Base URL: http://dart.googlecode.com/svn/branches/bleeding_edge/dart/
Patch Set: Created 8 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
« no previous file with comments | « runtime/vm/assembler_x64_test.cc ('k') | runtime/vm/flow_graph_compiler_ia32.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: runtime/vm/flow_graph_compiler.cc
===================================================================
--- runtime/vm/flow_graph_compiler.cc (revision 8700)
+++ runtime/vm/flow_graph_compiler.cc (working copy)
@@ -10,6 +10,7 @@
#include "vm/il_printer.h"
#include "vm/intrinsifier.h"
#include "vm/longjump.h"
+#include "vm/object_store.h"
#include "vm/parser.h"
#include "vm/stub_code.h"
@@ -39,7 +40,9 @@
deopt_stubs_(),
is_optimizing_(is_optimizing),
bool_true_(Bool::ZoneHandle(Bool::True())),
- bool_false_(Bool::ZoneHandle(Bool::False())) {
+ bool_false_(Bool::ZoneHandle(Bool::False())),
+ double_class_(Class::ZoneHandle(
+ Isolate::Current()->object_store()->double_class())) {
ASSERT(assembler != NULL);
}
« no previous file with comments | « runtime/vm/assembler_x64_test.cc ('k') | runtime/vm/flow_graph_compiler_ia32.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698