Lines Matching defs:opcode
227 emit(enum opcode opcode) const
229 return emit(instruction(opcode));
236 emit(enum opcode opcode, const dst_reg &dst) const
238 return emit(instruction(opcode, dst));
245 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0) const
247 switch (opcode) {
256 emit(instruction(opcode, dst,
260 return emit(instruction(opcode, dst, src0));
268 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0,
271 switch (opcode) {
276 emit(instruction(opcode, dst,
281 return emit(instruction(opcode, dst, src0, src1));
289 emit(enum opcode opcode, const dst_reg &dst, const src_reg &src0,
292 switch (opcode) {
297 return emit(instruction(opcode, dst,
303 return emit(instruction(opcode, dst, src0, src1, src2));