Home | History | Annotate | Download | only in s390

Lines Matching refs:current_address

2648 void MacroAssembler::InitializeNFieldsWithFiller(Register current_address,
2653 StoreP(filler, MemOperand(current_address));
2654 AddP(current_address, current_address, Operand(kPointerSize));
2658 void MacroAssembler::InitializeFieldsWithFiller(Register current_address,
2663 DCHECK(!current_address.is(r1));
2665 SubP(r1, end_address, current_address /*, LeaveOE, SetRC*/);
2668 InitializeNFieldsWithFiller(current_address, r1, filler);