HomeSort by relevance Sort by last modified time
    Searched refs:bytecode_iterator (Results 1 - 3 of 3) sorted by null

  /external/v8/src/runtime/
runtime-interpreter.cc 40 interpreter::BytecodeArrayIterator& bytecode_iterator, int offset) {
41 while (bytecode_iterator.current_offset() +
42 bytecode_iterator.current_bytecode_size() <=
44 bytecode_iterator.Advance();
46 DCHECK(bytecode_iterator.current_offset() == offset ||
47 ((bytecode_iterator.current_offset() + 1) == offset &&
48 bytecode_iterator.current_operand_scale() >
53 interpreter::BytecodeArrayIterator& bytecode_iterator,
65 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode();
77 bytecode_iterator.bytecode_array()->GetIsolate())
    [all...]
  /external/v8/src/compiler/
bytecode-graph-builder.cc 330 BailoutId loop_id(builder_->bytecode_iterator().current_offset());
584 BailoutId bailout_id(bytecode_iterator().current_offset());
588 bytecode_iterator().current_offset());
618 BailoutId bailout_id(bytecode_iterator().current_offset());
623 bytecode_iterator().current_offset());
686 Node* node = jsgraph()->Constant(bytecode_iterator().GetImmediateOperand(0));
692 jsgraph()->Constant(bytecode_iterator().GetConstantForIndexOperand(0));
723 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
729 environment()->BindRegister(bytecode_iterator().GetRegisterOperand(0), value);
734 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0))
    [all...]
bytecode-graph-builder.h 261 const interpreter::BytecodeArrayIterator& bytecode_iterator() const { function in class:v8::internal::compiler::BytecodeGraphBuilder
266 const interpreter::BytecodeArrayIterator* bytecode_iterator) {
267 bytecode_iterator_ = bytecode_iterator;

Completed in 72 milliseconds