Lines Matching full:scratch
20 int accessor_index, int expected_arguments, Register scratch) {
30 DCHECK(!holder.is(scratch));
31 DCHECK(!receiver.is(scratch));
35 __ lw(scratch,
37 receiver = scratch;
60 int accessor_index, int expected_arguments, Register scratch) {
71 DCHECK(!holder.is(scratch));
72 DCHECK(!receiver.is(scratch));
73 DCHECK(!value().is(scratch));
77 __ lw(scratch,
79 receiver = scratch;
193 Register scratch, Label* miss) {
197 __ LoadWeakValue(scratch, weak_cell, miss);
198 __ lw(scratch, FieldMemOperand(scratch, PropertyCell::kValueOffset));
200 __ Branch(miss, ne, scratch, Operand(at));
359 Register scratch,
362 DCHECK(!map_reg.is(scratch));
365 __ lw(scratch, FieldMemOperand(map_reg, Map::kBitField3Offset));
366 __ And(at, scratch, Operand(Map::Deprecated::kMask));
375 Register scratch,
377 DCHECK(!map_reg.is(scratch));
379 DCHECK(!value_reg.is(scratch));
380 __ LoadInstanceDescriptors(map_reg, scratch);
381 __ lw(scratch,
382 FieldMemOperand(scratch, DescriptorArray::GetValueOffset(descriptor)));
383 __ Branch(miss_label, ne, value_reg, Operand(scratch));
391 Register scratch = scratch2();
393 DCHECK(!value_reg.is(scratch));
401 __ GetWeakValue(scratch, Map::WeakCellForMap(it.Current()));
404 __ Branch(miss_label, ne, map_reg, Operand(scratch));
407 __ Branch(&do_store, eq, map_reg, Operand(scratch));