Searched defs:operand (Results 1 - 4 of 4) sorted by relevance

/arch/powerpc/xmon/
H A Dppc-dis.c61 const struct powerpc_operand *operand; local
82 operand = powerpc_operands + *opindex;
83 if (operand->extract)
84 (*operand->extract) (insn, dialect, &invalid);
101 operand = powerpc_operands + *opindex;
106 if ((operand->flags & PPC_OPERAND_FAKE) != 0)
110 if (operand->extract)
111 value = (*operand->extract) (insn, dialect, &invalid);
114 value = (insn >> operand->shift) & ((1 << operand
[all...]
/arch/x86/include/asm/
H A Dkvm_emulate.h39 u64 src_val; /* value of source operand */
40 u64 dst_val; /* value of destination operand */
41 u8 src_bytes; /* size of source operand */
42 u8 dst_bytes; /* size of destination operand */
59 * automatically deduces which operand of a string-move operation is accessing
60 * emulated memory, and assumes that the other operand accesses normal memory.
215 /* Type, address-of, and value of an instruction's operand. */
216 struct operand { struct
293 struct operand src;
294 struct operand src
[all...]
/arch/s390/kernel/
H A Ddis.c42 UNUSED, /* Indicates the end of the operand list */
1771 /* Extracts an operand value from an instruction. */
1773 const struct s390_operand *operand)
1779 /* Extract fragments of the operand byte for byte. */
1780 cp = code + operand->shift / 8;
1781 bits = (operand->shift & 7) + operand->bits;
1789 val &= ((1U << (operand->bits - 1)) << 1) - 1;
1792 if (operand->bits == 20 && operand
1772 extract_operand(unsigned char *code, const struct s390_operand *operand) argument
1937 const struct s390_operand *operand; local
[all...]
/arch/x86/kvm/
H A Dvmx.c1130 } operand = { vpid, 0, gva }; local
1135 : : "a"(&operand), "c"(ext) : "cc", "memory");
1142 } operand = {eptp, gpa}; local
1147 : : "a" (&operand), "c" (ext) : "cc", "memory");
5963 * Decode the memory-address operand of a vmx instruction, as recorded on an
5965 * On success, returns 0. When the operand is invalid, returns 1 and throws
5975 * addressing components of the operand. Only the displacement part
6698 } operand; local
6726 * operand is read even if it isn't needed (e.g., for type==global)
6731 if (kvm_read_guest_virt(&vcpu->arch.emulate_ctxt, gva, &operand,
[all...]

Completed in 99 milliseconds