Searched refs:dtt (Results 1 - 16 of 16) sorted by relevance

/netbsd-current/external/cddl/osnet/dist/lib/libdtrace/common/
H A Ddt_decl.c513 dtrace_typeinfo_t dtt; local
533 if (dt_decl_type(ddp, &dtt) != 0)
541 if (dtt.dtt_ctfp == DT_DYN_CTFP(yypcb->pcb_hdl) &&
542 dtt.dtt_type == DT_DYN_TYPE(yypcb->pcb_hdl)) {
547 base = ctf_type_resolve(dtt.dtt_ctfp, dtt.dtt_type);
548 kind = ctf_type_kind(dtt.dtt_ctfp, base);
549 size = ctf_type_size(dtt.dtt_ctfp, base);
554 "%s\n", dt_type_name(dtt.dtt_ctfp, dtt
[all...]
H A Ddt_provider.c246 dtrace_typeinfo_t dtt; local
328 adp->dtargd_native, &dtt) != 0) {
334 dtt.dtt_object = NULL;
335 dtt.dtt_ctfp = NULL;
336 dtt.dtt_type = CTF_ERR;
339 dtt.dtt_ctfp, dtt.dtt_type,
340 dtt.dtt_flags & DTT_FL_USER ? B_TRUE : B_FALSE);
343 if (dtt.dtt_type != CTF_ERR && (adp->dtargd_xlate[0] == '\0' ||
348 adp->dtargd_xlate, &dtt) !
630 dtrace_typeinfo_t dtt; local
[all...]
H A Ddt_parser.c1353 dtrace_typeinfo_t dtt; local
1365 err = dt_decl_type(ddp, &dtt);
1377 dt_node_type_assign(dnp, dtt.dtt_ctfp, dtt.dtt_type, dtt.dtt_flags);
1379 if (dtt.dtt_ctfp == dtp->dt_cdefs->dm_ctfp ||
1380 dtt.dtt_ctfp == dtp->dt_ddefs->dm_ctfp)
1421 dtrace_typeinfo_t dtt; local
1427 if (dt_decl_type(ddp, &dtt) != 0)
1464 if (ctf_type_kind(dtt
1799 dtrace_typeinfo_t dtt; local
2236 dtrace_typeinfo_t dtt; local
2424 dtrace_typeinfo_t dtt; local
2744 dtrace_typeinfo_t dtt; local
2922 dtrace_typeinfo_t dtt; local
3738 dtrace_typeinfo_t dtt; local
[all...]
H A Ddt_ident.c186 dtrace_typeinfo_t dtt; local
237 if (dt_type_lookup(s, &dtt) == -1) {
247 idp->di_ctfp = dtt.dtt_ctfp;
248 idp->di_type = dtt.dtt_type;
302 if (dt_type_lookup(p1, &dtt) == -1) {
309 dtt.dtt_ctfp, dtt.dtt_type, B_FALSE);
443 dtrace_typeinfo_t dtt; local
465 if (dt_type_lookup("uint64_t", &dtt) == -1) {
470 idp->di_ctfp = dtt
482 dtrace_typeinfo_t dtt; local
[all...]
H A Ddt_printf.c752 dtrace_typeinfo_t dtt; local
766 dtt.dtt_ctfp = NULL;
767 dtt.dtt_type = CTF_ERR;
775 dtp, DTRACE_OBJ_DDEFS, pfc->pfc_tstr, &dtt) != 0) {
780 pfc->pfc_dctfp = dtt.dtt_ctfp;
781 pfc->pfc_dtype = dtt.dtt_type;
789 dtp, DTRACE_OBJ_CDEFS, pfc->pfc_tstr, &dtt) == 0) {
790 pfc->pfc_cctfp = dtt.dtt_ctfp;
791 pfc->pfc_ctype = dtt.dtt_type;
1075 dtrace_typeinfo_t dtt; local
[all...]
H A Ddt_cg.c75 dtrace_typeinfo_t dtt; local
78 dt_type_lookup(n, &dtt) == -1 || (
79 dtt.dtt_ctfp == fp && dtt.dtt_type == type))
82 fp = dtt.dtt_ctfp;
83 type = ctf_type_resolve(fp, dtt.dtt_type);
H A Ddt_open.c1062 dtrace_typeinfo_t dtt; local
1612 dtp->dt_ints[i].did_name, &dtt) != 0) {
1618 dtp->dt_ints[i].did_ctfp = dtt.dtt_ctfp;
1619 dtp->dt_ints[i].did_type = dtt.dtt_type;
H A Ddt_cc.c2599 dtrace_type_strcompile(dtrace_hdl_t *dtp, const char *s, dtrace_typeinfo_t *dtt) argument
2602 DTRACE_PROBESPEC_NONE, dtt, 0, 0, NULL, NULL, s);
2607 dtrace_type_fcompile(dtrace_hdl_t *dtp, FILE *fp, dtrace_typeinfo_t *dtt) argument
2610 DTRACE_PROBESPEC_NONE, dtt, 0, 0, NULL, fp, NULL);
/netbsd-current/external/gpl3/gdb.old/dist/sim/frv/
H A Dinterrupts.c370 frv_queue_division_exception_interrupt (SIM_CPU *current_cpu, enum frv_dtt dtt) argument
375 new_element->u.dtt = dtt;
791 int dtt = GET_ISR_DTT (isr); local
792 dtt |= item->u.dtt;
793 SET_ISR_DTT (isr, dtt);
H A Dtraps.c640 frvbf_division_exception (SIM_CPU *current_cpu, enum frv_dtt dtt,
646 if ((dtt & FRV_DTT_OVERFLOW) && GET_ISR_EDE (isr))
648 dtt &= ~FRV_DTT_OVERFLOW;
652 if (dtt != FRV_DTT_NO_EXCEPTION)
664 frv_queue_division_exception_interrupt (current_cpu, dtt);
666 return dtt;
638 frvbf_division_exception(SIM_CPU *current_cpu, enum frv_dtt dtt, int target_index, int non_excepting) argument
H A Dfrv.c954 enum frv_dtt dtt = FRV_DTT_NO_EXCEPTION;
961 dtt = FRV_DTT_OVERFLOW;
973 dtt = FRV_DTT_DIVISION_BY_ZERO;
979 if (dtt != FRV_DTT_NO_EXCEPTION)
980 dtt = frvbf_division_exception (current_cpu, dtt, target_index,
982 if (non_excepting && dtt == FRV_DTT_NO_EXCEPTION)
935 enum frv_dtt dtt = FRV_DTT_NO_EXCEPTION; local
H A Dfrv-sim.h366 enum frv_dtt dtt; /* division exception code */
428 #define SET_ISR_DTT(isr, dtt) ( \
429 (isr) = ((isr) & ~(0x3 << 3)) | (((dtt) & 0x3) << 3) \
364 enum frv_dtt dtt; /* division exception code */ member in union:frv_interrupt_queue_element::__anon2717
/netbsd-current/external/gpl3/gdb/dist/sim/frv/
H A Dinterrupts.c376 frv_queue_division_exception_interrupt (SIM_CPU *current_cpu, enum frv_dtt dtt) argument
381 new_element->u.dtt = dtt;
797 int dtt = GET_ISR_DTT (isr); local
798 dtt |= item->u.dtt;
799 SET_ISR_DTT (isr, dtt);
H A Dtraps.c647 frvbf_division_exception (SIM_CPU *current_cpu, enum frv_dtt dtt,
653 if ((dtt & FRV_DTT_OVERFLOW) && GET_ISR_EDE (isr))
655 dtt &= ~FRV_DTT_OVERFLOW;
659 if (dtt != FRV_DTT_NO_EXCEPTION)
671 frv_queue_division_exception_interrupt (current_cpu, dtt);
673 return dtt;
645 frvbf_division_exception(SIM_CPU *current_cpu, enum frv_dtt dtt, int target_index, int non_excepting) argument
H A Dfrv.c958 enum frv_dtt dtt = FRV_DTT_NO_EXCEPTION;
965 dtt = FRV_DTT_OVERFLOW;
977 dtt = FRV_DTT_DIVISION_BY_ZERO;
983 if (dtt != FRV_DTT_NO_EXCEPTION)
984 dtt = frvbf_division_exception (current_cpu, dtt, target_index,
986 if (non_excepting && dtt == FRV_DTT_NO_EXCEPTION)
939 enum frv_dtt dtt = FRV_DTT_NO_EXCEPTION; local
H A Dfrv-sim.h366 enum frv_dtt dtt; /* division exception code */
428 #define SET_ISR_DTT(isr, dtt) ( \
429 (isr) = ((isr) & ~(0x3 << 3)) | (((dtt) & 0x3) << 3) \
364 enum frv_dtt dtt; /* division exception code */ member in union:frv_interrupt_queue_element::__anon2165

Completed in 174 milliseconds