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

Unified Diff: src/external-reference-table.cc

Issue 2161513002: [x64] add Absps/d and Negps/d macro (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: add Abspd and Negpd, and move constants to external reference 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « src/assembler.cc ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: src/external-reference-table.cc
diff --git a/src/external-reference-table.cc b/src/external-reference-table.cc
index 6cef397ea48679498b2d5abab17d149df48b15ee..c2c25bfce8f26d4925421e5e2515ebc07fc29b15 100644
--- a/src/external-reference-table.cc
+++ b/src/external-reference-table.cc
@@ -222,6 +222,14 @@ void ExternalReferenceTable::AddReferences(Isolate* isolate) {
Add(ExternalReference::is_tail_call_elimination_enabled_address(isolate)
.address(),
"Isolate::is_tail_call_elimination_enabled_address()");
+ Add(ExternalReference::address_of_float_abs_constant().address(),
+ "float_absolute_constant");
+ Add(ExternalReference::address_of_float_neg_constant().address(),
+ "float_negate_constant");
+ Add(ExternalReference::address_of_double_abs_constant().address(),
+ "double_absolute_constant");
+ Add(ExternalReference::address_of_double_neg_constant().address(),
+ "double_negate_constant");
// Debug addresses
Add(ExternalReference::debug_after_break_target_address(isolate).address(),
« no previous file with comments | « src/assembler.cc ('k') | src/x64/assembler-x64.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698