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

Side by Side Diff: src/assembler.h

Issue 2814373002: [string] Widen StringIndexOf fast path (Closed)
Patch Set: Address comments Created 3 years, 8 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 | « no previous file | 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 976 matching lines...) Expand 10 before | Expand all | Expand 10 after
987 static ExternalReference ieee754_sinh_function(Isolate* isolate); 987 static ExternalReference ieee754_sinh_function(Isolate* isolate);
988 static ExternalReference ieee754_tan_function(Isolate* isolate); 988 static ExternalReference ieee754_tan_function(Isolate* isolate);
989 static ExternalReference ieee754_tanh_function(Isolate* isolate); 989 static ExternalReference ieee754_tanh_function(Isolate* isolate);
990 990
991 static ExternalReference libc_memchr_function(Isolate* isolate); 991 static ExternalReference libc_memchr_function(Isolate* isolate);
992 static ExternalReference libc_memcpy_function(Isolate* isolate); 992 static ExternalReference libc_memcpy_function(Isolate* isolate);
993 static ExternalReference libc_memset_function(Isolate* isolate); 993 static ExternalReference libc_memset_function(Isolate* isolate);
994 994
995 static ExternalReference try_internalize_string_function(Isolate* isolate); 995 static ExternalReference try_internalize_string_function(Isolate* isolate);
996 996
997 template <typename SubjectChar, typename PatternChar>
998 static ExternalReference search_string_raw(Isolate* isolate);
999
997 static ExternalReference page_flags(Page* page); 1000 static ExternalReference page_flags(Page* page);
998 1001
999 static ExternalReference ForDeoptEntry(Address entry); 1002 static ExternalReference ForDeoptEntry(Address entry);
1000 1003
1001 static ExternalReference cpu_features(); 1004 static ExternalReference cpu_features();
1002 1005
1003 static ExternalReference is_tail_call_elimination_enabled_address( 1006 static ExternalReference is_tail_call_elimination_enabled_address(
1004 Isolate* isolate); 1007 Isolate* isolate);
1005 1008
1006 static ExternalReference debug_is_active_address(Isolate* isolate); 1009 static ExternalReference debug_is_active_address(Isolate* isolate);
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1253 std::vector<ConstantPoolEntry> shared_entries; 1256 std::vector<ConstantPoolEntry> shared_entries;
1254 }; 1257 };
1255 1258
1256 Label emitted_label_; // Records pc_offset of emitted pool 1259 Label emitted_label_; // Records pc_offset of emitted pool
1257 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1260 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1258 }; 1261 };
1259 1262
1260 } // namespace internal 1263 } // namespace internal
1261 } // namespace v8 1264 } // namespace v8
1262 #endif // V8_ASSEMBLER_H_ 1265 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698