Home | History | Annotate | Download | only in interpreter

Lines Matching refs:cell_index

666 // LdaModuleVariable <cell_index> <depth>
669 // identified by <cell_index>. <depth> is the depth of the current context
672 Node* cell_index = BytecodeOperandImmIntPtr(0);
679 Branch(IntPtrGreaterThan(cell_index, IntPtrConstant(0)), &if_export,
686 // The actual array index is (cell_index - 1).
687 Node* export_index = IntPtrSub(cell_index, IntPtrConstant(1));
697 // The actual array index is (-cell_index - 1).
698 Node* import_index = IntPtrSub(IntPtrConstant(-1), cell_index);
708 // StaModuleVariable <cell_index> <depth>
710 // Store accumulator to the module variable identified by <cell_index>.
714 Node* cell_index = BytecodeOperandImmIntPtr(0);
721 Branch(IntPtrGreaterThan(cell_index, IntPtrConstant(0)), &if_export,
728 // The actual array index is (cell_index - 1).
729 Node* export_index = IntPtrSub(cell_index, IntPtrConstant(1));