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

Side by Side Diff: src/runtime/runtime-test.cc

Issue 2224923003: [interpreter] Add ability to preserve bytecode. (Closed) Base URL: https://chromium.googlesource.com/v8/v8.git@master
Patch Set: Disable flag. Created 4 years, 4 months 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
« no previous file with comments | « src/objects-inl.h ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2014 the V8 project authors. All rights reserved. 1 // Copyright 2014 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/runtime/runtime-utils.h" 5 #include "src/runtime/runtime-utils.h"
6 6
7 #include <memory> 7 #include <memory>
8 8
9 #include "src/arguments.h" 9 #include "src/arguments.h"
10 #include "src/deoptimizer.h" 10 #include "src/deoptimizer.h"
(...skipping 153 matching lines...) Expand 10 before | Expand all | Expand 10 after
164 // If function is interpreted but OSR hasn't been enabled, just return. 164 // If function is interpreted but OSR hasn't been enabled, just return.
165 if (function->shared()->HasBytecodeArray() && !FLAG_ignition_osr) { 165 if (function->shared()->HasBytecodeArray() && !FLAG_ignition_osr) {
166 return isolate->heap()->undefined_value(); 166 return isolate->heap()->undefined_value();
167 } 167 }
168 168
169 // If the function is already optimized, just return. 169 // If the function is already optimized, just return.
170 if (function->IsOptimized()) return isolate->heap()->undefined_value(); 170 if (function->IsOptimized()) return isolate->heap()->undefined_value();
171 171
172 // Make the profiler arm all back edges in unoptimized code. 172 // Make the profiler arm all back edges in unoptimized code.
173 if (function->shared()->HasBytecodeArray() || 173 if (function->shared()->HasBytecodeArray() ||
174 function->shared()->code()->kind() == Code::FUNCTION) { 174 function->shared()->HasBaselineCode()) {
175 isolate->runtime_profiler()->AttemptOnStackReplacement( 175 isolate->runtime_profiler()->AttemptOnStackReplacement(
176 *function, AbstractCode::kMaxLoopNestingMarker); 176 *function, AbstractCode::kMaxLoopNestingMarker);
177 } 177 }
178 178
179 return isolate->heap()->undefined_value(); 179 return isolate->heap()->undefined_value();
180 } 180 }
181 181
182 182
183 RUNTIME_FUNCTION(Runtime_NeverOptimizeFunction) { 183 RUNTIME_FUNCTION(Runtime_NeverOptimizeFunction) {
184 HandleScope scope(isolate); 184 HandleScope scope(isolate);
(...skipping 490 matching lines...) Expand 10 before | Expand all | Expand 10 after
675 WasmCompiledModuleSerializer::DeserializeWasmModule(isolate, &sc); 675 WasmCompiledModuleSerializer::DeserializeWasmModule(isolate, &sc);
676 Handle<FixedArray> compiled_module; 676 Handle<FixedArray> compiled_module;
677 if (!maybe_compiled_module.ToHandle(&compiled_module)) { 677 if (!maybe_compiled_module.ToHandle(&compiled_module)) {
678 return isolate->heap()->undefined_value(); 678 return isolate->heap()->undefined_value();
679 } 679 }
680 return *wasm::CreateCompiledModuleObject(isolate, compiled_module); 680 return *wasm::CreateCompiledModuleObject(isolate, compiled_module);
681 } 681 }
682 682
683 } // namespace internal 683 } // namespace internal
684 } // namespace v8 684 } // namespace v8
OLDNEW
« no previous file with comments | « src/objects-inl.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698