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

Side by Side Diff: src/assembler.h

Issue 2103733003: [turbofan] Introduce Float64Pow and NumberPow operators. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: REBASE on ARM64 bug fix. Created 4 years, 5 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 | « src/arm64/code-stubs-arm64.cc ('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 999 matching lines...) Expand 10 before | Expand all | Expand 10 after
1010 static ExternalReference store_buffer_top(Isolate* isolate); 1010 static ExternalReference store_buffer_top(Isolate* isolate);
1011 1011
1012 // Used for fast allocation in generated code. 1012 // Used for fast allocation in generated code.
1013 static ExternalReference new_space_allocation_top_address(Isolate* isolate); 1013 static ExternalReference new_space_allocation_top_address(Isolate* isolate);
1014 static ExternalReference new_space_allocation_limit_address(Isolate* isolate); 1014 static ExternalReference new_space_allocation_limit_address(Isolate* isolate);
1015 static ExternalReference old_space_allocation_top_address(Isolate* isolate); 1015 static ExternalReference old_space_allocation_top_address(Isolate* isolate);
1016 static ExternalReference old_space_allocation_limit_address(Isolate* isolate); 1016 static ExternalReference old_space_allocation_limit_address(Isolate* isolate);
1017 1017
1018 static ExternalReference mod_two_doubles_operation(Isolate* isolate); 1018 static ExternalReference mod_two_doubles_operation(Isolate* isolate);
1019 static ExternalReference power_double_double_function(Isolate* isolate); 1019 static ExternalReference power_double_double_function(Isolate* isolate);
1020 static ExternalReference power_double_int_function(Isolate* isolate);
1021 1020
1022 static ExternalReference handle_scope_next_address(Isolate* isolate); 1021 static ExternalReference handle_scope_next_address(Isolate* isolate);
1023 static ExternalReference handle_scope_limit_address(Isolate* isolate); 1022 static ExternalReference handle_scope_limit_address(Isolate* isolate);
1024 static ExternalReference handle_scope_level_address(Isolate* isolate); 1023 static ExternalReference handle_scope_level_address(Isolate* isolate);
1025 1024
1026 static ExternalReference scheduled_exception_address(Isolate* isolate); 1025 static ExternalReference scheduled_exception_address(Isolate* isolate);
1027 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 1026 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
1028 1027
1029 // Static variables containing common double constants. 1028 // Static variables containing common double constants.
1030 static ExternalReference address_of_min_int(); 1029 static ExternalReference address_of_min_int();
(...skipping 306 matching lines...) Expand 10 before | Expand all | Expand 10 after
1337 std::vector<ConstantPoolEntry> shared_entries; 1336 std::vector<ConstantPoolEntry> shared_entries;
1338 }; 1337 };
1339 1338
1340 Label emitted_label_; // Records pc_offset of emitted pool 1339 Label emitted_label_; // Records pc_offset of emitted pool
1341 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1340 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1342 }; 1341 };
1343 1342
1344 } // namespace internal 1343 } // namespace internal
1345 } // namespace v8 1344 } // namespace v8
1346 #endif // V8_ASSEMBLER_H_ 1345 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « src/arm64/code-stubs-arm64.cc ('k') | src/assembler.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698