Lines Matching defs:inst
87 enum instruction_fetch_type type, u32 *inst);
294 unsigned int inst, int *advance);
323 enum instruction_fetch_type type, u32 *inst)
341 *inst = fetched_inst;
353 * Cuts out inst bits with ordering according to spec.
356 static inline u32 kvmppc_get_field(u64 inst, int msb, int lsb)
364 r = (inst >> (63 - lsb)) & mask;
370 * Replaces inst bits with ordering according to spec.
372 static inline u32 kvmppc_set_field(u64 inst, int msb, int lsb, int value)
380 r = (inst & ~mask) | ((value << (63 - lsb)) & mask);