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

Side by Side Diff: src/assembler.h

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 unified diff | Download patch
« no previous file with comments | « BUILD.gn ('k') | src/assembler.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 1994-2006 Sun Microsystems Inc. 1 // Copyright (c) 1994-2006 Sun Microsystems Inc.
2 // All Rights Reserved. 2 // All Rights Reserved.
3 // 3 //
4 // Redistribution and use in source and binary forms, with or without 4 // Redistribution and use in source and binary forms, with or without
5 // modification, are permitted provided that the following conditions are 5 // modification, are permitted provided that the following conditions are
6 // met: 6 // met:
7 // 7 //
8 // - Redistributions of source code must retain the above copyright notice, 8 // - Redistributions of source code must retain the above copyright notice,
9 // this list of conditions and the following disclaimer. 9 // this list of conditions and the following disclaimer.
10 // 10 //
(...skipping 975 matching lines...) Expand 10 before | Expand all | Expand 10 after
986 static ExternalReference ieee754_sinh_function(Isolate* isolate); 986 static ExternalReference ieee754_sinh_function(Isolate* isolate);
987 static ExternalReference ieee754_tan_function(Isolate* isolate); 987 static ExternalReference ieee754_tan_function(Isolate* isolate);
988 static ExternalReference ieee754_tanh_function(Isolate* isolate); 988 static ExternalReference ieee754_tanh_function(Isolate* isolate);
989 989
990 static ExternalReference libc_memchr_function(Isolate* isolate); 990 static ExternalReference libc_memchr_function(Isolate* isolate);
991 static ExternalReference libc_memcpy_function(Isolate* isolate); 991 static ExternalReference libc_memcpy_function(Isolate* isolate);
992 static ExternalReference libc_memset_function(Isolate* isolate); 992 static ExternalReference libc_memset_function(Isolate* isolate);
993 993
994 static ExternalReference try_internalize_string_function(Isolate* isolate); 994 static ExternalReference try_internalize_string_function(Isolate* isolate);
995 995
996 #ifdef V8_INTL_SUPPORT
997 static ExternalReference intl_convert_one_byte_to_lower(Isolate* isolate);
998 static ExternalReference intl_to_latin1_lower_table(Isolate* isolate);
999 #endif // V8_INTL_SUPPORT
1000
996 template <typename SubjectChar, typename PatternChar> 1001 template <typename SubjectChar, typename PatternChar>
997 static ExternalReference search_string_raw(Isolate* isolate); 1002 static ExternalReference search_string_raw(Isolate* isolate);
998 1003
999 static ExternalReference page_flags(Page* page); 1004 static ExternalReference page_flags(Page* page);
1000 1005
1001 static ExternalReference ForDeoptEntry(Address entry); 1006 static ExternalReference ForDeoptEntry(Address entry);
1002 1007
1003 static ExternalReference cpu_features(); 1008 static ExternalReference cpu_features();
1004 1009
1005 static ExternalReference is_tail_call_elimination_enabled_address( 1010 static ExternalReference is_tail_call_elimination_enabled_address(
(...skipping 249 matching lines...) Expand 10 before | Expand all | Expand 10 after
1255 std::vector<ConstantPoolEntry> shared_entries; 1260 std::vector<ConstantPoolEntry> shared_entries;
1256 }; 1261 };
1257 1262
1258 Label emitted_label_; // Records pc_offset of emitted pool 1263 Label emitted_label_; // Records pc_offset of emitted pool
1259 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1264 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1260 }; 1265 };
1261 1266
1262 } // namespace internal 1267 } // namespace internal
1263 } // namespace v8 1268 } // namespace v8
1264 #endif // V8_ASSEMBLER_H_ 1269 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « BUILD.gn ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698