Lines Matching defs:length
113 // Load the {feedback} array length.
114 TNode<IntPtrT> length = LoadAndUntagWeakFixedArrayLength(feedback);
115 CSA_DCHECK(this, IntPtrLessThanOrEqual(IntPtrConstant(kEntrySize), length));
120 TVARIABLE(IntPtrT, var_index, IntPtrSub(length, IntPtrConstant(kEntrySize)));
594 TNode<UintPtrT> length =
596 GotoIf(UintPtrGreaterThanOrEqual(index, length), &if_oob_string);
2443 TNode<UintPtrT> length =
2445 Branch(UintPtrLessThan(intptr_index, length), &length_check_ok,
2483 TNode<UintPtrT> length = LoadJSTypedArrayLength(CAST(object));
2484 GotoIfNot(UintPtrLessThan(intptr_index, length), out_of_bounds);
2674 TNode<IntPtrT> length = LoadStringLengthAsWord(CAST(lookup_start_object));
2675 GotoIfNot(UintPtrLessThan(index, length), slow);
4867 TNode<IntPtrT> length = LoadPropertyArrayLength(source_property_array);
4868 GotoIf(IntPtrEqual(length, IntPtrConstant(0)), &allocate_object);
4870 TNode<PropertyArray> property_array = AllocatePropertyArray(length);
4871 FillPropertyArrayWithUndefined(property_array, IntPtrConstant(0), length);
4872 CopyPropertyArrayValues(source_property_array, property_array, length,