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

Side by Side Diff: src/assembler.h

Issue 2811333002: [builtins] HasOwnProperty: handle non-internalized string keys (Closed)
Patch Set: rebased (noop) 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 974 matching lines...) Expand 10 before | Expand all | Expand 10 after
985 static ExternalReference ieee754_log2_function(Isolate* isolate); 985 static ExternalReference ieee754_log2_function(Isolate* isolate);
986 static ExternalReference ieee754_sin_function(Isolate* isolate); 986 static ExternalReference ieee754_sin_function(Isolate* isolate);
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);
996
995 static ExternalReference page_flags(Page* page); 997 static ExternalReference page_flags(Page* page);
996 998
997 static ExternalReference ForDeoptEntry(Address entry); 999 static ExternalReference ForDeoptEntry(Address entry);
998 1000
999 static ExternalReference cpu_features(); 1001 static ExternalReference cpu_features();
1000 1002
1001 static ExternalReference is_tail_call_elimination_enabled_address( 1003 static ExternalReference is_tail_call_elimination_enabled_address(
1002 Isolate* isolate); 1004 Isolate* isolate);
1003 1005
1004 static ExternalReference debug_is_active_address(Isolate* isolate); 1006 static ExternalReference debug_is_active_address(Isolate* isolate);
(...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after
1251 std::vector<ConstantPoolEntry> shared_entries; 1253 std::vector<ConstantPoolEntry> shared_entries;
1252 }; 1254 };
1253 1255
1254 Label emitted_label_; // Records pc_offset of emitted pool 1256 Label emitted_label_; // Records pc_offset of emitted pool
1255 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1257 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1256 }; 1258 };
1257 1259
1258 } // namespace internal 1260 } // namespace internal
1259 } // namespace v8 1261 } // namespace v8
1260 #endif // V8_ASSEMBLER_H_ 1262 #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