Lines Matching refs:index

701 // StaInArrayLiteral <array> <index> <slot>
704 // the key <index> with the value in the accumulator.
707 TNode<Object> index = LoadRegisterAtOperandIndex(1);
714 CallBuiltin(Builtin::kStoreInArrayLiteralIC, context, array, index, value,
782 // The actual array index is (cell_index - 1).
794 // The actual array index is (-cell_index - 1).
827 // The actual array index is (cell_index - 1).
2255 // Creates a regular expression literal for literal index <literal_idx> with
2276 // Creates an array literal for literal index <literal_idx> with
2319 // Creates an empty JSArray literal for literal index <literal_idx>.
2365 // Creates an object literal for literal index <literal_idx> with
2464 // CreateClosure <index> <slot> <flags>
2466 // Creates a new closure for SharedFunctionInfo at position |index| in the
2517 // CreateBlockContext <index>
2519 // Creates a new block context with the scope info constant at |index|.
2882 // ForInNext <receiver> <index> <cache_info_pair>
2887 TNode<Smi> index = CAST(LoadRegisterAtOperandIndex(1));
2895 TNode<Object> key = LoadFixedArrayElement(CAST(cache_array), index, 0);
2917 // ForInContinue <index> <cache_length>
2921 TNode<Object> index = LoadRegisterAtOperandIndex(0);
2924 // Check if {index} is at {cache_length} already.
2926 Branch(TaggedEqual(index, cache_length), &if_true, &if_false);
2941 // ForInStep <index>
2943 // Increments the loop counter in register |index| and stores the result
2946 TNode<Smi> index = CAST(LoadRegisterAtOperandIndex(0));
2948 TNode<Smi> result = SmiAdd(index, one);