OLD | NEW |
1 // Copyright 2016 the V8 project authors. All rights reserved. | 1 // Copyright 2016 the V8 project authors. All rights reserved. |
2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
4 | 4 |
5 #include "src/external-reference-table.h" | 5 #include "src/external-reference-table.h" |
6 | 6 |
7 #include "src/accessors.h" | 7 #include "src/accessors.h" |
8 #include "src/assembler.h" | 8 #include "src/assembler.h" |
9 #include "src/counters.h" | 9 #include "src/counters.h" |
10 #include "src/deoptimizer.h" | 10 #include "src/deoptimizer.h" |
(...skipping 53 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
64 Add(ExternalReference::address_of_negative_infinity().address(), | 64 Add(ExternalReference::address_of_negative_infinity().address(), |
65 "LDoubleConstant::negative_infinity"); | 65 "LDoubleConstant::negative_infinity"); |
66 Add(ExternalReference::power_double_double_function(isolate).address(), | 66 Add(ExternalReference::power_double_double_function(isolate).address(), |
67 "power_double_double_function"); | 67 "power_double_double_function"); |
68 Add(ExternalReference::power_double_int_function(isolate).address(), | 68 Add(ExternalReference::power_double_int_function(isolate).address(), |
69 "power_double_int_function"); | 69 "power_double_int_function"); |
70 Add(ExternalReference::ieee754_atan_function(isolate).address(), | 70 Add(ExternalReference::ieee754_atan_function(isolate).address(), |
71 "base::ieee754::atan"); | 71 "base::ieee754::atan"); |
72 Add(ExternalReference::ieee754_atan2_function(isolate).address(), | 72 Add(ExternalReference::ieee754_atan2_function(isolate).address(), |
73 "base::ieee754::atan2"); | 73 "base::ieee754::atan2"); |
| 74 Add(ExternalReference::ieee754_atanh_function(isolate).address(), |
| 75 "base::ieee754::atanh"); |
74 Add(ExternalReference::ieee754_exp_function(isolate).address(), | 76 Add(ExternalReference::ieee754_exp_function(isolate).address(), |
75 "base::ieee754::exp"); | 77 "base::ieee754::exp"); |
| 78 Add(ExternalReference::ieee754_expm1_function(isolate).address(), |
| 79 "base::ieee754::expm1"); |
76 Add(ExternalReference::ieee754_log_function(isolate).address(), | 80 Add(ExternalReference::ieee754_log_function(isolate).address(), |
77 "base::ieee754::log"); | 81 "base::ieee754::log"); |
78 Add(ExternalReference::ieee754_log1p_function(isolate).address(), | 82 Add(ExternalReference::ieee754_log1p_function(isolate).address(), |
79 "base::ieee754::log1p"); | 83 "base::ieee754::log1p"); |
80 Add(ExternalReference::ieee754_log2_function(isolate).address(), | 84 Add(ExternalReference::ieee754_log2_function(isolate).address(), |
81 "base::ieee754::log2"); | 85 "base::ieee754::log2"); |
82 Add(ExternalReference::ieee754_log10_function(isolate).address(), | 86 Add(ExternalReference::ieee754_log10_function(isolate).address(), |
83 "base::ieee754::log10"); | 87 "base::ieee754::log10"); |
| 88 Add(ExternalReference::ieee754_cbrt_function(isolate).address(), |
| 89 "base::ieee754::cbrt"); |
84 Add(ExternalReference::store_buffer_top(isolate).address(), | 90 Add(ExternalReference::store_buffer_top(isolate).address(), |
85 "store_buffer_top"); | 91 "store_buffer_top"); |
86 Add(ExternalReference::address_of_the_hole_nan().address(), "the_hole_nan"); | 92 Add(ExternalReference::address_of_the_hole_nan().address(), "the_hole_nan"); |
87 Add(ExternalReference::get_date_field_function(isolate).address(), | 93 Add(ExternalReference::get_date_field_function(isolate).address(), |
88 "JSDate::GetField"); | 94 "JSDate::GetField"); |
89 Add(ExternalReference::date_cache_stamp(isolate).address(), | 95 Add(ExternalReference::date_cache_stamp(isolate).address(), |
90 "date_cache_stamp"); | 96 "date_cache_stamp"); |
91 Add(ExternalReference::address_of_pending_message_obj(isolate).address(), | 97 Add(ExternalReference::address_of_pending_message_obj(isolate).address(), |
92 "address_of_pending_message_obj"); | 98 "address_of_pending_message_obj"); |
93 Add(ExternalReference::get_make_code_young_function(isolate).address(), | 99 Add(ExternalReference::get_make_code_young_function(isolate).address(), |
(...skipping 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
371 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) { | 377 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) { |
372 Address address = Deoptimizer::GetDeoptimizationEntry( | 378 Address address = Deoptimizer::GetDeoptimizationEntry( |
373 isolate, entry, Deoptimizer::LAZY, | 379 isolate, entry, Deoptimizer::LAZY, |
374 Deoptimizer::CALCULATE_ENTRY_ADDRESS); | 380 Deoptimizer::CALCULATE_ENTRY_ADDRESS); |
375 Add(address, "lazy_deopt"); | 381 Add(address, "lazy_deopt"); |
376 } | 382 } |
377 } | 383 } |
378 | 384 |
379 } // namespace internal | 385 } // namespace internal |
380 } // namespace v8 | 386 } // namespace v8 |
OLD | NEW |