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 47 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
58 "LDoubleConstant::one_half"); | 58 "LDoubleConstant::one_half"); |
59 Add(ExternalReference::isolate_address(isolate).address(), "isolate"); | 59 Add(ExternalReference::isolate_address(isolate).address(), "isolate"); |
60 Add(ExternalReference::interpreter_dispatch_table_address(isolate).address(), | 60 Add(ExternalReference::interpreter_dispatch_table_address(isolate).address(), |
61 "Interpreter::dispatch_table_address"); | 61 "Interpreter::dispatch_table_address"); |
62 Add(ExternalReference::interpreter_dispatch_counters(isolate).address(), | 62 Add(ExternalReference::interpreter_dispatch_counters(isolate).address(), |
63 "Interpreter::interpreter_dispatch_counters"); | 63 "Interpreter::interpreter_dispatch_counters"); |
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(), | |
69 "power_double_int_function"); | |
70 Add(ExternalReference::ieee754_atan_function(isolate).address(), | 68 Add(ExternalReference::ieee754_atan_function(isolate).address(), |
71 "base::ieee754::atan"); | 69 "base::ieee754::atan"); |
72 Add(ExternalReference::ieee754_atan2_function(isolate).address(), | 70 Add(ExternalReference::ieee754_atan2_function(isolate).address(), |
73 "base::ieee754::atan2"); | 71 "base::ieee754::atan2"); |
74 Add(ExternalReference::ieee754_atanh_function(isolate).address(), | 72 Add(ExternalReference::ieee754_atanh_function(isolate).address(), |
75 "base::ieee754::atanh"); | 73 "base::ieee754::atanh"); |
76 Add(ExternalReference::ieee754_cbrt_function(isolate).address(), | 74 Add(ExternalReference::ieee754_cbrt_function(isolate).address(), |
77 "base::ieee754::cbrt"); | 75 "base::ieee754::cbrt"); |
78 Add(ExternalReference::ieee754_cos_function(isolate).address(), | 76 Add(ExternalReference::ieee754_cos_function(isolate).address(), |
79 "base::ieee754::cos"); | 77 "base::ieee754::cos"); |
(...skipping 304 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
384 if (api_external_references != nullptr) { | 382 if (api_external_references != nullptr) { |
385 while (*api_external_references != 0) { | 383 while (*api_external_references != 0) { |
386 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>"); | 384 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>"); |
387 api_external_references++; | 385 api_external_references++; |
388 } | 386 } |
389 } | 387 } |
390 } | 388 } |
391 | 389 |
392 } // namespace internal | 390 } // namespace internal |
393 } // namespace v8 | 391 } // namespace v8 |
OLD | NEW |