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

Unified Diff: runtime/vm/intrinsifier.cc

Issue 683433003: Integrate the Irregexp Regular Expression Engine. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: more comments Created 6 years, 1 month 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.cc
diff --git a/runtime/vm/intrinsifier.cc b/runtime/vm/intrinsifier.cc
index c195e300e1d605c1d91a1d1d2e863427ec40d9f1..90f2b400dcad4b2ab08d14c95f17c8edef587eef 100644
--- a/runtime/vm/intrinsifier.cc
+++ b/runtime/vm/intrinsifier.cc
@@ -69,6 +69,9 @@ void Intrinsifier::InitializeState() {
lib = Library::CoreLibrary();
ASSERT(!lib.IsNull());
CORE_LIB_INTRINSIC_LIST(SETUP_FUNCTION);
+ if (FLAG_use_jscre) {
+ CORE_REGEXP_LIB_INTRINSIC_LIST(SETUP_FUNCTION);
Ivan Posva 2014/11/14 08:42:49 Did you add an intrinsic for JSCRE?
zerny-google 2014/11/14 12:18:57 Yes. So I missed this because it is not compatible
+ }
CORE_INTEGER_LIB_INTRINSIC_LIST(SETUP_FUNCTION);
GRAPH_CORE_INTRINSICS_LIST(SETUP_FUNCTION);

Powered by Google App Engine
This is Rietveld 408576698