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

Side by Side Diff: src/interpreter/bytecode-array-accessor.cc

Issue 2523893003: Reland of [ignition/turbo] Perform liveness analysis on the bytecodes (Closed)
Patch Set: Export handler table for tests Created 4 years 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/interpreter/bytecode-array-accessor.h ('k') | src/interpreter/bytecode-generator.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright 2015 the V8 project authors. All rights reserved. 1 // Copyright 2015 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/interpreter/bytecode-array-accessor.h" 5 #include "src/interpreter/bytecode-array-accessor.h"
6 6
7 #include "src/interpreter/bytecode-decoder.h" 7 #include "src/interpreter/bytecode-decoder.h"
8 #include "src/interpreter/interpreter-intrinsics.h" 8 #include "src/interpreter/interpreter-intrinsics.h"
9 #include "src/objects-inl.h" 9 #include "src/objects-inl.h"
10 10
(...skipping 171 matching lines...) Expand 10 before | Expand all | Expand 10 after
182 return current_offset() + relative_offset + current_prefix_offset(); 182 return current_offset() + relative_offset + current_prefix_offset();
183 } else if (interpreter::Bytecodes::IsJumpConstant(bytecode)) { 183 } else if (interpreter::Bytecodes::IsJumpConstant(bytecode)) {
184 Smi* smi = Smi::cast(*GetConstantForIndexOperand(0)); 184 Smi* smi = Smi::cast(*GetConstantForIndexOperand(0));
185 return current_offset() + smi->value() + current_prefix_offset(); 185 return current_offset() + smi->value() + current_prefix_offset();
186 } else { 186 } else {
187 UNREACHABLE(); 187 UNREACHABLE();
188 return kMinInt; 188 return kMinInt;
189 } 189 }
190 } 190 }
191 191
192 std::ostream& BytecodeArrayAccessor::PrintTo(std::ostream& os) const {
193 return BytecodeDecoder::Decode(
194 os, bytecode_array()->GetFirstBytecodeAddress() + bytecode_offset_,
195 bytecode_array()->parameter_count());
196 }
197
192 } // namespace interpreter 198 } // namespace interpreter
193 } // namespace internal 199 } // namespace internal
194 } // namespace v8 200 } // namespace v8
OLDNEW
« no previous file with comments | « src/interpreter/bytecode-array-accessor.h ('k') | src/interpreter/bytecode-generator.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698