OLD | NEW |
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 908 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
919 static ExternalReference wasm_f32_ceil(Isolate* isolate); | 919 static ExternalReference wasm_f32_ceil(Isolate* isolate); |
920 static ExternalReference wasm_f32_nearest_int(Isolate* isolate); | 920 static ExternalReference wasm_f32_nearest_int(Isolate* isolate); |
921 static ExternalReference wasm_f64_trunc(Isolate* isolate); | 921 static ExternalReference wasm_f64_trunc(Isolate* isolate); |
922 static ExternalReference wasm_f64_floor(Isolate* isolate); | 922 static ExternalReference wasm_f64_floor(Isolate* isolate); |
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); |
| 930 static ExternalReference wasm_float32_to_uint64(Isolate* isolate); |
| 931 static ExternalReference wasm_float64_to_int64(Isolate* isolate); |
| 932 static ExternalReference wasm_float64_to_uint64(Isolate* isolate); |
929 | 933 |
930 static ExternalReference f64_acos_wrapper_function(Isolate* isolate); | 934 static ExternalReference f64_acos_wrapper_function(Isolate* isolate); |
931 static ExternalReference f64_asin_wrapper_function(Isolate* isolate); | 935 static ExternalReference f64_asin_wrapper_function(Isolate* isolate); |
932 static ExternalReference f64_atan_wrapper_function(Isolate* isolate); | 936 static ExternalReference f64_atan_wrapper_function(Isolate* isolate); |
933 static ExternalReference f64_cos_wrapper_function(Isolate* isolate); | 937 static ExternalReference f64_cos_wrapper_function(Isolate* isolate); |
934 static ExternalReference f64_sin_wrapper_function(Isolate* isolate); | 938 static ExternalReference f64_sin_wrapper_function(Isolate* isolate); |
935 static ExternalReference f64_tan_wrapper_function(Isolate* isolate); | 939 static ExternalReference f64_tan_wrapper_function(Isolate* isolate); |
936 static ExternalReference f64_exp_wrapper_function(Isolate* isolate); | 940 static ExternalReference f64_exp_wrapper_function(Isolate* isolate); |
937 static ExternalReference f64_log_wrapper_function(Isolate* isolate); | 941 static ExternalReference f64_log_wrapper_function(Isolate* isolate); |
938 static ExternalReference f64_atan2_wrapper_function(Isolate* isolate); | 942 static ExternalReference f64_atan2_wrapper_function(Isolate* isolate); |
(...skipping 358 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1297 std::vector<ConstantPoolEntry> shared_entries; | 1301 std::vector<ConstantPoolEntry> shared_entries; |
1298 }; | 1302 }; |
1299 | 1303 |
1300 Label emitted_label_; // Records pc_offset of emitted pool | 1304 Label emitted_label_; // Records pc_offset of emitted pool |
1301 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; | 1305 PerTypeEntryInfo info_[ConstantPoolEntry::NUMBER_OF_TYPES]; |
1302 }; | 1306 }; |
1303 | 1307 |
1304 } // namespace internal | 1308 } // namespace internal |
1305 } // namespace v8 | 1309 } // namespace v8 |
1306 #endif // V8_ASSEMBLER_H_ | 1310 #endif // V8_ASSEMBLER_H_ |
OLD | NEW |