Lines Matching refs:index

215 TNode<IntPtrT> InterpreterAssembler::RegisterFrameOffset(TNode<IntPtrT> index) {
216 return TimesSystemPointerSize(index);
231 int index = reg.ToOperand() * kSystemPointerSize;
234 index += 4;
236 return ChangeInt32ToIntPtr(Load<Int32T>(base, IntPtrConstant(index)));
238 return SmiToIntPtr(CAST(LoadFullTagged(base, IntPtrConstant(index))));
269 const RegListNodePair& reg_list, int index) {
270 TNode<IntPtrT> location = RegisterLocationInRegisterList(reg_list, index);
275 const RegListNodePair& reg_list, int index) {
277 Uint32GreaterThan(reg_list.reg_count(), Int32Constant(index)));
278 TNode<IntPtrT> offset = RegisterFrameOffset(IntPtrConstant(index));
279 // Register indexes are negative, so subtract index from base location to get
355 // Register indexes are negative, so the next index is minus one.
608 TNode<IntPtrT> index =
610 return IntPtrToTaggedIndex(index);
662 TNode<Object> InterpreterAssembler::LoadConstantPoolEntry(TNode<WordT> index) {
666 UncheckedCast<IntPtrT>(index), 0);
670 TNode<WordT> index) {
671 return SmiUntag(CAST(LoadConstantPoolEntry(index)));
676 TNode<UintPtrT> index = BytecodeOperandConstantPoolIdx(operand_index);
677 return LoadConstantPoolEntry(index);
1461 TNode<IntPtrT> index = var_index.value();
1462 GotoIfNot(UintPtrLessThan(index, formal_parameter_count_intptr),
1465 TNode<IntPtrT> reg_index = IntPtrAdd(reg_base, index);
1468 StoreFixedArrayElement(array, index, value);
1470 var_index = IntPtrAdd(index, IntPtrConstant(1));
1478 // The mapping of register to array index must match that used in
1487 TNode<IntPtrT> index = var_index.value();
1488 GotoIfNot(UintPtrLessThan(index, register_count), &done_loop);
1491 IntPtrSub(IntPtrConstant(Register(0).ToOperand()), index);
1495 IntPtrAdd(formal_parameter_count_intptr, index);
1498 var_index = IntPtrAdd(index, IntPtrConstant(1));
1528 TNode<IntPtrT> index = var_index.value();
1529 GotoIfNot(UintPtrLessThan(index, register_count), &done_loop);
1532 IntPtrAdd(formal_parameter_count_intptr, index);
1536 IntPtrSub(IntPtrConstant(Register(0).ToOperand()), index);
1541 var_index = IntPtrAdd(index, IntPtrConstant(1));