/osnet-11/usr/src/lib/libcpc/i386/ |
H A D | conf_pentium.c | 305 validargs(int cpuver, int regno) argument 307 if (regno < 0 || regno > 1) 318 versionmatch(int cpuver, int regno, const struct nametable *n) argument 320 if (!validargs(cpuver, regno) || (n->ver & MAPCPUVER(cpuver)) == 0) 334 if (regno == 1) 341 if (regno == 0) 356 getnametable(int cpuver, int regno) argument 360 if (!validargs(cpuver, regno)) 366 n = P5mmx_names[regno]; 381 cpc_walk_names(int cpuver, int regno, void *arg, void (*action)(void *, int, const char *, uint8_t)) argument 394 __cpc_reg_to_name(int cpuver, int regno, uint8_t bits) argument 410 __cpc_name_to_reg(int cpuver, int regno, const char *name, uint8_t *bits) argument [all...] |
H A D | event_pentium.c | 134 uint_t regno; local 136 regno = strcmp(kv->kv_token, "pic0") == 0 ? 0 : 1; 144 if (__cpc_name_to_reg(cpuver, regno, value, &val8) != 0) { 148 assert(kv->kv_regno == regno); 151 regno, value); 158 regno, value); 527 regtostr(int cpuver, int regno, uint8_t bits) argument 531 if ((sname = __cpc_reg_to_name(cpuver, regno, bits)) != NULL)
|
/osnet-11/usr/src/lib/libcpc/sparc/ |
H A D | conf_ultra.c | 402 validargs(int cpuver, int regno) argument 404 if (regno < 0 || regno > 1) 415 versionmatch(int cpuver, int regno, const struct nametable *n) argument 417 if (!validargs(cpuver, regno) || n->ver != MAPCPUVER(cpuver)) 423 getnametable(int cpuver, int regno) argument 427 if (!validargs(cpuver, regno)) 432 n = US12_names[regno]; 435 n = US3_names[regno]; 438 n = US3_PLUS_names[regno]; 454 cpc_walk_names(int cpuver, int regno, void *arg, void (*action)(void *, int, const char *, uint8_t)) argument 467 __cpc_reg_to_name(int cpuver, int regno, uint8_t bits) argument 483 __cpc_name_to_reg(int cpuver, int regno, const char *name, uint8_t *bits) argument [all...] |
H A D | event_ultra.c | 100 uint_t regno; local 102 regno = strcmp(kv->kv_token, "pic0") == 0 ? 0 : 1; 109 if (__cpc_name_to_reg(cpuver, regno, value, &val8) != 0) { 111 "event '%s' on this cpu\n"), regno, value); 339 regtostr(int cpuver, int regno, uint8_t bits) argument 343 if ((sname = __cpc_reg_to_name(cpuver, regno, bits)) != NULL)
|
/osnet-11/usr/src/lib/libproc/common/ |
H A D | Pcontrol.c | 1855 Pgetareg(struct ps_prochandle *P, int regno, prgreg_t *preg) argument 1857 if (regno < 0 || regno >= NPRGREG) { 1872 *preg = P->status.pr_lwp.pr_reg[regno]; 1880 Pputareg(struct ps_prochandle *P, int regno, prgreg_t reg) argument 1882 if (regno < 0 || regno >= NPRGREG) { 1892 P->status.pr_lwp.pr_reg[regno] = reg; 3388 Lgetareg(struct ps_lwphandle *L, int regno, prgreg_t *preg) argument 3390 if (regno < 3408 Lputareg(struct ps_lwphandle *L, int regno, prgreg_t reg) argument [all...] |