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

Side by Side Diff: src/assembler.h

Issue 1638283004: [wasm] Backoff implementation for F64Trunc using std::trunc. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@init-root-register
Patch Set: Use math.h trunc instead of std::trunc. Created 4 years, 10 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') | src/assembler.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 889 matching lines...) Expand 10 before | Expand all | Expand 10 after
900 static ExternalReference get_date_field_function(Isolate* isolate); 900 static ExternalReference get_date_field_function(Isolate* isolate);
901 static ExternalReference date_cache_stamp(Isolate* isolate); 901 static ExternalReference date_cache_stamp(Isolate* isolate);
902 902
903 static ExternalReference get_make_code_young_function(Isolate* isolate); 903 static ExternalReference get_make_code_young_function(Isolate* isolate);
904 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate); 904 static ExternalReference get_mark_code_as_executed_function(Isolate* isolate);
905 905
906 // Deoptimization support. 906 // Deoptimization support.
907 static ExternalReference new_deoptimizer_function(Isolate* isolate); 907 static ExternalReference new_deoptimizer_function(Isolate* isolate);
908 static ExternalReference compute_output_frames_function(Isolate* isolate); 908 static ExternalReference compute_output_frames_function(Isolate* isolate);
909 909
910 static ExternalReference trunc64_wrapper_function(Isolate* isolate);
911
910 // Log support. 912 // Log support.
911 static ExternalReference log_enter_external_function(Isolate* isolate); 913 static ExternalReference log_enter_external_function(Isolate* isolate);
912 static ExternalReference log_leave_external_function(Isolate* isolate); 914 static ExternalReference log_leave_external_function(Isolate* isolate);
913 915
914 // Static data in the keyed lookup cache. 916 // Static data in the keyed lookup cache.
915 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate); 917 static ExternalReference keyed_lookup_cache_keys(Isolate* isolate);
916 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate); 918 static ExternalReference keyed_lookup_cache_field_offsets(Isolate* isolate);
917 919
918 // Static variable Heap::roots_array_start() 920 // Static variable Heap::roots_array_start()
919 static ExternalReference roots_array_start(Isolate* isolate); 921 static ExternalReference roots_array_start(Isolate* isolate);
(...skipping 362 matching lines...) Expand 10 before | Expand all | Expand 10 after
1282 std::vector<ConstantPoolEntry> shared_entries; 1284 std::vector<ConstantPoolEntry> shared_entries;
1283 }; 1285 };
1284 1286
1285 Label emitted_label_; // Records pc_offset of emitted pool 1287 Label emitted_label_; // Records pc_offset of emitted pool
1286 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1288 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1287 }; 1289 };
1288 1290
1289 } // namespace internal 1291 } // namespace internal
1290 } // namespace v8 1292 } // namespace v8
1291 #endif // V8_ASSEMBLER_H_ 1293 #endif // V8_ASSEMBLER_H_
OLDNEW
« no previous file with comments | « no previous file | src/assembler.cc » ('j') | src/assembler.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698