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

Side by Side Diff: src/assembler.h

Issue 1584663007: [turbofan] Implement rounding of floats on x64 and ia32 without sse4.1. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: reduced generated code. Created 4 years, 11 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 947 matching lines...) Expand 10 before | Expand all | Expand 10 after
958 static ExternalReference scheduled_exception_address(Isolate* isolate); 958 static ExternalReference scheduled_exception_address(Isolate* isolate);
959 static ExternalReference address_of_pending_message_obj(Isolate* isolate); 959 static ExternalReference address_of_pending_message_obj(Isolate* isolate);
960 960
961 // Static variables containing common double constants. 961 // Static variables containing common double constants.
962 static ExternalReference address_of_min_int(); 962 static ExternalReference address_of_min_int();
963 static ExternalReference address_of_one_half(); 963 static ExternalReference address_of_one_half();
964 static ExternalReference address_of_minus_one_half(); 964 static ExternalReference address_of_minus_one_half();
965 static ExternalReference address_of_negative_infinity(); 965 static ExternalReference address_of_negative_infinity();
966 static ExternalReference address_of_the_hole_nan(); 966 static ExternalReference address_of_the_hole_nan();
967 static ExternalReference address_of_uint32_bias(); 967 static ExternalReference address_of_uint32_bias();
968 static ExternalReference address_of_rounding_limit();
968 969
969 static ExternalReference math_log_double_function(Isolate* isolate); 970 static ExternalReference math_log_double_function(Isolate* isolate);
970 971
971 static ExternalReference math_exp_constants(int constant_index); 972 static ExternalReference math_exp_constants(int constant_index);
972 static ExternalReference math_exp_log_table(); 973 static ExternalReference math_exp_log_table();
973 974
974 static ExternalReference page_flags(Page* page); 975 static ExternalReference page_flags(Page* page);
975 976
976 static ExternalReference ForDeoptEntry(Address entry); 977 static ExternalReference ForDeoptEntry(Address entry);
977 978
(...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
1279 std::vector<ConstantPoolEntry> shared_entries; 1280 std::vector<ConstantPoolEntry> shared_entries;
1280 }; 1281 };
1281 1282
1282 Label emitted_label_; // Records pc_offset of emitted pool 1283 Label emitted_label_; // Records pc_offset of emitted pool
1283 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1284 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1284 }; 1285 };
1285 1286
1286 } // namespace internal 1287 } // namespace internal
1287 } // namespace v8 1288 } // namespace v8
1288 #endif // V8_ASSEMBLER_H_ 1289 #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