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 35 interpreter::BytecodeArrayIterator& bytecode_iterator, int offset) {
36 while (bytecode_iterator.current_offset() +
37 bytecode_iterator.current_bytecode_size() <=
39 bytecode_iterator.Advance();
41 DCHECK(bytecode_iterator.current_offset() == offset ||
42 ((bytecode_iterator.current_offset() + 1) == offset &&
43 bytecode_iterator.current_operand_scale() >
48 interpreter::BytecodeArrayIterator& bytecode_iterator,
60 interpreter::Bytecode bytecode = bytecode_iterator.current_bytecode();
72 bytecode_iterator.bytecode_array()->GetIsolate())
    [all...]
  /external/v8/src/compiler/
bytecode-graph-builder.cc 385 BailoutId loop_id(builder_->bytecode_iterator().current_offset());
603 BailoutId bailout_id(bytecode_iterator().current_offset());
618 BailoutId bailout_id(bytecode_iterator().current_offset());
692 Node* node = jsgraph()->Constant(bytecode_iterator().GetImmediateOperand(0));
698 jsgraph()->Constant(bytecode_iterator().GetConstantForIndexOperand(0));
729 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
735 environment()->BindRegister(bytecode_iterator().GetRegisterOperand(0), value);
740 environment()->LookupRegister(bytecode_iterator().GetRegisterOperand(0));
741 environment()->BindRegister(bytecode_iterator().GetRegisterOperand(1), value);
756 Node* node = BuildLoadGlobal(bytecode_iterator().GetIndexOperand(0)
    [all...]
bytecode-graph-builder.h 241 const interpreter::BytecodeArrayIterator& bytecode_iterator() const { function in class:v8::internal::compiler::BytecodeGraphBuilder
246 const interpreter::BytecodeArrayIterator* bytecode_iterator) {
247 bytecode_iterator_ = bytecode_iterator;

Completed in 4063 milliseconds