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

Unified Diff: src/external-reference-table.cc

Issue 2859203002: [string] Move String.p.toLowerCase to CSA (Closed)
Patch Set: Address comments Created 3 years, 7 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 | « src/code-stub-assembler.cc ('k') | src/intl.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/external-reference-table.cc
diff --git a/src/external-reference-table.cc b/src/external-reference-table.cc
index 276d0ea91ec9a5948aab504660e40cedccb438a1..3d4b78107bdf2fb8a285187cda999267c0b53a8d 100644
--- a/src/external-reference-table.cc
+++ b/src/external-reference-table.cc
@@ -250,6 +250,12 @@ void ExternalReferenceTable::AddReferences(Isolate* isolate) {
"libc_memset");
Add(ExternalReference::try_internalize_string_function(isolate).address(),
"try_internalize_string_function");
+#ifdef V8_INTL_SUPPORT
+ Add(ExternalReference::intl_convert_one_byte_to_lower(isolate).address(),
+ "intl_convert_one_byte_to_lower");
+ Add(ExternalReference::intl_to_latin1_lower_table(isolate).address(),
+ "intl_to_latin1_lower_table");
+#endif // V8_INTL_SUPPORT
Add(ExternalReference::search_string_raw<const uint8_t, const uint8_t>(
isolate)
.address(),
« no previous file with comments | « src/code-stub-assembler.cc ('k') | src/intl.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698