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