Lines Matching refs:operand2
114 u64 operand2; in handle_set_prefix() local
124 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_set_prefix()
127 if (operand2 & 3) in handle_set_prefix()
131 rc = read_guest(vcpu, operand2, ar, &address, sizeof(address)); in handle_set_prefix()
152 u64 operand2; in handle_store_prefix() local
162 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_store_prefix()
165 if (operand2 & 3) in handle_store_prefix()
171 rc = write_guest(vcpu, operand2, ar, &address, sizeof(address)); in handle_store_prefix()
175 VCPU_EVENT(vcpu, 3, "STPX: storing prefix 0x%x into 0x%llx", address, operand2); in handle_store_prefix()
782 u64 operand2; in handle_stidp() local
791 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_stidp()
793 if (operand2 & 7) in handle_stidp()
796 rc = write_guest(vcpu, operand2, ar, &stidp_data, sizeof(stidp_data)); in handle_stidp()
848 u64 operand2; in handle_stsi() local
873 operand2 = kvm_s390_get_base_disp_s(vcpu, &ar); in handle_stsi()
875 if (operand2 & 0xfff) in handle_stsi()
897 rc = write_guest(vcpu, operand2, ar, (void *)mem, PAGE_SIZE); in handle_stsi()
903 insert_stsi_usr_data(vcpu, operand2, ar, fc, sel1, sel2); in handle_stsi()
906 trace_kvm_s390_handle_stsi(vcpu, fc, sel1, sel2, operand2); in handle_stsi()