Symbol: inst
sbin/ifconfig/media.c
174
int type, subtype, inst;
sbin/ifconfig/media.c
193
inst = IFM_INST(media_current);
sbin/ifconfig/media.c
205
media_current = IFM_MAKEWORD(type, subtype, 0, inst);
sbin/ifconfig/media.c
275
int64_t inst;
sbin/ifconfig/media.c
280
rc = prop_dictionary_get_int64(env, "mediainst", &inst);
sbin/ifconfig/media.c
290
media_current = IFM_MAKEWORD(type, subtype, options, inst);
sbin/ifconfig/media.c
299
int type, subtype, options, inst, mode;
sbin/ifconfig/media.c
311
inst = IFM_INST(media_current);
sbin/ifconfig/media.c
323
media_current = IFM_MAKEWORD(type, subtype, options, inst) | mode;
sys/arch/aarch64/aarch64/db_interface.c
287
db_branch_taken(db_expr_t inst, db_addr_t pc, db_regs_t *regs)
sys/arch/aarch64/aarch64/db_interface.c
289
LE32TOH(inst);
sys/arch/aarch64/aarch64/db_interface.c
296
if ((inst & 0xfffffc1f) == 0xd65f0000 || /* ret xN */
sys/arch/aarch64/aarch64/db_interface.c
297
(inst & 0xfffffc1f) == 0xd63f0000 || /* blr xN */
sys/arch/aarch64/aarch64/db_interface.c
298
(inst & 0xfffffc1f) == 0xd61f0000) { /* br xN */
sys/arch/aarch64/aarch64/db_interface.c
299
return db_fetch_reg(INSN_FMT_RN(inst), regs, false);
sys/arch/aarch64/aarch64/db_interface.c
302
if ((inst & 0xfc000000) == 0x94000000 || /* bl imm */
sys/arch/aarch64/aarch64/db_interface.c
303
(inst & 0xfc000000) == 0x14000000) { /* b imm */
sys/arch/aarch64/aarch64/db_interface.c
304
return SignExtend(26, INSN_FMT_IMM26(inst), 4) + pc;
sys/arch/aarch64/aarch64/db_interface.c
307
if ((inst & 0xff000010) == 0x54000000 || /* b.cond */
sys/arch/aarch64/aarch64/db_interface.c
308
(inst & 0x7f000000) == 0x35000000 || /* cbnz */
sys/arch/aarch64/aarch64/db_interface.c
309
(inst & 0x7f000000) == 0x34000000) { /* cbz */
sys/arch/aarch64/aarch64/db_interface.c
310
return SignExtend(19, INSN_FMT_IMM19(inst), 4) + pc;
sys/arch/aarch64/aarch64/db_interface.c
313
if ((inst & 0x7f000000) == 0x37000000 || /* tbnz */
sys/arch/aarch64/aarch64/db_interface.c
314
(inst & 0x7f000000) == 0x36000000) { /* tbz */
sys/arch/aarch64/aarch64/db_interface.c
315
return SignExtend(14, INSN_FMT_IMM14(inst), 4) + pc;
sys/arch/aarch64/aarch64/db_interface.c
322
db_inst_unconditional_flow_transfer(db_expr_t inst)
sys/arch/aarch64/aarch64/db_interface.c
324
LE32TOH(inst);
sys/arch/aarch64/aarch64/db_interface.c
326
if ((inst & 0xfffffc1f) == 0xd65f0000 || /* ret xN */
sys/arch/aarch64/aarch64/db_interface.c
327
(inst & 0xfc000000) == 0x94000000 || /* bl */
sys/arch/aarch64/aarch64/db_interface.c
328
(inst & 0xfffffc1f) == 0xd63f0000 || /* blr */
sys/arch/aarch64/aarch64/db_interface.c
329
(inst & 0xfc000000) == 0x14000000 || /* b imm */
sys/arch/aarch64/aarch64/db_interface.c
330
(inst & 0xfffffc1f) == 0xd61f0000) /* br */
sys/arch/aarch64/aarch64/db_interface.c
336
if ((inst & 0xff000010) == 0x54000000 && /* b.cond */
sys/arch/aarch64/aarch64/db_interface.c
337
INSN_FMT_COND(inst) == CONDITION_AL) /* always? */
sys/arch/alpha/alpha/fp_complete.c
178
alpha_instruction inst;
sys/arch/alpha/alpha/fp_complete.c
181
inst.bits = bits;
sys/arch/alpha/alpha/fp_complete.c
184
alpha_shadow.uop |= 1UL << inst.generic_format.opcode;
sys/arch/alpha/alpha/fp_complete.c
270
alpha_instruction inst;
sys/arch/alpha/alpha/fp_complete.c
272
inst.bits = inst_bits;
sys/arch/alpha/alpha/fp_complete.c
280
switch(inst.float_format.function) {
sys/arch/alpha/alpha/fp_complete.c
283
sts(inst.float_detail.fb, &sfb, l);
sys/arch/alpha/alpha/fp_complete.c
285
ldt(inst.float_detail.fc, &tfc, l);
sys/arch/alpha/alpha/fp_complete.c
288
if(inst.float_detail.src == 2) {
sys/arch/alpha/alpha/fp_complete.c
289
stt(inst.float_detail.fb, &tfb, l);
sys/arch/alpha/alpha/fp_complete.c
291
lds(inst.float_detail.fc, &sfc, l);
sys/arch/alpha/alpha/fp_complete.c
297
this_cannot_happen(5, inst.generic_format.opcode);
sys/arch/alpha/alpha/fp_complete.c
299
ldt(inst.float_detail.fc, &tfc, l);
sys/arch/alpha/alpha/fp_complete.c
307
alpha_instruction inst;
sys/arch/alpha/alpha/fp_complete.c
309
inst.bits = inst_bits;
sys/arch/alpha/alpha/fp_complete.c
310
stt(inst.float_detail.fb, &tfb, l);
sys/arch/alpha/alpha/fp_complete.c
314
ldt(inst.float_detail.fc, &tfc, l);
sys/arch/alpha/alpha/fp_complete.c
321
alpha_instruction inst;
sys/arch/alpha/alpha/fp_complete.c
323
inst.bits = inst_bits;
sys/arch/alpha/alpha/fp_complete.c
324
switch(inst.float_detail.src) {
sys/arch/alpha/alpha/fp_complete.c
326
this_cannot_happen(3, inst.bits);
sys/arch/alpha/alpha/fp_complete.c
334
this_cannot_happen(4, inst.bits);
sys/arch/alpha/alpha/fp_complete.c
338
stt(inst.float_detail.fb, &tfb, l);
sys/arch/alpha/alpha/fp_complete.c
342
alpha_ldt(inst.float_detail.fc, &tfc);
sys/arch/alpha/alpha/fp_complete.c
354
alpha_instruction inst;
sys/arch/alpha/alpha/fp_complete.c
356
inst.bits = inst_bits;
sys/arch/alpha/alpha/fp_complete.c
357
stt(inst.float_detail.fb, &tfb, l);
sys/arch/alpha/alpha/fp_complete.c
359
alpha_ldt(inst.float_detail.fc, &tfc); /* yes, ldt */
sys/arch/alpha/alpha/fp_complete.c
561
alpha_instruction inst;
sys/arch/alpha/alpha/fp_complete.c
567
inst.bits = bits;
sys/arch/alpha/alpha/fp_complete.c
568
switch(inst.generic_format.opcode) {
sys/arch/alpha/alpha/fp_complete.c
572
this_cannot_happen(2, inst.bits);
sys/arch/alpha/alpha/fp_complete.c
575
if (inst.float_format.function == op_cvtql_sv ||
sys/arch/alpha/alpha/fp_complete.c
576
inst.float_format.function == op_cvtql_v) {
sys/arch/alpha/alpha/fp_complete.c
577
alpha_stt(inst.float_detail.fb, &tfb);
sys/arch/alpha/alpha/fp_complete.c
579
alpha_lds(inst.float_detail.fc, &sfc);
sys/arch/alpha/alpha/fp_complete.c
583
this_cannot_happen(3, inst.bits);
sys/arch/alpha/alpha/fp_complete.c
591
switch(inst.float_detail.src) {
sys/arch/alpha/alpha/fp_complete.c
593
sts(inst.float_detail.fb, &sfb, l);
sys/arch/alpha/alpha/fp_complete.c
594
if (inst.float_detail.opclass == 11)
sys/arch/alpha/alpha/fp_complete.c
596
else if (inst.float_detail.opclass & ~3) {
sys/arch/alpha/alpha/fp_complete.c
597
this_cannot_happen(1, inst.bits);
sys/arch/alpha/alpha/fp_complete.c
600
sts(inst.float_detail.fa, &sfa, l);
sys/arch/alpha/alpha/fp_complete.c
601
sfc.i = (*swfp_s[inst.float_detail.opclass])(
sys/arch/alpha/alpha/fp_complete.c
604
lds(inst.float_detail.fc, &sfc, l);
sys/arch/alpha/alpha/fp_complete.c
608
if (inst.float_detail.opclass >= 12)
sys/arch/alpha/alpha/fp_complete.c
609
(*swfp_cvt[inst.float_detail.opclass - 12])(
sys/arch/alpha/alpha/fp_complete.c
610
inst.bits, l);
sys/arch/alpha/alpha/fp_complete.c
612
stt(inst.float_detail.fb, &tfb, l);
sys/arch/alpha/alpha/fp_complete.c
613
if (inst.float_detail.opclass == 11)
sys/arch/alpha/alpha/fp_complete.c
616
stt(inst.float_detail.fa, &tfa, l);
sys/arch/alpha/alpha/fp_complete.c
617
tfc.i = (*swfp_t[inst.float_detail
sys/arch/alpha/alpha/fp_complete.c
620
ldt(inst.float_detail.fc, &tfc, l);
sys/arch/alpha/alpha/fp_complete.c
634
alpha_instruction inst;
sys/arch/alpha/alpha/fp_complete.c
638
if (__predict_false(ufetch_32((void *)trigger_pc, &inst.bits))) {
sys/arch/alpha/alpha/fp_complete.c
659
rm = inst.float_detail.rnd;
sys/arch/alpha/alpha/fp_complete.c
667
alpha_fp_interpret(trigger_pc, l, inst.bits);
sys/arch/alpha/alpha/fp_complete.c
689
alpha_instruction inst;
sys/arch/alpha/alpha/fp_complete.c
755
inst = tsw[pc - win_begin];
sys/arch/alpha/alpha/fp_complete.c
756
op_class = 1UL << inst.generic_format.opcode;
sys/arch/alpha/alpha/fp_complete.c
758
a1 &= ~(1UL << (inst.operate_generic_format.rc + 32));
sys/arch/alpha/alpha/fp_complete.c
761
a1 &= ~(1UL << inst.operate_generic_format.rc);
sys/arch/alpha/alpha/fp_complete.c
765
if (inst.mem_format.displacement == op_trapb ||
sys/arch/alpha/alpha/fp_complete.c
766
inst.mem_format.displacement == op_excb)
sys/arch/alpha/alpha/trap.c
1020
if (inst->float_format.opcode == op_intmisc) {
sys/arch/alpha/alpha/trap.c
1021
regptr = irp(l, inst->float_format.fc);
sys/arch/alpha/alpha/trap.c
1022
switch (inst->float_format.function) {
sys/arch/alpha/alpha/trap.c
1025
alpha_stt(inst->float_format.fa, &fmem.t);
sys/arch/alpha/alpha/trap.c
1033
alpha_sts(inst->float_format.fa, &fmem.s);
sys/arch/alpha/alpha/trap.c
1041
inst->float_format.function);
sys/arch/alpha/alpha/trap.c
1043
} else if (inst->float_format.opcode == op_fix_float) {
sys/arch/alpha/alpha/trap.c
1044
regptr = irp(l, inst->float_format.fa);
sys/arch/alpha/alpha/trap.c
1047
switch (inst->float_format.function) {
sys/arch/alpha/alpha/trap.c
1051
alpha_lds(inst->float_format.fc, &fmem.s);
sys/arch/alpha/alpha/trap.c
1071
alpha_ldt(inst->float_format.fc, &fmem.t);
sys/arch/alpha/alpha/trap.c
1076
inst->float_format.function);
sys/arch/alpha/alpha/trap.c
1080
inst->float_format.opcode);
sys/arch/alpha/alpha/trap.c
1133
alpha_instruction inst;
sys/arch/alpha/alpha/trap.c
1146
if (ufetch_int((void *)inst_pc, &inst.bits) != 0) {
sys/arch/alpha/alpha/trap.c
1155
switch (inst.generic_format.opcode) {
sys/arch/alpha/alpha/trap.c
1160
regptr = irp(l, inst.mem_format.rb);
sys/arch/alpha/alpha/trap.c
1165
memaddr += inst.mem_format.displacement;
sys/arch/alpha/alpha/trap.c
1167
regptr = irp(l, inst.mem_format.ra);
sys/arch/alpha/alpha/trap.c
1169
if (inst.mem_format.opcode == op_ldwu ||
sys/arch/alpha/alpha/trap.c
1170
inst.mem_format.opcode == op_stw) {
sys/arch/alpha/alpha/trap.c
1172
if (inst.mem_format.opcode == op_ldwu) {
sys/arch/alpha/alpha/trap.c
1178
inst.mem_format.opcode,
sys/arch/alpha/alpha/trap.c
1179
inst.mem_format.ra, l);
sys/arch/alpha/alpha/trap.c
1193
if (inst.mem_format.opcode == op_ldbu) {
sys/arch/alpha/alpha/trap.c
1201
} else if (inst.mem_format.opcode == op_ldwu) {
sys/arch/alpha/alpha/trap.c
1209
} else if (inst.mem_format.opcode == op_stw) {
sys/arch/alpha/alpha/trap.c
1216
} else if (inst.mem_format.opcode == op_stb) {
sys/arch/alpha/alpha/trap.c
1227
if (inst.operate_generic_format.function == op_sextb &&
sys/arch/alpha/alpha/trap.c
1228
inst.operate_generic_format.ra == 31) {
sys/arch/alpha/alpha/trap.c
1232
if (inst.operate_generic_format.is_lit) {
sys/arch/alpha/alpha/trap.c
1233
b = inst.operate_lit_format.literal;
sys/arch/alpha/alpha/trap.c
1235
if (inst.operate_reg_format.sbz != 0)
sys/arch/alpha/alpha/trap.c
1237
regptr = irp(l, inst.operate_reg_format.rb);
sys/arch/alpha/alpha/trap.c
1241
regptr = irp(l, inst.operate_generic_format.rc);
sys/arch/alpha/alpha/trap.c
1246
if (inst.operate_generic_format.function == op_sextw &&
sys/arch/alpha/alpha/trap.c
1247
inst.operate_generic_format.ra == 31) {
sys/arch/alpha/alpha/trap.c
1251
if (inst.operate_generic_format.is_lit) {
sys/arch/alpha/alpha/trap.c
1252
w = inst.operate_lit_format.literal;
sys/arch/alpha/alpha/trap.c
1254
if (inst.operate_reg_format.sbz != 0)
sys/arch/alpha/alpha/trap.c
1256
regptr = irp(l, inst.operate_reg_format.rb);
sys/arch/alpha/alpha/trap.c
1260
regptr = irp(l, inst.operate_generic_format.rc);
sys/arch/alpha/alpha/trap.c
1265
if (inst.operate_reg_format.function == op_ctpop &&
sys/arch/alpha/alpha/trap.c
1266
inst.operate_reg_format.zero == 0 &&
sys/arch/alpha/alpha/trap.c
1267
inst.operate_reg_format.sbz == 0 &&
sys/arch/alpha/alpha/trap.c
1268
inst.operate_reg_format.ra == 31) {
sys/arch/alpha/alpha/trap.c
1273
regptr = irp(l, inst.operate_reg_format.rb);
sys/arch/alpha/alpha/trap.c
1276
regptr = irp(l, inst.operate_reg_format.rc);
sys/arch/alpha/alpha/trap.c
1282
if (inst.operate_reg_format.function == op_ctlz &&
sys/arch/alpha/alpha/trap.c
1283
inst.operate_reg_format.zero == 0 &&
sys/arch/alpha/alpha/trap.c
1284
inst.operate_reg_format.sbz == 0 &&
sys/arch/alpha/alpha/trap.c
1285
inst.operate_reg_format.ra == 31) {
sys/arch/alpha/alpha/trap.c
1290
regptr = irp(l, inst.operate_reg_format.rb);
sys/arch/alpha/alpha/trap.c
1294
regptr = irp(l, inst.operate_reg_format.rc);
sys/arch/alpha/alpha/trap.c
1300
if (inst.operate_reg_format.function == op_cttz &&
sys/arch/alpha/alpha/trap.c
1301
inst.operate_reg_format.zero == 0 &&
sys/arch/alpha/alpha/trap.c
1302
inst.operate_reg_format.sbz == 0 &&
sys/arch/alpha/alpha/trap.c
1303
inst.operate_reg_format.ra == 31) {
sys/arch/alpha/alpha/trap.c
1308
regptr = irp(l, inst.operate_reg_format.rb);
sys/arch/alpha/alpha/trap.c
1312
regptr = irp(l, inst.operate_reg_format.rc);
sys/arch/alpha/alpha/trap.c
1326
if ((inst.float_format.function == op_ftoit ||
sys/arch/alpha/alpha/trap.c
1327
inst.float_format.function == op_ftois) &&
sys/arch/alpha/alpha/trap.c
1328
inst.float_format.fb == 31) {
sys/arch/alpha/alpha/trap.c
1333
emul_fix(l, &inst);
sys/arch/alpha/alpha/trap.c
1340
if ((inst.float_format.function == op_itofs ||
sys/arch/alpha/alpha/trap.c
1343
inst.float_format.function == op_itoft) &&
sys/arch/alpha/alpha/trap.c
1344
inst.float_format.fb == 31) {
sys/arch/alpha/alpha/trap.c
1349
emul_fix(l, &inst);
sys/arch/alpha/alpha/trap.c
1360
if (inst.float_detail.opclass == 11 /* IEEE SQRT */ &&
sys/arch/alpha/alpha/trap.c
1361
inst.float_detail.fa == 31 /* Fa must be $f31 */ &&
sys/arch/alpha/alpha/trap.c
1362
(inst.float_detail.src == 0 /* SQRTS (S_float) */ ||
sys/arch/alpha/alpha/trap.c
1363
inst.float_detail.src == 2 /* SQRTT (T_float) */)) {
sys/arch/alpha/alpha/trap.c
1364
if (inst.float_detail.src == 0) {
sys/arch/alpha/alpha/trap.c
995
emul_fix(struct lwp *l, const alpha_instruction *inst)
sys/arch/alpha/include/db_machdep.h
56
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/alpha/include/db_machdep.h
70
bool db_inst_trap_return(int inst);
sys/arch/alpha/include/db_machdep.h
71
bool db_inst_return(int inst);
sys/arch/alpha/include/db_machdep.h
72
bool db_inst_call(int inst);
sys/arch/alpha/include/db_machdep.h
73
bool db_inst_branch(int inst);
sys/arch/alpha/include/db_machdep.h
74
bool db_inst_load(int inst);
sys/arch/alpha/include/db_machdep.h
75
bool db_inst_store(int inst);
sys/arch/alpha/include/db_machdep.h
76
bool db_inst_unconditional_flow_transfer(int inst);
sys/arch/alpha/include/db_machdep.h
77
db_addr_t db_branch_taken(int inst, db_addr_t pc, db_regs_t *regs);
sys/arch/amd64/amd64/db_disasm.c
1084
db_disasm_esc(db_addr_t loc, int inst, u_int rex, int short_addr, int size,
sys/arch/amd64/amd64/db_disasm.c
1094
fp = &db_Esc_inst[inst - 0xd8][f_reg(rex, regmodrm)];
sys/arch/amd64/amd64/db_disasm.c
1177
int inst;
sys/arch/amd64/amd64/db_disasm.c
1181
const struct inst *ip;
sys/arch/amd64/amd64/db_disasm.c
1196
get_value_inc(inst, loc, 1, false);
sys/arch/amd64/amd64/db_disasm.c
1206
switch (inst) {
sys/arch/amd64/amd64/db_disasm.c
1244
if (inst >= 0x40 && inst <= 0x4f) {
sys/arch/amd64/amd64/db_disasm.c
1245
rex = inst;
sys/arch/amd64/amd64/db_disasm.c
1249
get_value_inc(inst, loc, 1, false);
sys/arch/amd64/amd64/db_disasm.c
1259
if (inst >= 0xd8 && inst <= 0xdf) {
sys/arch/amd64/amd64/db_disasm.c
1260
loc = db_disasm_esc(loc, inst, rex, short_addr, size, seg);
sys/arch/amd64/amd64/db_disasm.c
1265
if (inst == 0x0f) {
sys/arch/amd64/amd64/db_disasm.c
1266
get_value_inc(inst, loc, 1, false);
sys/arch/amd64/amd64/db_disasm.c
1267
ip = db_inst_0f[inst>>4];
sys/arch/amd64/amd64/db_disasm.c
1271
ip = &ip[inst&0xf];
sys/arch/amd64/amd64/db_disasm.c
1273
ip = &db_inst_table[inst];
sys/arch/amd64/amd64/db_disasm.c
1310
ip = (const struct inst *)ip->i_extra;
sys/arch/amd64/amd64/db_disasm.c
1316
ip = (const struct inst *)ip->i_extra;
sys/arch/amd64/amd64/db_disasm.c
1397
db_printf("%s", db_reg[0][size][f_rm(rex, inst)]);
sys/arch/amd64/amd64/db_disasm.c
1404
db_printf("%s", db_seg_reg[f_reg(rex, inst)]);
sys/arch/amd64/amd64/db_disasm.c
184
const struct inst db_Grp9b[] = {
sys/arch/amd64/amd64/db_disasm.c
195
const struct inst db_inst_0f0x[] = {
sys/arch/amd64/amd64/db_disasm.c
215
const struct inst db_inst_0f1x[] = {
sys/arch/amd64/amd64/db_disasm.c
235
const struct inst db_inst_0f2x[] = {
sys/arch/amd64/amd64/db_disasm.c
255
const struct inst db_inst_0f3x[] = {
sys/arch/amd64/amd64/db_disasm.c
275
const struct inst db_inst_0f4x[] = {
sys/arch/amd64/amd64/db_disasm.c
294
const struct inst db_inst_0f8x[] = {
sys/arch/amd64/amd64/db_disasm.c
314
const struct inst db_inst_0f9x[] = {
sys/arch/amd64/amd64/db_disasm.c
334
const struct inst db_inst_0fax[] = {
sys/arch/amd64/amd64/db_disasm.c
354
const struct inst db_inst_0fbx[] = {
sys/arch/amd64/amd64/db_disasm.c
374
const struct inst db_inst_0fcx[] = {
sys/arch/amd64/amd64/db_disasm.c
394
const struct inst * const db_inst_0f[] = {
sys/arch/amd64/amd64/db_disasm.c
564
const struct inst db_Grp3[] = {
sys/arch/amd64/amd64/db_disasm.c
575
const struct inst db_Grp4[] = {
sys/arch/amd64/amd64/db_disasm.c
586
const struct inst db_Grp5[] = {
sys/arch/amd64/amd64/db_disasm.c
597
const struct inst db_inst_table[256] = {
sys/arch/amd64/amd64/db_disasm.c
892
const struct inst db_bad_inst =
sys/arch/amd64/include/db_machdep.h
70
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/amiga/amiga/cc.c
276
find_copper_inst(cop_t *l, u_short inst)
sys/arch/amiga/amiga/cc.c
280
if (l->cp.inst.opcode == inst) {
sys/arch/amiga/amiga/cc.h
123
} inst;
sys/arch/amiga/dev/grfabs_cc.c
1000
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1154
tmp->cp.inst.operand = 0x0020;
sys/arch/amiga/dev/grfabs_cc.c
1157
tmp->cp.inst.operand = 0;
sys/arch/amiga/dev/grfabs_cc.c
1160
tmp->cp.inst.operand = hl_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
1162
tmp->cp.inst.operand = CALC_DIWHIGH(hstart, vstart, hstop, vstop);
sys/arch/amiga/dev/grfabs_cc.c
1165
tmp->cp.inst.operand = hl_this_data->bplcon0 | ((depth & 0x7) << 12);
sys/arch/amiga/dev/grfabs_cc.c
1167
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
1169
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
1171
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
1173
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
1175
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
1180
tmp[j].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1182
tmp[j + 1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1188
tmp[0].cp.inst.operand = v->bitmap->bytes_per_row + v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
1189
tmp[1].cp.inst.operand = v->bitmap->bytes_per_row + v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
1193
tmp[0].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1195
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1208
tmp[j].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1210
tmp[j + 1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1216
tmp[0].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1218
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1384
tmp->cp.inst.operand = 0x0020;
sys/arch/amiga/dev/grfabs_cc.c
1387
tmp->cp.inst.operand = 0;
sys/arch/amiga/dev/grfabs_cc.c
1390
tmp->cp.inst.operand = hdl_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
1392
tmp->cp.inst.operand = CALC_DIWHIGH(hstart, vstart, hstop, vstop);
sys/arch/amiga/dev/grfabs_cc.c
1395
tmp->cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1398
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
1400
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
1402
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
1404
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
1406
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
1413
tmp[0].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1415
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1417
tmp[2].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1419
tmp[3].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1422
tmp[4].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1424
tmp[5].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1426
tmp[6].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1428
tmp[7].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1433
tmp[0].cp.inst.operand = mod2l + mod1l;
sys/arch/amiga/dev/grfabs_cc.c
1434
tmp[1].cp.inst.operand = mod2l + mod1l;
sys/arch/amiga/dev/grfabs_cc.c
1439
tmp[0].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1441
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1452
tmp[0].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1454
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1456
tmp[2].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1458
tmp[3].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1461
tmp[4].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1463
tmp[5].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1465
tmp[6].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1467
tmp[7].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1472
tmp[0].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1474
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
1553
cp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(hedley_init));
sys/arch/amiga/dev/grfabs_cc.c
1554
cp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(hedley_init));
sys/arch/amiga/dev/grfabs_cc.c
1597
tmp->cp.inst.operand = a24_this_data->bplcon0 |
sys/arch/amiga/dev/grfabs_cc.c
1958
tmp->cp.inst.operand = 0x0ca1 | (i << 13);
sys/arch/amiga/dev/grfabs_cc.c
1962
tmp->cp.inst.operand = 0x0ea1 | (i << 13);
sys/arch/amiga/dev/grfabs_cc.c
1967
tmp->cp.inst.operand = 0x0ca1;
sys/arch/amiga/dev/grfabs_cc.c
1969
tmp->cp.inst.operand = 0x8003;
sys/arch/amiga/dev/grfabs_cc.c
1971
tmp->cp.inst.operand = AGA_htotal; /* 81/71/73/79? */
sys/arch/amiga/dev/grfabs_cc.c
1973
tmp->cp.inst.operand = AGA_hbstrt; /* 0x0008 */
sys/arch/amiga/dev/grfabs_cc.c
1975
tmp->cp.inst.operand = AGA_hsstrt; /* 0x000e */
sys/arch/amiga/dev/grfabs_cc.c
1977
tmp->cp.inst.operand = AGA_hsstop; /* 0x001c */
sys/arch/amiga/dev/grfabs_cc.c
1979
tmp->cp.inst.operand = AGA_hsstop; /* 0x001e */
sys/arch/amiga/dev/grfabs_cc.c
1981
tmp->cp.inst.operand = AGA_hcenter; /*AGA_htotal / 2 + AGA_hsstrt */
sys/arch/amiga/dev/grfabs_cc.c
1983
tmp->cp.inst.operand = AGA_vbstrt; /* 0x0000 */
sys/arch/amiga/dev/grfabs_cc.c
1985
tmp->cp.inst.operand = AGA_vsstrt; /* 0x016b / AGA_htotal */
sys/arch/amiga/dev/grfabs_cc.c
1987
tmp->cp.inst.operand = AGA_vsstop; /* 0x02d6 / AGA_htotal */
sys/arch/amiga/dev/grfabs_cc.c
1989
tmp->cp.inst.operand = AGA_vbstop; /* 0x0bd1 / AGA_htotal */
sys/arch/amiga/dev/grfabs_cc.c
1991
tmp->cp.inst.operand = AGA_vtotal;
sys/arch/amiga/dev/grfabs_cc.c
1993
tmp->cp.inst.operand = aga_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
1996
printf(" beamcon0 %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
1999
tmp->cp.inst.operand = CALC_DIWHIGH(hstart, vstart, hstop, vstop);
sys/arch/amiga/dev/grfabs_cc.c
2002
printf(" diwhigh %04x>", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
2005
tmp->cp.inst.operand = (vstop & 0x0700) | ((hstop & 0x0100) << 5);
sys/arch/amiga/dev/grfabs_cc.c
2009
printf("%04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
2012
tmp->cp.inst.operand = aga_this_data->bplcon0 |
sys/arch/amiga/dev/grfabs_cc.c
2016
printf(" bplcon0 %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
2019
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
2025
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2028
printf(" diwstart %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
2031
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2034
printf(" diwstop %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
2037
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
2040
printf(" ddfstart %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
2043
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
2046
printf(" ddfstop %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
2052
tmp[j].cp.inst.operand = HIADDR(PREP_DMA_MEM(v->bitmap->plane[i]));
sys/arch/amiga/dev/grfabs_cc.c
2053
tmp[j + 1].cp.inst.operand = LOADDR(PREP_DMA_MEM(v->bitmap->plane[i]));
sys/arch/amiga/dev/grfabs_cc.c
2062
tmp[0].cp.inst.operand = v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
2063
tmp[1].cp.inst.operand = v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
2071
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(aga_this_data->frames[F_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
2072
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(aga_this_data->frames[F_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
2270
tmp->cp.inst.operand = 0x8003;
sys/arch/amiga/dev/grfabs_cc.c
2272
tmp->cp.inst.operand = super72_htotal;
sys/arch/amiga/dev/grfabs_cc.c
2274
tmp->cp.inst.operand = super72_hbstrt;
sys/arch/amiga/dev/grfabs_cc.c
2276
tmp->cp.inst.operand = super72_hsstrt;
sys/arch/amiga/dev/grfabs_cc.c
2278
tmp->cp.inst.operand = super72_hsstop;
sys/arch/amiga/dev/grfabs_cc.c
2280
tmp->cp.inst.operand = super72_hbstop;
sys/arch/amiga/dev/grfabs_cc.c
2282
tmp->cp.inst.operand = super72_hcenter;
sys/arch/amiga/dev/grfabs_cc.c
2284
tmp->cp.inst.operand = super72_vbstrt;
sys/arch/amiga/dev/grfabs_cc.c
2286
tmp->cp.inst.operand = super72_vsstrt;
sys/arch/amiga/dev/grfabs_cc.c
2288
tmp->cp.inst.operand = super72_vsstop;
sys/arch/amiga/dev/grfabs_cc.c
2290
tmp->cp.inst.operand = super72_vbstop;
sys/arch/amiga/dev/grfabs_cc.c
2292
tmp->cp.inst.operand = super72_vtotal;
sys/arch/amiga/dev/grfabs_cc.c
2295
tmp->cp.inst.operand = super72_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
2297
tmp->cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2300
tmp->cp.inst.operand = super72_this_data->bplcon0 |
sys/arch/amiga/dev/grfabs_cc.c
2303
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
2305
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2307
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2309
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
2311
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
2316
tmp[j].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2318
tmp[j + 1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2324
tmp[0].cp.inst.operand = v->bitmap->bytes_per_row +
sys/arch/amiga/dev/grfabs_cc.c
2326
tmp[1].cp.inst.operand = v->bitmap->bytes_per_row +
sys/arch/amiga/dev/grfabs_cc.c
2331
tmp[0].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2333
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2347
tmp[j].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2349
tmp[j + 1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2355
tmp[0].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2357
tmp[1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
2508
tmp->cp.inst.operand = 0;
sys/arch/amiga/dev/grfabs_cc.c
2511
tmp->cp.inst.operand = ph_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
2513
tmp->cp.inst.operand = CALC_DIWHIGH(hstart, vstart, hstop, vstop);
sys/arch/amiga/dev/grfabs_cc.c
2516
tmp->cp.inst.operand = ph_this_data->bplcon0 | ((depth & 0x7) << 12);
sys/arch/amiga/dev/grfabs_cc.c
2518
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
2520
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2522
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2524
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
2526
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
2531
tmp[j].cp.inst.operand = HIADDR(PREP_DMA_MEM(v->bitmap->plane[i]));
sys/arch/amiga/dev/grfabs_cc.c
2532
tmp[j + 1].cp.inst.operand = LOADDR(PREP_DMA_MEM(v->bitmap->plane[i]));
sys/arch/amiga/dev/grfabs_cc.c
2537
tmp[0].cp.inst.operand = v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
2538
tmp[1].cp.inst.operand = v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
2542
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(ph_this_data->frames[F_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
2543
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(ph_this_data->frames[F_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
2684
tmp->cp.inst.operand = 0;
sys/arch/amiga/dev/grfabs_cc.c
2687
tmp->cp.inst.operand = phl_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
2689
tmp->cp.inst.operand = CALC_DIWHIGH(hstart, vstart, hstop, vstop);
sys/arch/amiga/dev/grfabs_cc.c
2692
tmp->cp.inst.operand = phl_this_data->bplcon0 | ((depth & 0x7) << 12);
sys/arch/amiga/dev/grfabs_cc.c
2694
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
2696
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2698
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2700
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
2702
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
2707
tmp[j].cp.inst.operand = HIADDR(PREP_DMA_MEM(v->bitmap->plane[i]));
sys/arch/amiga/dev/grfabs_cc.c
2708
tmp[j + 1].cp.inst.operand = LOADDR(PREP_DMA_MEM(v->bitmap->plane[i]));
sys/arch/amiga/dev/grfabs_cc.c
2713
tmp[0].cp.inst.operand = v->bitmap->bytes_per_row + v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
2714
tmp[1].cp.inst.operand = v->bitmap->bytes_per_row + v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
2718
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(phl_this_data->frames[F_LACE_STORE_SHORT]));
sys/arch/amiga/dev/grfabs_cc.c
2719
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(phl_this_data->frames[F_LACE_STORE_SHORT]));
sys/arch/amiga/dev/grfabs_cc.c
2730
tmp[j].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[i][mod]));
sys/arch/amiga/dev/grfabs_cc.c
2731
tmp[j + 1].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[i][mod]));
sys/arch/amiga/dev/grfabs_cc.c
2736
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(phl_this_data->frames[F_LACE_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
2737
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(phl_this_data->frames[F_LACE_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
2885
tmp->cp.inst.operand = 0;
sys/arch/amiga/dev/grfabs_cc.c
2888
tmp->cp.inst.operand = phdl_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
2890
tmp->cp.inst.operand = CALC_DIWHIGH(hstart, vstart, hstop, vstop);
sys/arch/amiga/dev/grfabs_cc.c
2893
tmp->cp.inst.operand = phdl_this_data->bplcon0 | ((depth & 0x7) << 13); /* times two. */
sys/arch/amiga/dev/grfabs_cc.c
2895
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
2897
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2899
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
2901
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
2903
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
2909
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[0][0])); /* update plane
sys/arch/amiga/dev/grfabs_cc.c
2911
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[0][0])); /* high and low. */
sys/arch/amiga/dev/grfabs_cc.c
2912
tmp[2].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[0][mod1l])); /* update plane
sys/arch/amiga/dev/grfabs_cc.c
2914
tmp[3].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[0][mod1l])); /* high and low. */
sys/arch/amiga/dev/grfabs_cc.c
2916
tmp[4].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[1][0])); /* update plane
sys/arch/amiga/dev/grfabs_cc.c
2918
tmp[5].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[1][0])); /* high and low. */
sys/arch/amiga/dev/grfabs_cc.c
2919
tmp[6].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[1][mod1l])); /* update plane
sys/arch/amiga/dev/grfabs_cc.c
2921
tmp[7].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[1][mod1l])); /* high and low. */
sys/arch/amiga/dev/grfabs_cc.c
2925
tmp[0].cp.inst.operand = mod2l + mod1l;
sys/arch/amiga/dev/grfabs_cc.c
2926
tmp[1].cp.inst.operand = mod2l + mod1l;
sys/arch/amiga/dev/grfabs_cc.c
2930
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(phdl_this_data->frames[F_LACE_STORE_SHORT]));
sys/arch/amiga/dev/grfabs_cc.c
2931
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(phdl_this_data->frames[F_LACE_STORE_SHORT]));
sys/arch/amiga/dev/grfabs_cc.c
2938
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[0][mod2l])); /* update plane
sys/arch/amiga/dev/grfabs_cc.c
2940
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[0][mod2l])); /* high and low. */
sys/arch/amiga/dev/grfabs_cc.c
2941
tmp[2].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[0][mod2l + mod1l])); /* update plane
sys/arch/amiga/dev/grfabs_cc.c
2943
tmp[3].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[0][mod2l + mod1l])); /* high and low. */
sys/arch/amiga/dev/grfabs_cc.c
2945
tmp[4].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[1][mod2l])); /* update plane
sys/arch/amiga/dev/grfabs_cc.c
2947
tmp[5].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[1][mod2l])); /* high and low. */
sys/arch/amiga/dev/grfabs_cc.c
2948
tmp[6].cp.inst.operand = HIADDR(PREP_DMA_MEM(&v->bitmap->plane[1][mod2l + mod1l])); /* update plane
sys/arch/amiga/dev/grfabs_cc.c
2950
tmp[7].cp.inst.operand = LOADDR(PREP_DMA_MEM(&v->bitmap->plane[1][mod2l + mod1l])); /* high and low. */
sys/arch/amiga/dev/grfabs_cc.c
2954
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(phdl_this_data->frames[F_LACE_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
2955
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(phdl_this_data->frames[F_LACE_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
3028
cp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(hedley_init));
sys/arch/amiga/dev/grfabs_cc.c
3029
cp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(hedley_init));
sys/arch/amiga/dev/grfabs_cc.c
3069
tmp->cp.inst.operand = p24_this_data->bplcon0 | ((depth & 0x7) << 13); /* times 2 */
sys/arch/amiga/dev/grfabs_cc.c
3378
tmp->cp.inst.operand = 0x0ca1 | (i << 13);
sys/arch/amiga/dev/grfabs_cc.c
3382
tmp->cp.inst.operand = 0x0ea1 | (i << 13);
sys/arch/amiga/dev/grfabs_cc.c
3387
tmp->cp.inst.operand = 0x0ca1;
sys/arch/amiga/dev/grfabs_cc.c
3389
tmp->cp.inst.operand = 0x8003;
sys/arch/amiga/dev/grfabs_cc.c
3391
tmp->cp.inst.operand = pAGA_htotal; /* 81/71/73/79? */
sys/arch/amiga/dev/grfabs_cc.c
3393
tmp->cp.inst.operand = pAGA_hbstrt; /* 0x0008 */
sys/arch/amiga/dev/grfabs_cc.c
3395
tmp->cp.inst.operand = pAGA_hsstrt; /* 0x000e */
sys/arch/amiga/dev/grfabs_cc.c
3397
tmp->cp.inst.operand = pAGA_hsstop; /* 0x001c */
sys/arch/amiga/dev/grfabs_cc.c
3399
tmp->cp.inst.operand = pAGA_hsstop; /* 0x001e */
sys/arch/amiga/dev/grfabs_cc.c
3401
tmp->cp.inst.operand = pAGA_hcenter; /*AGA_htotal / 2 + AGA_hsstrt */
sys/arch/amiga/dev/grfabs_cc.c
3403
tmp->cp.inst.operand = pAGA_vbstrt; /* 0x0000 */
sys/arch/amiga/dev/grfabs_cc.c
3405
tmp->cp.inst.operand = pAGA_vsstrt; /* 0x016b / AGA_htotal */
sys/arch/amiga/dev/grfabs_cc.c
3407
tmp->cp.inst.operand = pAGA_vsstop; /* 0x02d6 / AGA_htotal */
sys/arch/amiga/dev/grfabs_cc.c
3409
tmp->cp.inst.operand = pAGA_vbstop; /* 0x0bd1 / AGA_htotal */
sys/arch/amiga/dev/grfabs_cc.c
3411
tmp->cp.inst.operand = pAGA_vtotal;
sys/arch/amiga/dev/grfabs_cc.c
3413
tmp->cp.inst.operand = paga_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
3416
printf(" beamcon0 %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
3419
tmp->cp.inst.operand = CALC_DIWHIGH(hstart, vstart, hstop, vstop);
sys/arch/amiga/dev/grfabs_cc.c
3422
printf(" diwhigh %04x>", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
3425
tmp->cp.inst.operand = (vstop & 0x0700) | ((hstop & 0x0100) << 5);
sys/arch/amiga/dev/grfabs_cc.c
3429
printf("%04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
3432
tmp->cp.inst.operand = paga_this_data->bplcon0 |
sys/arch/amiga/dev/grfabs_cc.c
3436
printf(" bplcon0 %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
3439
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
3445
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
3448
printf(" diwstart %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
3451
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
3454
printf(" diwstop %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
3457
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
3460
printf(" ddfstart %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
3463
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
3466
printf(" ddfstop %04x", tmp->cp.inst.operand);
sys/arch/amiga/dev/grfabs_cc.c
3472
tmp[j].cp.inst.operand = HIADDR(PREP_DMA_MEM(v->bitmap->plane[i]));
sys/arch/amiga/dev/grfabs_cc.c
3473
tmp[j + 1].cp.inst.operand = LOADDR(PREP_DMA_MEM(v->bitmap->plane[i]));
sys/arch/amiga/dev/grfabs_cc.c
3482
tmp[0].cp.inst.operand = v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
3483
tmp[1].cp.inst.operand = v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
3491
tmp[0].cp.inst.operand = HIADDR(PREP_DMA_MEM(paga_this_data->frames[F_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
3492
tmp[1].cp.inst.operand = LOADDR(PREP_DMA_MEM(paga_this_data->frames[F_STORE_LONG]));
sys/arch/amiga/dev/grfabs_cc.c
959
tmp->cp.inst.operand = 0x0020;
sys/arch/amiga/dev/grfabs_cc.c
962
tmp->cp.inst.operand = 0;
sys/arch/amiga/dev/grfabs_cc.c
965
tmp->cp.inst.operand = h_this_data->beamcon0;
sys/arch/amiga/dev/grfabs_cc.c
967
tmp->cp.inst.operand = CALC_DIWHIGH(hstart, vstart, hstop, vstop);
sys/arch/amiga/dev/grfabs_cc.c
970
tmp->cp.inst.operand = h_this_data->bplcon0 | ((depth & 0x7) << 12);
sys/arch/amiga/dev/grfabs_cc.c
972
tmp->cp.inst.operand = con1;
sys/arch/amiga/dev/grfabs_cc.c
974
tmp->cp.inst.operand = ((vstart & 0xff) << 8) | (hstart & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
976
tmp->cp.inst.operand = ((vstop & 0xff) << 8) | (hstop & 0xff);
sys/arch/amiga/dev/grfabs_cc.c
978
tmp->cp.inst.operand = ddfstart;
sys/arch/amiga/dev/grfabs_cc.c
980
tmp->cp.inst.operand = ddfstart + ddfwidth;
sys/arch/amiga/dev/grfabs_cc.c
985
tmp[j].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
987
tmp[j + 1].cp.inst.operand =
sys/arch/amiga/dev/grfabs_cc.c
993
tmp[0].cp.inst.operand = v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
994
tmp[1].cp.inst.operand = v->bitmap->row_mod;
sys/arch/amiga/dev/grfabs_cc.c
998
tmp[0].cp.inst.operand =
sys/arch/arc/arc/minidebug.c
164
int inst;
sys/arch/arc/arc/minidebug.c
255
brk_tab[i].inst = *(u_int *)va;
sys/arch/arc/arc/minidebug.c
284
brk_tab[i].inst = *(u_int *)brk_tab[i].addr;
sys/arch/arc/arc/minidebug.c
299
*(u_int *)brk_tab[i].addr = brk_tab[i].inst;
sys/arch/arc/arc/minidebug.c
327
mdbprintins(brk_tab[i].inst, brk_tab[i].addr);
sys/arch/arm/arm32/db_interface.c
314
db_trapper(u_int addr, u_int inst, trapframe_t *frame, int fault_code)
sys/arch/arm/arm32/db_interface.c
318
if ((inst & ~INSN_COND_MASK) == (BKPT_INST & ~INSN_COND_MASK))
sys/arch/arm/include/db_machdep.h
75
#define BKPT_SET(inst, addr) (bswap32(BKPT_INST))
sys/arch/arm/include/db_machdep.h
77
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/arm/nvidia/tegra_drm_mode.c
958
const uint32_t inst =
sys/arch/arm/nvidia/tegra_drm_mode.c
963
HDMI_WRITE(tegra_encoder, HDMI_NV_PDISP_SOR_SEQ_INST0_REG, inst);
sys/arch/arm/nvidia/tegra_drm_mode.c
964
HDMI_WRITE(tegra_encoder, HDMI_NV_PDISP_SOR_SEQ_INST8_REG, inst);
sys/arch/hpc/stand/hpcboot/menu/rootwindow.cpp
77
HINSTANCE inst = _app._instance;
sys/arch/hpc/stand/hpcboot/menu/rootwindow.cpp
79
(LoadString(inst, IDS_HPCMENU, 0, 0));
sys/arch/hpc/stand/hpcboot/menu/rootwindow.cpp
84
0, 0, inst, this);
sys/arch/hppa/hppa/db_disasm.c
1000
static const struct inst instrs[] = {
sys/arch/hppa/hppa/db_disasm.c
1149
static const struct inst *so_sysop[0xd0];
sys/arch/hppa/hppa/db_disasm.c
1150
static const struct inst *so_mmuop[0x50];
sys/arch/hppa/hppa/db_disasm.c
1151
static const struct inst *so_arith[0x80];
sys/arch/hppa/hppa/db_disasm.c
1152
static const struct inst *so_loads[0x50];
sys/arch/hppa/hppa/db_disasm.c
1153
static const struct inst *so_cldw [0x0A];
sys/arch/hppa/hppa/db_disasm.c
1154
static const struct inst *so_cldd [0x0A];
sys/arch/hppa/hppa/db_disasm.c
1155
static const struct inst *so_float[0x04];
sys/arch/hppa/hppa/db_disasm.c
1156
static const struct inst *so_fstq [0x0A];
sys/arch/hppa/hppa/db_disasm.c
1157
static const struct inst *so_ebran[0x08];
sys/arch/hppa/hppa/db_disasm.c
1158
static const struct inst *so_addit[0x02];
sys/arch/hppa/hppa/db_disasm.c
1159
static const struct inst *so_addi [0x02];
sys/arch/hppa/hppa/db_disasm.c
1160
static const struct inst *so_subi [0x02];
sys/arch/hppa/hppa/db_disasm.c
1161
static const struct inst *so_shext[0x08];
sys/arch/hppa/hppa/db_disasm.c
1162
static const struct inst *so_deps [0x08];
sys/arch/hppa/hppa/db_disasm.c
1244
const struct inst *i;
sys/arch/hppa/hppa/db_disasm.c
1303
addDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1312
unitDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1324
iaDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1337
shdDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1350
extrDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1360
vextrDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1370
depDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1380
vdepDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1390
depiDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1399
vdepiDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1513
ldDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1539
stDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1564
ldxDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1598
stsDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1622
stbysDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1646
limmDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1655
blDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1676
brDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1684
bvDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1692
beDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1714
cbDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1731
cbiDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1748
bbDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1765
ariDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1780
scDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1811
mmgtDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1868
brkDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
1875
floatDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
2063
coprDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
2150
lpkDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
2183
diagDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
2202
fmpysubDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
2216
fmpyaddDasm(const struct inst *i, OFS ofs, union insn w)
sys/arch/hppa/hppa/db_disasm.c
2238
const struct inst *i;
sys/arch/hppa/hppa/db_disasm.c
2260
i = (const struct inst *)m->subops;
sys/arch/hppa/hppa/db_disasm.c
769
int (*dasmfcn)(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
776
const struct inst **subops; /* pointer to table of subops indexed by
sys/arch/hppa/hppa/db_disasm.c
907
int blDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
908
int ldDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
909
int stDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
910
int addDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
911
int unitDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
912
int iaDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
913
int shdDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
914
int extrDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
915
int vextrDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
916
int depDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
917
int vdepDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
918
int depiDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
919
int vdepiDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
920
int limmDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
921
int brkDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
922
int lpkDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
923
int fmpyaddDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
924
int fmpysubDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
925
int floatDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
926
int coprDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
927
int diagDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
928
int scDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
929
int mmgtDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
930
int ldxDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
931
int stsDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
932
int stbysDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
933
int brDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
934
int bvDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
935
int beDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
936
int cbDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
937
int cbiDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
938
int bbDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/db_disasm.c
939
int ariDasm(const struct inst *, OFS, union insn);
sys/arch/hppa/hppa/fpu.c
224
u_int inst, inst_b, inst_x, inst_s, inst_t;
sys/arch/hppa/hppa/fpu.c
240
inst = frame->tf_iir;
sys/arch/hppa/hppa/fpu.c
247
: "r" (inst));
sys/arch/hppa/hppa/fpu.c
257
log2size = (inst & OPCODE_DOUBLE) ? 3 : 2;
sys/arch/hppa/hppa/fpu.c
266
if (inst & OPCODE_INDEXED) {
sys/arch/hppa/hppa/fpu.c
272
switch (inst & OPCODE_CMPLT) {
sys/arch/hppa/hppa/fpu.c
296
switch (inst & OPCODE_CMPLT) {
sys/arch/hppa/hppa/fpu.c
318
error = (inst & OPCODE_STORE) ?
sys/arch/hppa/hppa/fpu.c
328
hppa_fpu_emulate(struct trapframe *frame, struct lwp *l, u_int inst)
sys/arch/hppa/hppa/fpu.c
359
: "r" (inst));
sys/arch/hppa/hppa/fpu.c
361
opcode = (inst >> (31 - 5)) & 0x3f;
sys/arch/hppa/hppa/fpu.c
362
class = (inst >> (31 - 22)) & 0x3;
sys/arch/hppa/hppa/fpu.c
364
sub = (inst >> (31 - 16)) & 3;
sys/arch/hppa/hppa/fpu.c
366
sub = (inst >> (31 - 18)) & 7;
sys/arch/hppa/hppa/fpu.c
387
exception = decode_0c(inst, class, sub, fpregs);
sys/arch/hppa/hppa/fpu.c
390
exception = decode_0e(inst, class, sub, fpregs);
sys/arch/hppa/hppa/fpu.c
393
exception = decode_06(inst, fpregs);
sys/arch/hppa/hppa/fpu.c
396
exception = decode_26(inst, fpregs);
sys/arch/hppa/hppa/trap.c
126
#define STWM_R1_D_SR0_SP(inst) \
sys/arch/hppa/hppa/trap.c
127
(((inst) & 0xffffc001) == 0x6fc10000 ? (((inst) & 0x00003ff) >> 1) : 0)
sys/arch/hppa/hppa/trap.c
355
u_int pc, fp, inst;
sys/arch/hppa/hppa/trap.c
382
for (pc &= ~HPPA_PC_PRIV_MASK; pc > 0; pc -= sizeof(inst)) {
sys/arch/hppa/hppa/trap.c
383
if (ufetch_int((u_int *) pc, &inst) != 0) {
sys/arch/hppa/hppa/trap.c
388
if (STWM_R1_D_SR0_SP(inst)) {
sys/arch/hppa/hppa/trap.c
389
fp = tf->tf_sp - STWM_R1_D_SR0_SP(inst);
sys/arch/hppa/hppa/trap.c
390
printf(" sp from fp at pc %08x: %08x\n", pc, inst);
sys/arch/hppa/hppa/trap.c
804
uint32_t *pex, ex, inst;
sys/arch/hppa/hppa/trap.c
825
inst = ((uint32_t)fpopmap[ex >> 26] << 26) | (ex & 0x03ffffff);
sys/arch/hppa/hppa/trap.c
826
hppa_fpu_emulate(frame, l, inst);
sys/arch/hppa/include/db_machdep.h
70
#define BKPT_SET(inst, addr) BKPT_INST
sys/arch/i386/i386/db_disasm.c
1027
db_disasm_esc(db_addr_t loc, int inst, int short_addr, int size, const char *seg)
sys/arch/i386/i386/db_disasm.c
1036
fp = &db_Esc_inst[inst - 0xd8][f_reg(regmodrm)];
sys/arch/i386/i386/db_disasm.c
1118
int inst;
sys/arch/i386/i386/db_disasm.c
1122
const struct inst * ip;
sys/arch/i386/i386/db_disasm.c
1135
get_value_inc(inst, loc, 1, false);
sys/arch/i386/i386/db_disasm.c
1145
switch (inst) {
sys/arch/i386/i386/db_disasm.c
1184
get_value_inc(inst, loc, 1, false);
sys/arch/i386/i386/db_disasm.c
1187
if (inst >= 0xd8 && inst <= 0xdf) {
sys/arch/i386/i386/db_disasm.c
1188
loc = db_disasm_esc(loc, inst, short_addr, size, seg);
sys/arch/i386/i386/db_disasm.c
1193
if (inst == 0x0f) {
sys/arch/i386/i386/db_disasm.c
1194
get_value_inc(inst, loc, 1, false);
sys/arch/i386/i386/db_disasm.c
1195
ip = db_inst_0f[inst>>4];
sys/arch/i386/i386/db_disasm.c
1199
ip = &ip[inst&0xf];
sys/arch/i386/i386/db_disasm.c
1201
ip = &db_inst_table[inst];
sys/arch/i386/i386/db_disasm.c
1215
ip = (const struct inst *)ip->i_extra;
sys/arch/i386/i386/db_disasm.c
1223
ip = (const struct inst *)ip->i_extra;
sys/arch/i386/i386/db_disasm.c
1303
db_printf("%s", db_reg[size][f_rm(inst)]);
sys/arch/i386/i386/db_disasm.c
1306
db_printf("%s", db_reg[LONG][f_rm(inst)]);
sys/arch/i386/i386/db_disasm.c
1312
db_printf("%s", db_seg_reg[f_reg(inst)]);
sys/arch/i386/i386/db_disasm.c
134
struct inst db_Grp7[] = {
sys/arch/i386/i386/db_disasm.c
156
struct inst db_Grp9[] = {
sys/arch/i386/i386/db_disasm.c
182
const struct inst db_inst_0f0x[] = {
sys/arch/i386/i386/db_disasm.c
202
const struct inst db_inst_0f2x[] = {
sys/arch/i386/i386/db_disasm.c
222
const struct inst db_inst_0f3x[] = {
sys/arch/i386/i386/db_disasm.c
242
const struct inst db_inst_0f4x[] = {
sys/arch/i386/i386/db_disasm.c
262
const struct inst db_inst_0f8x[] = {
sys/arch/i386/i386/db_disasm.c
282
const struct inst db_inst_0f9x[] = {
sys/arch/i386/i386/db_disasm.c
302
const struct inst db_inst_0fax[] = {
sys/arch/i386/i386/db_disasm.c
322
const struct inst db_inst_0fbx[] = {
sys/arch/i386/i386/db_disasm.c
342
const struct inst db_inst_0fcx[] = {
sys/arch/i386/i386/db_disasm.c
362
const struct inst * const db_inst_0f[] = {
sys/arch/i386/i386/db_disasm.c
532
const struct inst db_Grp3[] = {
sys/arch/i386/i386/db_disasm.c
543
const struct inst db_Grp4[] = {
sys/arch/i386/i386/db_disasm.c
554
const struct inst db_Grp5[] = {
sys/arch/i386/i386/db_disasm.c
565
const struct inst db_inst_table[256] = {
sys/arch/i386/i386/db_disasm.c
855
const struct inst db_bad_inst =
sys/arch/i386/i386/db_machdep.c
103
inst = db_get_value((int)argp, 4, false);
sys/arch/i386/i386/db_machdep.c
104
if ((inst & 0xff) == 0x59) /* popl %ecx */
sys/arch/i386/i386/db_machdep.c
106
else if ((inst & 0xffff) == 0xc483) /* addl %n, %esp */
sys/arch/i386/i386/db_machdep.c
107
args = ((inst >> 16) & 0xff) / 4;
sys/arch/i386/i386/db_machdep.c
95
int inst;
sys/arch/i386/include/db_machdep.h
69
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/ia64/ia64/db_interface.c
398
db_bkpt_set(db_expr_t inst, db_addr_t addr)
sys/arch/ia64/ia64/db_interface.c
406
tmp = inst;
sys/arch/ia64/ia64/trap.c
295
struct asm_inst *inst;
sys/arch/ia64/ia64/trap.c
303
inst = bundle.b_inst + slot;
sys/arch/ia64/ia64/trap.c
309
if (inst->i_op != ASM_OP_BREAK ||
sys/arch/ia64/ia64/trap.c
310
inst->i_oper[1].o_type != ASM_OPER_IMM)
sys/arch/ia64/ia64/trap.c
313
return (inst->i_oper[1].o_value);
sys/arch/ia64/include/db_machdep.h
90
#define BKPT_SET(inst, addr) db_bkpt_set(inst, addr)
sys/arch/ia64/include/db_machdep.h
91
db_expr_t db_bkpt_set(db_expr_t inst, db_addr_t addr);
sys/arch/m68k/include/db_machdep.h
63
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/m68k/m68k/db_disasm.h
420
#define IS_INST(inst,val) ((inst ## _MASK & (val)) == inst ## _INST)
sys/arch/m68k/m68k/db_disasm.h
422
#define IS_INST(inst,val) ((inst/**/_MASK & (val)) == inst/**/_INST)
sys/arch/mips/include/db_machdep.h
123
bool inst_branch(int inst);
sys/arch/mips/include/db_machdep.h
124
bool inst_call(int inst);
sys/arch/mips/include/db_machdep.h
125
bool inst_return(int inst);
sys/arch/mips/include/db_machdep.h
126
bool inst_load(int inst);
sys/arch/mips/include/db_machdep.h
127
bool inst_store(int inst);
sys/arch/mips/include/db_machdep.h
128
bool inst_unconditional_flow_transfer(int inst);
sys/arch/mips/include/db_machdep.h
129
db_addr_t branch_taken(int inst, db_addr_t pc, db_regs_t *regs);
sys/arch/mips/include/db_machdep.h
80
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/mips/mips/db_interface.c
1007
inst_return(int inst)
sys/arch/mips/mips/db_interface.c
1011
i.word = inst;
sys/arch/mips/mips/db_interface.c
1021
inst_unconditional_flow_transfer(int inst)
sys/arch/mips/mips/db_interface.c
1026
i.word = inst;
sys/arch/mips/mips/db_interface.c
1036
inst_load(int inst)
sys/arch/mips/mips/db_interface.c
1038
InstFmt i = { .word = inst, };
sys/arch/mips/mips/db_interface.c
1053
inst_store(int inst)
sys/arch/mips/mips/db_interface.c
1055
InstFmt i = { .word = inst, };
sys/arch/mips/mips/db_interface.c
1074
branch_taken(int inst, db_addr_t pc, db_regs_t *regs)
sys/arch/mips/mips/db_interface.c
935
inst_branch(int inst)
sys/arch/mips/mips/db_interface.c
940
i.word = inst;
sys/arch/mips/mips/db_interface.c
984
inst_call(int inst)
sys/arch/mips/mips/db_interface.c
989
i.word = inst;
sys/arch/mips/mips/mips_emul.c
100
if ((int)(tf->tf_regs[inst.RType.rs]) < 0)
sys/arch/mips/mips/mips_emul.c
1004
if (ustore_8((void *)vaddr, tf->tf_regs[(inst>>16)&0x1F]) != 0) {
sys/arch/mips/mips/mips_emul.c
101
nextpc = BRANCHTARGET(instpc, inst);
sys/arch/mips/mips/mips_emul.c
1013
mips_emul_sh(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
1018
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
1019
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
1027
if (ustore_16((void *)vaddr, tf->tf_regs[(inst>>16)&0x1F]) != 0) {
sys/arch/mips/mips/mips_emul.c
1036
mips_emul_sw(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
1041
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
1042
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
1050
if (ustore_32((void *)vaddr, tf->tf_regs[(inst>>16)&0x1F]) != 0) {
sys/arch/mips/mips/mips_emul.c
1059
mips_emul_swl(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
1065
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
1066
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
1079
x = tf->tf_regs[(inst>>16)&0x1F];
sys/arch/mips/mips/mips_emul.c
1095
mips_emul_swr(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
110
if ((int)(tf->tf_regs[inst.RType.rs]) >= 0)
sys/arch/mips/mips/mips_emul.c
1101
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
1102
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
111
nextpc = BRANCHTARGET(instpc, inst);
sys/arch/mips/mips/mips_emul.c
1115
x = tf->tf_regs[(inst>>16)&0x1F];
sys/arch/mips/mips/mips_emul.c
1132
mips_emul_sd(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
1137
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
1138
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
1146
if (copyout((void *)vaddr, &tf->tf_regs[(inst>>16)&0x1F], 8) < 0) {
sys/arch/mips/mips/mips_emul.c
1155
mips_emul_sdl(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
1162
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
1163
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
1176
x = tf->tf_regs[(inst>>16)&0x1F];
sys/arch/mips/mips/mips_emul.c
118
__func__, "bad branch", inst.word, instpc);
sys/arch/mips/mips/mips_emul.c
1192
mips_emul_sdr(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
1199
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
1200
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
1213
x = tf->tf_regs[(inst>>16)&0x1F];
sys/arch/mips/mips/mips_emul.c
124
nextpc = (inst.JType.target << 2) |
sys/arch/mips/mips/mips_emul.c
130
if (tf->tf_regs[inst.RType.rs] == tf->tf_regs[inst.RType.rt])
sys/arch/mips/mips/mips_emul.c
131
nextpc = BRANCHTARGET(instpc, inst);
sys/arch/mips/mips/mips_emul.c
138
if (tf->tf_regs[inst.RType.rs] != tf->tf_regs[inst.RType.rt])
sys/arch/mips/mips/mips_emul.c
139
nextpc = BRANCHTARGET(instpc, inst);
sys/arch/mips/mips/mips_emul.c
146
if ((int)(tf->tf_regs[inst.RType.rs]) <= 0)
sys/arch/mips/mips/mips_emul.c
147
nextpc = BRANCHTARGET(instpc, inst);
sys/arch/mips/mips/mips_emul.c
154
if ((int)(tf->tf_regs[inst.RType.rs]) > 0)
sys/arch/mips/mips/mips_emul.c
155
nextpc = BRANCHTARGET(instpc, inst);
sys/arch/mips/mips/mips_emul.c
161
if (inst.RType.rs == OP_BCx || inst.RType.rs == OP_BCy) {
sys/arch/mips/mips/mips_emul.c
163
if ((inst.RType.rt & COPz_BC_TF_MASK) != COPz_BC_TRUE)
sys/arch/mips/mips/mips_emul.c
166
nextpc = BRANCHTARGET(instpc, inst);
sys/arch/mips/mips/mips_emul.c
174
__func__, "bad COP1 branch", inst.word, instpc);
sys/arch/mips/mips/mips_emul.c
180
__func__, "non-branch", inst.word, instpc);
sys/arch/mips/mips/mips_emul.c
195
uint32_t inst;
sys/arch/mips/mips/mips_emul.c
203
inst = mips_ufetch32((uint32_t *)opc+1);
sys/arch/mips/mips/mips_emul.c
205
inst = mips_ufetch32((uint32_t *)opc);
sys/arch/mips/mips/mips_emul.c
207
switch (((InstFmt)inst).FRType.op) {
sys/arch/mips/mips/mips_emul.c
209
mips_emul_ll(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
212
mips_emul_sc(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
215
mips_emul_special(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
218
mips_emul_special3(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
222
mips_emul_fp(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
227
mips_emul_lwc1(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
232
mips_emul_ldc1(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
237
mips_emul_swc1(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
242
mips_emul_sdc1(inst, tf, cause);
sys/arch/mips/mips/mips_emul.c
253
cause, tf->tf_regs[_R_SR], inst, code);
sys/arch/mips/mips/mips_emul.c
299
mips_emul_ll(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
305
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
306
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
314
t = &(tf->tf_regs[(inst>>16)&0x1F]);
sys/arch/mips/mips/mips_emul.c
332
mips_emul_sc(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
339
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
340
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
348
t = (mips_reg_t *)&(tf->tf_regs[(inst>>16)&0x1F]);
sys/arch/mips/mips/mips_emul.c
383
mips_emul_special(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
386
const InstFmt instfmt = { .word = inst };
sys/arch/mips/mips/mips_emul.c
408
mips_emul_special3(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
411
const InstFmt instfmt = { .word = inst };
sys/arch/mips/mips/mips_emul.c
495
mips_emul_lwc1(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
503
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
504
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
513
t = &(curpcb->pcb_fpregs.r_regs[(inst>>16)&0x1F]);
sys/arch/mips/mips/mips_emul.c
531
inst = mips_ufetch32((uint32_t *)vaddr);
sys/arch/mips/mips/mips_emul.c
532
if (((InstFmt)inst).FRType.op != OP_LWC1)
sys/arch/mips/mips/mips_emul.c
535
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
536
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
545
t = &(curpcb->pcb_fpregs.r_regs[(inst>>16)&0x1F]);
sys/arch/mips/mips/mips_emul.c
558
mips_emul_ldc1(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
564
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
565
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
574
t = &(curpcb->pcb_fpregs.r_regs[(inst>>16)&0x1E]);
sys/arch/mips/mips/mips_emul.c
585
mips_emul_swc1(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
593
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
594
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
603
t = &(curpcb->pcb_fpregs.r_regs[(inst>>16)&0x1F]);
sys/arch/mips/mips/mips_emul.c
621
inst = mips_ufetch32((uint32_t *)vaddr);
sys/arch/mips/mips/mips_emul.c
622
if (((InstFmt)inst).FRType.op != OP_SWC1)
sys/arch/mips/mips/mips_emul.c
625
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
626
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
635
t = &(curpcb->pcb_fpregs.r_regs[(inst>>16)&0x1F]);
sys/arch/mips/mips/mips_emul.c
648
mips_emul_sdc1(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
654
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
655
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
664
t = &(curpcb->pcb_fpregs.r_regs[(inst>>16)&0x1E]);
sys/arch/mips/mips/mips_emul.c
675
mips_emul_lb(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
681
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
682
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
695
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
701
mips_emul_lbu(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
707
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
708
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
721
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
727
mips_emul_lh(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
733
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
734
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
74
InstFmt inst;
sys/arch/mips/mips/mips_emul.c
747
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
753
mips_emul_lhu(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
759
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
760
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
773
tf->tf_regs[(inst>>16)&0x1F] = (mips_ureg_t)x;
sys/arch/mips/mips/mips_emul.c
779
mips_emul_lw(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
78
inst.word = mips_ufetch32((void *)instpc);
sys/arch/mips/mips/mips_emul.c
785
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
786
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
799
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
80
inst.word = *(uint32_t *)instpc;
sys/arch/mips/mips/mips_emul.c
805
mips_emul_lwl(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
811
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
812
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
825
x = tf->tf_regs[(inst>>16)&0x1F];
sys/arch/mips/mips/mips_emul.c
83
switch ((int)inst.JType.op) {
sys/arch/mips/mips/mips_emul.c
832
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
838
mips_emul_lwr(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
844
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
845
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
85
if (inst.RType.func == OP_JR || inst.RType.func == OP_JALR)
sys/arch/mips/mips/mips_emul.c
858
x = tf->tf_regs[(inst>>16)&0x1F];
sys/arch/mips/mips/mips_emul.c
86
nextpc = tf->tf_regs[inst.RType.rs];
sys/arch/mips/mips/mips_emul.c
865
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
872
mips_emul_lwu(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
878
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
879
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
892
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
898
mips_emul_ld(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
903
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
904
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
91
__func__, "non-branch", inst.word, instpc);
sys/arch/mips/mips/mips_emul.c
912
if (copyin((void *)vaddr, &(tf->tf_regs[(inst>>16)&0x1F]), 8) != 0) {
sys/arch/mips/mips/mips_emul.c
921
mips_emul_ldl(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
928
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
929
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
942
x = tf->tf_regs[(inst>>16)&0x1F];
sys/arch/mips/mips/mips_emul.c
949
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
95
switch ((int)inst.IType.rt) {
sys/arch/mips/mips/mips_emul.c
955
mips_emul_ldr(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
962
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
963
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/mips/mips/mips_emul.c
976
x = tf->tf_regs[(inst>>16)&0x1F];
sys/arch/mips/mips/mips_emul.c
983
tf->tf_regs[(inst>>16)&0x1F] = x;
sys/arch/mips/mips/mips_emul.c
990
mips_emul_sb(uint32_t inst, struct trapframe *tf, uint32_t cause)
sys/arch/mips/mips/mips_emul.c
995
offset = inst & 0xFFFF;
sys/arch/mips/mips/mips_emul.c
996
vaddr = tf->tf_regs[(inst>>21)&0x1F] + offset;
sys/arch/powerpc/booke/pci/pq3pci.c
101
TRUTH_ENCODE(SVR_P1017v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
104
#define PORDEVSR_TRUTH_ENCODE(svr, inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
105
TRUTH_ENCODE(svr, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
73
#define PORDEVSR_MPC8536_TRUTH_ENCODE(inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
74
TRUTH_ENCODE(SVR_MPC8536v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
76
#define PORDEVSR_MPC8544_TRUTH_ENCODE(inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
77
TRUTH_ENCODE(SVR_MPC8544v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
79
#define PORDEVSR_MPC8548_TRUTH_ENCODE(inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
80
TRUTH_ENCODE(SVR_MPC8548v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
82
#define PORDEVSR_MPC8555_TRUTH_ENCODE(inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
83
TRUTH_ENCODE(SVR_MPC8555v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
85
#define PORDEVSR_MPC8572_TRUTH_ENCODE(inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
86
TRUTH_ENCODE(SVR_MPC8572v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
88
#define PORDEVSR_P20x0_TRUTH_ENCODE(inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
89
TRUTH_ENCODE(SVR_P2020v2, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
91
TRUTH_ENCODE(SVR_P2010v2, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
93
#define PORDEVSR_P1025_TRUTH_ENCODE(inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
94
TRUTH_ENCODE(SVR_P1025v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
96
TRUTH_ENCODE(SVR_P1016v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/booke/pci/pq3pci.c
98
#define PORDEVSR_P1023_TRUTH_ENCODE(inst, field, value, result) \
sys/arch/powerpc/booke/pci/pq3pci.c
99
TRUTH_ENCODE(SVR_P1023v1, inst, PORDEVSR_##field, \
sys/arch/powerpc/include/booke/e500var.h
67
#define TRUTH_ENCODE(svr, inst, mask, value, result) \
sys/arch/powerpc/include/booke/e500var.h
70
.tt_instance = (inst), \
sys/arch/powerpc/include/db_machdep.h
72
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/powerpc/powerpc/db_interface.c
503
branch_taken(int inst, db_addr_t pc, db_regs_t *regs)
sys/arch/powerpc/powerpc/db_interface.c
506
if ((inst & M_B ) == I_B || (inst & M_B ) == I_BL) {
sys/arch/powerpc/powerpc/db_interface.c
508
off = ((db_expr_t)((inst & 0x03fffffc) << 6)) >> 6;
sys/arch/powerpc/powerpc/db_interface.c
509
return (((inst & 0x2) ? 0 : pc) + off);
sys/arch/powerpc/powerpc/db_interface.c
512
if ((inst & M_BC) == I_BC || (inst & M_BC) == I_BCL) {
sys/arch/powerpc/powerpc/db_interface.c
514
off = ((db_expr_t)((inst & 0x0000fffc) << 16)) >> 16;
sys/arch/powerpc/powerpc/db_interface.c
515
return (((inst & 0x2) ? 0 : pc) + off);
sys/arch/powerpc/powerpc/db_interface.c
518
if ((inst & M_RTS) == I_RTS || (inst & M_RTS) == I_BLRL)
sys/arch/powerpc/powerpc/db_interface.c
521
if ((inst & M_BCTR) == I_BCTR || (inst & M_BCTR) == I_BCTRL)
sys/arch/powerpc/powerpc/db_interface.c
525
inst);
sys/arch/riscv/include/db_machdep.h
112
bool inst_branch(uint32_t inst);
sys/arch/riscv/include/db_machdep.h
113
bool inst_call(uint32_t inst);
sys/arch/riscv/include/db_machdep.h
114
bool inst_return(uint32_t inst);
sys/arch/riscv/include/db_machdep.h
115
bool inst_load(uint32_t inst);
sys/arch/riscv/include/db_machdep.h
116
bool inst_store(uint32_t inst);
sys/arch/riscv/include/db_machdep.h
117
bool inst_unconditional_flow_transfer(uint32_t inst);
sys/arch/riscv/include/db_machdep.h
118
db_addr_t branch_taken(uint32_t inst, db_addr_t pc, db_regs_t *regs);
sys/arch/riscv/include/db_machdep.h
70
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/sh3/include/db_machdep.h
55
#define BKPT_SET(inst, addr) BKPT_INST
sys/arch/sh3/sh3/db_interface.c
206
inst_call(int inst)
sys/arch/sh3/sh3/db_interface.c
209
inst >>= 16;
sys/arch/sh3/sh3/db_interface.c
211
return (inst & M_BSR) == I_BSR || (inst & M_BSRF) == I_BSRF ||
sys/arch/sh3/sh3/db_interface.c
212
(inst & M_JSR) == I_JSR;
sys/arch/sh3/sh3/db_interface.c
216
inst_return(int inst)
sys/arch/sh3/sh3/db_interface.c
219
inst >>= 16;
sys/arch/sh3/sh3/db_interface.c
221
return (inst & M_RTS) == I_RTS;
sys/arch/sh3/sh3/db_interface.c
225
inst_trap_return(int inst)
sys/arch/sh3/sh3/db_interface.c
228
inst >>= 16;
sys/arch/sh3/sh3/db_interface.c
230
return (inst & M_RTE) == I_RTE;
sys/arch/sh3/sh3/db_trace.c
262
int i, inst, inst2;
sys/arch/sh3/sh3/db_trace.c
281
inst = db_get_value(pc, 2, false);
sys/arch/sh3/sh3/db_trace.c
283
__func__, __LINE__, pc, inst, depth);
sys/arch/sh3/sh3/db_trace.c
286
if (inst == 0x000b) /* rts - asm routines w/out frame */
sys/arch/sh3/sh3/db_trace.c
289
if (inst == 0x6ef3) /* mov r15,r14 -- end of prologue */
sys/arch/sh3/sh3/db_trace.c
292
if (inst == 0x4f22) { /* sts.l pr,@-r15 */
sys/arch/sh3/sh3/db_trace.c
297
if (inst == 0x2fe6) { /* mov.l r14,@-r15 */
sys/arch/sh3/sh3/db_trace.c
302
if ((inst & 0xff0f) == 0x2f06) { /* mov.l r?,@-r15 */
sys/arch/sh3/sh3/db_trace.c
306
if ((inst & 0xff00) == 0x7f00) { /* add #n,r15 */
sys/arch/sh3/sh3/db_trace.c
307
int8_t n = inst & 0xff;
sys/arch/sh3/sh3/db_trace.c
320
if ((inst & 0xf000) == 0x9000) {
sys/arch/sh3/sh3/db_trace.c
323
((inst & 0x0f00) == ((inst2 & 0x00f0) << 4))) {
sys/arch/sh3/sh3/db_trace.c
326
unsigned int disp = (int)(inst & 0xff);
sys/arch/sparc/dev/cgfourteen.c
175
#define sxi(inst, a, b, d, cnt) \
sys/arch/sparc/dev/cgfourteen.c
177
sx_write(sc->sc_sx, SX_INSTRUCTIONS, inst((a), (b), (d), (cnt)))
sys/arch/sparc/dev/cgfourteen.c
183
#define sxm(inst, addr, reg, count) sta((addr) & ~7, ASI_SX, inst((reg), (count), (addr) & 7))
sys/arch/sparc/include/db_machdep.h
71
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/sparc/include/db_machdep.h
82
bool db_inst_trap_return(int inst);
sys/arch/sparc/include/db_machdep.h
83
bool db_inst_return(int inst);
sys/arch/sparc/include/db_machdep.h
84
bool db_inst_call(int inst);
sys/arch/sparc/include/db_machdep.h
85
bool db_inst_branch(int inst);
sys/arch/sparc/include/db_machdep.h
86
int db_inst_load(int inst);
sys/arch/sparc/include/db_machdep.h
87
int db_inst_store(int inst);
sys/arch/sparc/include/db_machdep.h
88
bool db_inst_unconditional_flow_transfer(int inst);
sys/arch/sparc/include/db_machdep.h
89
db_addr_t db_branch_taken(int inst, db_addr_t pc, db_regs_t *regs);
sys/arch/sparc/sparc/db_interface.c
476
db_branch_taken(int inst, db_addr_t pc, db_regs_t *regs)
sys/arch/sparc/sparc/db_interface.c
481
insn.i_int = inst;
sys/arch/sparc/sparc/db_interface.c
500
return pc + ((inst << 10) >> 8);
sys/arch/sparc/sparc/db_interface.c
522
db_inst_branch(int inst)
sys/arch/sparc/sparc/db_interface.c
526
insn.i_int = inst;
sys/arch/sparc/sparc/db_interface.c
547
db_inst_call(int inst)
sys/arch/sparc/sparc/db_interface.c
551
insn.i_int = inst;
sys/arch/sparc/sparc/db_interface.c
558
return (insn.i_op3.i_op3 == IOP3_JMPL) && !db_inst_return(inst);
sys/arch/sparc/sparc/db_interface.c
567
db_inst_unconditional_flow_transfer(int inst)
sys/arch/sparc/sparc/db_interface.c
571
insn.i_int = inst;
sys/arch/sparc/sparc/db_interface.c
573
if (db_inst_call(inst))
sys/arch/sparc/sparc/db_interface.c
595
db_inst_return(int inst)
sys/arch/sparc/sparc/db_interface.c
598
return (inst == I_JMPLri(I_G0, I_O7, 8) || /* ret */
sys/arch/sparc/sparc/db_interface.c
599
inst == I_JMPLri(I_G0, I_I7, 8)); /* retl */
sys/arch/sparc/sparc/db_interface.c
603
db_inst_trap_return(int inst)
sys/arch/sparc/sparc/db_interface.c
607
insn.i_int = inst;
sys/arch/sparc/sparc/db_interface.c
615
db_inst_load(int inst)
sys/arch/sparc/sparc/db_interface.c
619
insn.i_int = inst;
sys/arch/sparc/sparc/db_interface.c
655
db_inst_store(int inst)
sys/arch/sparc/sparc/db_interface.c
659
insn.i_int = inst;
sys/arch/sparc64/include/db_machdep.h
107
bool db_inst_trap_return(int inst);
sys/arch/sparc64/include/db_machdep.h
108
bool db_inst_return(int inst);
sys/arch/sparc64/include/db_machdep.h
109
bool db_inst_call(int inst);
sys/arch/sparc64/include/db_machdep.h
110
bool db_inst_branch(int inst);
sys/arch/sparc64/include/db_machdep.h
111
int db_inst_load(int inst);
sys/arch/sparc64/include/db_machdep.h
112
int db_inst_store(int inst);
sys/arch/sparc64/include/db_machdep.h
113
bool db_inst_unconditional_flow_transfer(int inst);
sys/arch/sparc64/include/db_machdep.h
114
db_addr_t db_branch_taken(int inst, db_addr_t pc, db_regs_t *regs);
sys/arch/sparc64/include/db_machdep.h
95
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/sparc64/sparc64/db_interface.c
1151
db_branch_taken(int inst, db_addr_t pc, db_regs_t *regs)
sys/arch/sparc64/sparc64/db_interface.c
1158
insn.i_int = inst;
sys/arch/sparc64/sparc64/db_interface.c
1177
return pc + ((inst << 10) >> 8);
sys/arch/sparc64/sparc64/db_interface.c
1195
db_inst_branch(int inst)
sys/arch/sparc64/sparc64/db_interface.c
1199
insn.i_int = inst;
sys/arch/sparc64/sparc64/db_interface.c
1220
db_inst_call(int inst)
sys/arch/sparc64/sparc64/db_interface.c
1224
insn.i_int = inst;
sys/arch/sparc64/sparc64/db_interface.c
1231
return (insn.i_op3.i_op3 == IOP3_JMPL) && !db_inst_return(inst);
sys/arch/sparc64/sparc64/db_interface.c
1240
db_inst_unconditional_flow_transfer(int inst)
sys/arch/sparc64/sparc64/db_interface.c
1244
insn.i_int = inst;
sys/arch/sparc64/sparc64/db_interface.c
1246
if (db_inst_call(inst))
sys/arch/sparc64/sparc64/db_interface.c
1268
db_inst_return(int inst)
sys/arch/sparc64/sparc64/db_interface.c
1270
return (inst == I_JMPLri(I_G0, I_O7, 8) || /* ret */
sys/arch/sparc64/sparc64/db_interface.c
1271
inst == I_JMPLri(I_G0, I_I7, 8)); /* retl */
sys/arch/sparc64/sparc64/db_interface.c
1275
db_inst_trap_return(int inst)
sys/arch/sparc64/sparc64/db_interface.c
1279
insn.i_int = inst;
sys/arch/sparc64/sparc64/db_interface.c
1287
db_inst_load(int inst)
sys/arch/sparc64/sparc64/db_interface.c
1291
insn.i_int = inst;
sys/arch/sparc64/sparc64/db_interface.c
1327
db_inst_store(int inst)
sys/arch/sparc64/sparc64/db_interface.c
1331
insn.i_int = inst;
sys/arch/usermode/include/db_machdep.h
36
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/usermode/include/db_machdep.h
68
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/arch/vax/include/db_machdep.h
56
#define BKPT_SET(inst, addr) (BKPT_INST)
sys/ddb/db_run.c
381
unsigned int inst;
sys/ddb/db_run.c
387
inst = db_get_value(pc, sizeof(int), false);
sys/ddb/db_run.c
388
if (inst_branch(inst) || inst_call(inst) || inst_return(inst)) {
sys/ddb/db_run.c
389
brpc = branch_taken(inst, pc, regs);
sys/ddb/db_run.c
401
unconditional = inst_unconditional_flow_transfer(inst);
sys/dev/acpi/apei_interp.c
129
} *inst;
sys/dev/acpi/apei_interp.c
186
if (A->ninst == 0 || A->inst == NULL)
sys/dev/acpi/apei_interp.c
190
ACPI_WHEA_HEADER *const E = A->inst[j].header;
sys/dev/acpi/apei_interp.c
191
struct apei_mapreg *const map = A->inst[j].map;
sys/dev/acpi/apei_interp.c
197
kmem_free(A->inst, A->ninst * sizeof(A->inst[0]));
sys/dev/acpi/apei_interp.c
198
A->inst = NULL;
sys/dev/acpi/apei_interp.c
320
A->inst = kmem_zalloc(A->ninst * sizeof(A->inst[0]), KM_SLEEP);
sys/dev/acpi/apei_interp.c
348
A->inst[ip].header = E;
sys/dev/acpi/apei_interp.c
349
A->inst[ip].map = I->instreg[E->Instruction] ?
sys/dev/acpi/apei_interp.c
382
ACPI_WHEA_HEADER *const E = A->inst[j].header;
sys/dev/acpi/apei_interp.c
391
A->inst[j].map == NULL) {
sys/dev/acpi/apei_interp.c
425
ACPI_WHEA_HEADER *const E = A->inst[ip].header;
sys/dev/acpi/apei_interp.c
426
struct apei_mapreg *const map = A->inst[ip].map;
sys/dev/ic/ispmbox.h
2086
#define AT2_MAKE_TAGID(tid, bus, inst, aep) \
sys/dev/ic/ispmbox.h
2088
tid |= (((uint64_t)inst) << 32); \
sys/dev/ic/ispmbox.h
2091
#define CT2_MAKE_TAGID(tid, bus, inst, ct) \
sys/dev/ic/ispmbox.h
2093
tid |= (((uint64_t)inst) << 32); \
sys/dev/ic/ispmbox.h
2107
#define IN_FC_MAKE_TAGID(tid, bus, inst, seqid) \
sys/dev/ic/ispmbox.h
2109
tid |= (((uint64_t)inst) << 32); \
sys/dev/ic/ispmbox.h
2112
#define FC_TAG_INSERT_INST(tid, inst) \
sys/dev/ic/ispmbox.h
2114
tid |= (((uint64_t)inst) << 32)
sys/dev/pci/bktr/bktr_core.c
3101
volatile unsigned int inst;
sys/dev/pci/bktr/bktr_core.c
3124
inst = OP_WRITE | OP_SOL | (cols);
sys/dev/pci/bktr/bktr_core.c
3143
*dma_prog++ = htole32(inst);
sys/dev/pci/bktr/bktr_core.c
3191
*dma_prog++ = htole32(inst);
sys/dev/pci/bktr/bktr_core.c
3219
volatile unsigned int inst;
sys/dev/pci/bktr/bktr_core.c
3248
inst = OP_WRITE123 | OP_SOL | OP_EOL | (cols);
sys/dev/pci/bktr/bktr_core.c
3263
*dma_prog++ = htole32(inst);
sys/dev/pci/bktr/bktr_core.c
3310
*dma_prog++ = htole32(inst);
sys/dev/pci/bktr/bktr_core.c
3335
volatile unsigned int inst;
sys/dev/pci/bktr/bktr_core.c
3351
inst = OP_WRITE123 | OP_SOL | OP_EOL | (cols);
sys/dev/pci/bktr/bktr_core.c
3365
*dma_prog++ = htole32(inst);
sys/dev/pci/bktr/bktr_core.c
3416
*dma_prog++ = htole32(inst);
sys/dev/pci/if_bnx.c
2904
REG_WR_IND(sc, cpu_reg->inst, 0);
sys/dev/pci/if_bnx.c
2952
cpu_reg.inst = BNX_RXP_CPU_INSTRUCTION;
sys/dev/pci/if_bnx.c
2999
cpu_reg.inst = BNX_TXP_CPU_INSTRUCTION;
sys/dev/pci/if_bnx.c
3046
cpu_reg.inst = BNX_TPAT_CPU_INSTRUCTION;
sys/dev/pci/if_bnx.c
3093
cpu_reg.inst = BNX_COM_CPU_INSTRUCTION;
sys/dev/pci/if_bnx.c
3146
cpu_reg.inst = BNX_RXP_CPU_INSTRUCTION;
sys/dev/pci/if_bnx.c
3193
cpu_reg.inst = BNX_TXP_CPU_INSTRUCTION;
sys/dev/pci/if_bnx.c
3240
cpu_reg.inst = BNX_TPAT_CPU_INSTRUCTION;
sys/dev/pci/if_bnx.c
3287
cpu_reg.inst = BNX_COM_CPU_INSTRUCTION;
sys/dev/pci/if_bnxreg.h
4651
uint32_t inst;
sys/dev/pci/qat/qat_ae.c
355
uint64_t inst[] = {
sys/dev/pci/qat/qat_ae.c
361
const int ninst = __arraycount(inst);
sys/dev/pci/qat/qat_ae.c
400
inst[imm_w1] = inst[imm_w1] | ((data16hi >> 8) << 20) |
sys/dev/pci/qat/qat_ae.c
402
inst[imm_w0] = inst[imm_w0] | ((data16lo >> 8) << 20) |
sys/dev/pci/qat/qat_ae.c
406
inst[imm_w1] = inst[imm_w1] | ((data16hi >> 8) << 20) |
sys/dev/pci/qat/qat_ae.c
408
inst[imm_w0] = inst[imm_w0] | ((data16lo >> 8) << 20) |
sys/dev/pci/qat/qat_ae.c
413
return qat_ae_exec_ucode(sc, ae, ctx, inst, ninst, 1, ninst * 5, NULL);
sys/dev/pci/qat/qat_ae.c
420
uint64_t inst, savucode;
sys/dev/pci/qat/qat_ae.c
459
inst = 0xA070000000ull | (regaddr & 0x3ff);
sys/dev/pci/qat/qat_ae.c
462
inst = (0xA030000000ull | ((regaddr & 0x3ff) << 10));
sys/dev/pci/qat/qat_ae.c
518
inst = qat_ae_ucode_set_ecc(inst);
sys/dev/pci/qat/qat_ae.c
520
ulo = (uint32_t)(inst & 0xffffffff);
sys/dev/pci/qat/qat_ae.c
521
uhi = (uint32_t)(inst >> 32);
sys/dev/pci/qat/qatreg.h
782
#define INSERT_IMMED_GPRA_CONST(inst, const_val) \
sys/dev/pci/qat/qatreg.h
783
inst = (inst & 0xFFFF00C03FFull) | \
sys/dev/pci/qat/qatreg.h
786
#define INSERT_IMMED_GPRB_CONST(inst, const_val) \
sys/dev/pci/qat/qatreg.h
787
inst = (inst & 0xFFFF00FFF00ull) | \
sys/net/if_media.c
589
ifmedia_delete_instance(struct ifmedia *ifm, u_int inst)
sys/net/if_media.c
598
if (inst == IFM_INST_ANY ||
sys/net/if_media.c
599
inst == IFM_INST(ife->ifm_media)) {
usr.bin/config/mkioconf.c
418
int inst = -1;
usr.bin/config/mkioconf.c
424
if (inst >= p->p_inst)
usr.bin/config/mkioconf.c
426
inst = p->p_inst;
usr.bin/config/sem.c
1941
int inst = npspecs;
usr.bin/config/sem.c
1951
inst = p->p_inst;
usr.bin/config/sem.c
1963
p->p_inst = inst;
usr.bin/config/sem.c
1964
if (inst == npspecs)
usr.sbin/gspa/gspa/gsp_inst.c
111
struct inst instructions[] = {
usr.sbin/gspa/gspa/gsp_inst.c
256
int encode_instr(struct inst *ip, operand ops, int *spec, u_int16_t *iwords);
usr.sbin/gspa/gspa/gsp_inst.c
269
struct inst *ip;
usr.sbin/gspa/gspa/gsp_inst.c
439
encode_instr(struct inst *ip, operand ops, int *spec, u_int16_t *iwords)