Lines Matching refs:operand2
69 u64 operand2; in handle_set_prefix() local
79 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_set_prefix()
82 if (operand2 & 3) in handle_set_prefix()
86 rc = read_guest(vcpu, operand2, ar, &address, sizeof(address)); in handle_set_prefix()
109 u64 operand2; in handle_store_prefix() local
119 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_store_prefix()
122 if (operand2 & 3) in handle_store_prefix()
128 rc = write_guest(vcpu, operand2, ar, &address, sizeof(address)); in handle_store_prefix()
453 u64 operand2; in handle_stidp() local
462 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_stidp()
464 if (operand2 & 7) in handle_stidp()
467 rc = write_guest(vcpu, operand2, ar, &stidp_data, sizeof(stidp_data)); in handle_stidp()
519 u64 operand2; in handle_stsi() local
544 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_stsi()
546 if (operand2 & 0xfff) in handle_stsi()
568 rc = write_guest(vcpu, operand2, ar, (void *)mem, PAGE_SIZE); in handle_stsi()
574 insert_stsi_usr_data(vcpu, operand2, ar, fc, sel1, sel2); in handle_stsi()
577 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2); in handle_stsi()