Home
last modified time | relevance | path

Searched refs:coproc_num (Results 1 – 2 of 2) sorted by relevance

/netbsd/src/external/gpl3/gdb/dist/sim/mips/
Dsim-main.h679 #define COP_Usable(coproc_num) (coproc_num == 1) argument
681 void cop_lw (SIM_DESC sd, sim_cpu *cpu, address_word cia, int coproc_num, int coproc_reg, unsigned…
682 void cop_ld (SIM_DESC sd, sim_cpu *cpu, address_word cia, int coproc_num, int coproc_reg, uword64 …
683 unsigned int cop_sw (SIM_DESC sd, sim_cpu *cpu, address_word cia, int coproc_num, int coproc_reg);
684 uword64 cop_sd (SIM_DESC sd, sim_cpu *cpu, address_word cia, int coproc_num, int coproc_reg);
686 #define COP_LW(coproc_num,coproc_reg,memword) \ argument
687 cop_lw (SD, CPU, cia, coproc_num, coproc_reg, memword)
688 #define COP_LD(coproc_num,coproc_reg,memword) \ argument
689 cop_ld (SD, CPU, cia, coproc_num, coproc_reg, memword)
690 #define COP_SW(coproc_num,coproc_reg) \ argument
[all …]
Dinterp.c2082 int coproc_num, in cop_lw() argument
2086 switch (coproc_num) in cop_lw()
2100 …d,"COP_LW(%d,%d,0x%08X) at PC = 0x%s : TODO (architecture specific)\n",coproc_num,coproc_reg,memwo… in cop_lw()
2112 int coproc_num, in cop_ld() argument
2118 …printf("DBG: COP_LD: coproc_num = %d, coproc_reg = %d, value = 0x%s : PC = 0x%s\n", coproc_num, co… in cop_ld()
2121 switch (coproc_num) { in cop_ld()
2131 …sim_io_printf(sd,"COP_LD(%d,%d,0x%s) at PC = 0x%s : TODO (architecture specific)\n",coproc_num,cop… in cop_ld()
2146 int coproc_num, in cop_sw() argument
2151 switch (coproc_num) in cop_sw()
2162 …sim_io_printf(sd,"COP_SW(%d,%d) at PC = 0x%s : TODO (architecture specific)\n",coproc_num,coproc_r… in cop_sw()
[all …]