Home | History | Annotate | Download | only in interpreter

Lines Matching defs:cell_index

986 // LdaModuleVariable <cell_index> <depth>
989 // identified by <cell_index>. <depth> is the depth of the current context
992 Node* cell_index = __ BytecodeOperandImmIntPtr(0);
1000 __ Branch(__ IntPtrGreaterThan(cell_index, __ IntPtrConstant(0)), &if_export,
1007 // The actual array index is (cell_index - 1).
1008 Node* export_index = __ IntPtrSub(cell_index, __ IntPtrConstant(1));
1018 // The actual array index is (-cell_index - 1).
1019 Node* import_index = __ IntPtrSub(__ IntPtrConstant(-1), cell_index);
1029 // StaModuleVariable <cell_index> <depth>
1031 // Store accumulator to the module variable identified by <cell_index>.
1035 Node* cell_index = __ BytecodeOperandImmIntPtr(0);
1043 __ Branch(__ IntPtrGreaterThan(cell_index, __ IntPtrConstant(0)), &if_export,
1050 // The actual array index is (cell_index - 1).
1051 Node* export_index = __ IntPtrSub(cell_index, __ IntPtrConstant(1));