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

Side by Side Diff: src/assembler.h

Issue 2484003002: [builtins] implement JSBuiltinReducer for ArrayIteratorNext() (Closed)
Patch Set: CheckIf() for ArrayBufferWasNeutered() rather than a branch, which hopefully can be eliminated, and… Created 4 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 unified diff | Download patch
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/builtins/builtins-array.cc » ('J')
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 936 matching lines...) Expand 10 before | Expand all | Expand 10 after
947 static ExternalReference f64_asin_wrapper_function(Isolate* isolate); 947 static ExternalReference f64_asin_wrapper_function(Isolate* isolate);
948 static ExternalReference f64_mod_wrapper_function(Isolate* isolate); 948 static ExternalReference f64_mod_wrapper_function(Isolate* isolate);
949 949
950 // Log support. 950 // Log support.
951 static ExternalReference log_enter_external_function(Isolate* isolate); 951 static ExternalReference log_enter_external_function(Isolate* isolate);
952 static ExternalReference log_leave_external_function(Isolate* isolate); 952 static ExternalReference log_leave_external_function(Isolate* isolate);
953 953
954 // Static variable Heap::roots_array_start() 954 // Static variable Heap::roots_array_start()
955 static ExternalReference roots_array_start(Isolate* isolate); 955 static ExternalReference roots_array_start(Isolate* isolate);
956 956
957 // Static variable Heap::native_contexts_list_address()
958 static ExternalReference native_contexts_list_address(Isolate* isolate);
959
957 // Static variable Heap::allocation_sites_list_address() 960 // Static variable Heap::allocation_sites_list_address()
958 static ExternalReference allocation_sites_list_address(Isolate* isolate); 961 static ExternalReference allocation_sites_list_address(Isolate* isolate);
959 962
960 // Static variable StackGuard::address_of_jslimit() 963 // Static variable StackGuard::address_of_jslimit()
961 V8_EXPORT_PRIVATE static ExternalReference address_of_stack_limit( 964 V8_EXPORT_PRIVATE static ExternalReference address_of_stack_limit(
962 Isolate* isolate); 965 Isolate* isolate);
963 966
964 // Static variable StackGuard::address_of_real_jslimit() 967 // Static variable StackGuard::address_of_real_jslimit()
965 static ExternalReference address_of_real_stack_limit(Isolate* isolate); 968 static ExternalReference address_of_real_stack_limit(Isolate* isolate);
966 969
(...skipping 313 matching lines...) Expand 10 before | Expand all | Expand 10 after
1280 std::vector<ConstantPoolEntry> shared_entries; 1283 std::vector<ConstantPoolEntry> shared_entries;
1281 }; 1284 };
1282 1285
1283 Label emitted_label_; // Records pc_offset of emitted pool 1286 Label emitted_label_; // Records pc_offset of emitted pool
1284 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1287 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1285 }; 1288 };
1286 1289
1287 } // namespace internal 1290 } // namespace internal
1288 } // namespace v8 1291 } // namespace v8
1289 #endif // V8_ASSEMBLER_H_ 1292 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/builtins/builtins-array.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698