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 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
54 "Deoptimizer::New()"); | 54 "Deoptimizer::New()"); |
55 Add(ExternalReference::compute_output_frames_function(isolate).address(), | 55 Add(ExternalReference::compute_output_frames_function(isolate).address(), |
56 "Deoptimizer::ComputeOutputFrames()"); | 56 "Deoptimizer::ComputeOutputFrames()"); |
57 Add(ExternalReference::address_of_min_int().address(), | 57 Add(ExternalReference::address_of_min_int().address(), |
58 "LDoubleConstant::min_int"); | 58 "LDoubleConstant::min_int"); |
59 Add(ExternalReference::address_of_one_half().address(), | 59 Add(ExternalReference::address_of_one_half().address(), |
60 "LDoubleConstant::one_half"); | 60 "LDoubleConstant::one_half"); |
61 Add(ExternalReference::isolate_address(isolate).address(), "isolate"); | 61 Add(ExternalReference::isolate_address(isolate).address(), "isolate"); |
62 Add(ExternalReference::interpreter_dispatch_table_address(isolate).address(), | 62 Add(ExternalReference::interpreter_dispatch_table_address(isolate).address(), |
63 "Interpreter::dispatch_table_address"); | 63 "Interpreter::dispatch_table_address"); |
| 64 Add(ExternalReference::interpreter_handlers_dispatch_counters(isolate) |
| 65 .address(), |
| 66 "Interpreter::interpreter_handlers_dispatch_counters"); |
64 Add(ExternalReference::address_of_negative_infinity().address(), | 67 Add(ExternalReference::address_of_negative_infinity().address(), |
65 "LDoubleConstant::negative_infinity"); | 68 "LDoubleConstant::negative_infinity"); |
66 Add(ExternalReference::power_double_double_function(isolate).address(), | 69 Add(ExternalReference::power_double_double_function(isolate).address(), |
67 "power_double_double_function"); | 70 "power_double_double_function"); |
68 Add(ExternalReference::power_double_int_function(isolate).address(), | 71 Add(ExternalReference::power_double_int_function(isolate).address(), |
69 "power_double_int_function"); | 72 "power_double_int_function"); |
70 Add(ExternalReference::math_log_double_function(isolate).address(), | 73 Add(ExternalReference::math_log_double_function(isolate).address(), |
71 "std::log"); | 74 "std::log"); |
72 Add(ExternalReference::store_buffer_top(isolate).address(), | 75 Add(ExternalReference::store_buffer_top(isolate).address(), |
73 "store_buffer_top"); | 76 "store_buffer_top"); |
(...skipping 270 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
344 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) { | 347 for (int entry = 0; entry < kDeoptTableSerializeEntryCount; ++entry) { |
345 Address address = Deoptimizer::GetDeoptimizationEntry( | 348 Address address = Deoptimizer::GetDeoptimizationEntry( |
346 isolate, entry, Deoptimizer::LAZY, | 349 isolate, entry, Deoptimizer::LAZY, |
347 Deoptimizer::CALCULATE_ENTRY_ADDRESS); | 350 Deoptimizer::CALCULATE_ENTRY_ADDRESS); |
348 Add(address, "lazy_deopt"); | 351 Add(address, "lazy_deopt"); |
349 } | 352 } |
350 } | 353 } |
351 | 354 |
352 } // namespace internal | 355 } // namespace internal |
353 } // namespace v8 | 356 } // namespace v8 |
OLD | NEW |