Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(808)

Side by Side Diff: src/external-reference-table.cc

Issue 2487173002: [turbofan] Advance bytecode offset after lazy deopt. (Closed)
Patch Set: Rebased. Created 4 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/builtins/builtins.h" 9 #include "src/builtins/builtins.h"
10 #include "src/counters.h" 10 #include "src/counters.h"
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
68 "Deoptimizer::ComputeOutputFrames()"); 68 "Deoptimizer::ComputeOutputFrames()");
69 Add(ExternalReference::address_of_min_int().address(), 69 Add(ExternalReference::address_of_min_int().address(),
70 "LDoubleConstant::min_int"); 70 "LDoubleConstant::min_int");
71 Add(ExternalReference::address_of_one_half().address(), 71 Add(ExternalReference::address_of_one_half().address(),
72 "LDoubleConstant::one_half"); 72 "LDoubleConstant::one_half");
73 Add(ExternalReference::isolate_address(isolate).address(), "isolate"); 73 Add(ExternalReference::isolate_address(isolate).address(), "isolate");
74 Add(ExternalReference::interpreter_dispatch_table_address(isolate).address(), 74 Add(ExternalReference::interpreter_dispatch_table_address(isolate).address(),
75 "Interpreter::dispatch_table_address"); 75 "Interpreter::dispatch_table_address");
76 Add(ExternalReference::interpreter_dispatch_counters(isolate).address(), 76 Add(ExternalReference::interpreter_dispatch_counters(isolate).address(),
77 "Interpreter::interpreter_dispatch_counters"); 77 "Interpreter::interpreter_dispatch_counters");
78 Add(ExternalReference::interpreter_advance_bytecode_offset(isolate).address(),
79 "Interpreter::AdvanceBytecodeOffset");
78 Add(ExternalReference::address_of_negative_infinity().address(), 80 Add(ExternalReference::address_of_negative_infinity().address(),
79 "LDoubleConstant::negative_infinity"); 81 "LDoubleConstant::negative_infinity");
80 Add(ExternalReference::power_double_double_function(isolate).address(), 82 Add(ExternalReference::power_double_double_function(isolate).address(),
81 "power_double_double_function"); 83 "power_double_double_function");
82 Add(ExternalReference::ieee754_acos_function(isolate).address(), 84 Add(ExternalReference::ieee754_acos_function(isolate).address(),
83 "base::ieee754::acos"); 85 "base::ieee754::acos");
84 Add(ExternalReference::ieee754_acosh_function(isolate).address(), 86 Add(ExternalReference::ieee754_acosh_function(isolate).address(),
85 "base::ieee754::acosh"); 87 "base::ieee754::acosh");
86 Add(ExternalReference::ieee754_asin_function(isolate).address(), 88 Add(ExternalReference::ieee754_asin_function(isolate).address(),
87 "base::ieee754::asin"); 89 "base::ieee754::asin");
(...skipping 352 matching lines...) Expand 10 before | Expand all | Expand 10 after
440 if (api_external_references != nullptr) { 442 if (api_external_references != nullptr) {
441 while (*api_external_references != 0) { 443 while (*api_external_references != 0) {
442 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>"); 444 Add(reinterpret_cast<Address>(*api_external_references), "<embedder>");
443 api_external_references++; 445 api_external_references++;
444 } 446 }
445 } 447 }
446 } 448 }
447 449
448 } // namespace internal 450 } // namespace internal
449 } // namespace v8 451 } // namespace v8
OLDNEW
« src/builtins/arm/builtins-arm.cc ('K') | « src/deoptimizer.cc ('k') | src/frames.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698