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

Side by Side Diff: src/assembler.h

Issue 1804513002: [wasm] Int64Lowering of I64Div and I64Rem. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Rebase Created 4 years, 9 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 912 matching lines...) Expand 10 before | Expand all | Expand 10 after
923 static ExternalReference wasm_f64_ceil(Isolate* isolate); 923 static ExternalReference wasm_f64_ceil(Isolate* isolate);
924 static ExternalReference wasm_f64_nearest_int(Isolate* isolate); 924 static ExternalReference wasm_f64_nearest_int(Isolate* isolate);
925 static ExternalReference wasm_int64_to_float32(Isolate* isolate); 925 static ExternalReference wasm_int64_to_float32(Isolate* isolate);
926 static ExternalReference wasm_uint64_to_float32(Isolate* isolate); 926 static ExternalReference wasm_uint64_to_float32(Isolate* isolate);
927 static ExternalReference wasm_int64_to_float64(Isolate* isolate); 927 static ExternalReference wasm_int64_to_float64(Isolate* isolate);
928 static ExternalReference wasm_uint64_to_float64(Isolate* isolate); 928 static ExternalReference wasm_uint64_to_float64(Isolate* isolate);
929 static ExternalReference wasm_float32_to_int64(Isolate* isolate); 929 static ExternalReference wasm_float32_to_int64(Isolate* isolate);
930 static ExternalReference wasm_float32_to_uint64(Isolate* isolate); 930 static ExternalReference wasm_float32_to_uint64(Isolate* isolate);
931 static ExternalReference wasm_float64_to_int64(Isolate* isolate); 931 static ExternalReference wasm_float64_to_int64(Isolate* isolate);
932 static ExternalReference wasm_float64_to_uint64(Isolate* isolate); 932 static ExternalReference wasm_float64_to_uint64(Isolate* isolate);
933 static ExternalReference wasm_int64_div(Isolate* isolate);
934 static ExternalReference wasm_int64_mod(Isolate* isolate);
935 static ExternalReference wasm_uint64_div(Isolate* isolate);
936 static ExternalReference wasm_uint64_mod(Isolate* isolate);
933 937
934 static ExternalReference f64_acos_wrapper_function(Isolate* isolate); 938 static ExternalReference f64_acos_wrapper_function(Isolate* isolate);
935 static ExternalReference f64_asin_wrapper_function(Isolate* isolate); 939 static ExternalReference f64_asin_wrapper_function(Isolate* isolate);
936 static ExternalReference f64_atan_wrapper_function(Isolate* isolate); 940 static ExternalReference f64_atan_wrapper_function(Isolate* isolate);
937 static ExternalReference f64_cos_wrapper_function(Isolate* isolate); 941 static ExternalReference f64_cos_wrapper_function(Isolate* isolate);
938 static ExternalReference f64_sin_wrapper_function(Isolate* isolate); 942 static ExternalReference f64_sin_wrapper_function(Isolate* isolate);
939 static ExternalReference f64_tan_wrapper_function(Isolate* isolate); 943 static ExternalReference f64_tan_wrapper_function(Isolate* isolate);
940 static ExternalReference f64_exp_wrapper_function(Isolate* isolate); 944 static ExternalReference f64_exp_wrapper_function(Isolate* isolate);
941 static ExternalReference f64_log_wrapper_function(Isolate* isolate); 945 static ExternalReference f64_log_wrapper_function(Isolate* isolate);
942 static ExternalReference f64_atan2_wrapper_function(Isolate* isolate); 946 static ExternalReference f64_atan2_wrapper_function(Isolate* isolate);
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after
1301 std::vector<ConstantPoolEntry> shared_entries; 1305 std::vector<ConstantPoolEntry> shared_entries;
1302 }; 1306 };
1303 1307
1304 Label emitted_label_; // Records pc_offset of emitted pool 1308 Label emitted_label_; // Records pc_offset of emitted pool
1305 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; 1309 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES];
1306 }; 1310 };
1307 1311
1308 } // namespace internal 1312 } // namespace internal
1309 } // namespace v8 1313 } // namespace v8
1310 #endif // V8_ASSEMBLER_H_ 1314 #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