Lines Matching defs:machcpu
187 * The cpu structure grows, with the addition of a machcpu member, if
194 * by adding a cpu_m member. If machcpu hasn't been defined in our module,
201 tdesc_t *machcpu;
251 if ((machcpu = lookup_tdesc(td, "machcpu")) == NULL) {
252 machcpu = xcalloc(sizeof (*machcpu));
253 machcpu->t_name = xstrdup("machcpu");
254 machcpu->t_id = td->td_nextid++;
255 machcpu->t_type = FORWARD;
256 } else if (machcpu->t_type != STRUCT) {
260 debug(3, "Adding cpu_m machcpu %s to cpu struct\n",
261 (machcpu->t_type == FORWARD ? "forward" : "struct"));
267 cpum->ml_type = machcpu;