• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.5.8/xnu-1228.15.4/osfmk/ppc/

Lines Matching refs:space

271  *		dm vaddr [space] (defaults to last entered) 
283 if (db_expression(&xspace)) { /* Get the address space requested */
285 db_printf("requested address space (%llX) larger than max (%X)\n", xspace, maxAdrSp - 1);
288 dvspace = xspace; /* Get the space or set default */
291 db_printf("mapping information for %016llX in space %8X:\n", addr, dvspace);
295 db_printf("The space %X is not assigned to a pmap\n", dvspace); /* Say we are wrong */
321 * dh vaddr [space] (defaults to last entered)
337 if (db_expression(&xspace)) { /* Get the address space requested */
339 db_printf("requested address space (%llX) larger than max (%X)\n", xspace, maxAdrSp - 1);
342 dvspace = xspace; /* Get the space or set default */
347 db_printf("The space %X is not assigned to a pmap\n", dvspace); /* Say we are wrong */
351 hash = (uint64_t)pmap->space | ((uint64_t)pmap->space << maxAdrSpb) | ((uint64_t)pmap->space << (2 * maxAdrSpb)); /* Get hash value */
388 pmap->space, pmap->pmapFlags, pmap->ref_count, pmap->spaceNum,
502 unsigned int xpteg[32], xpca[8], space, hash, pva, seg, api, va;
528 space = (xpteg[i] >> 7) & (maxAdrSp - 1); /* Extract the space */
529 hash = space | (space << maxAdrSpb) | (space << (2 * maxAdrSpb)); /* Get the hash */
548 space = (llslot >> 12) & (maxAdrSp - 1); /* Extract the space */
549 llhash = (unsigned long long)space | ((unsigned long long)space << maxAdrSpb) | ((unsigned long long)space << (2 * maxAdrSpb)); /* Get the hash */
565 * dv [entaddr] [space]
582 if (db_expression(&xspace)) { /* Parse the space ID */
583 if(xspace >= (1 << maxAdrSpb)) { /* Check if they gave us a sane space number */
584 db_printf("Invalid space ID: %llX - max is %X\n", xspace, (1 << maxAdrSpb) - 1);
587 dvspace = xspace; /* Get the space or set default */
592 db_printf("Address space not found: %X\n", dvspace); /* Complain */
604 db_printf("Dumping %016llX (pmap = %08X, space = %X); ", addr, pmap, dvspace);
627 db_printf("Dumping %016llX (pmap = %08X, space = %X); ", addr, pmap, dvspace);
864 unsigned int xpteg[32], xpca[8], space, hash, pva, seg, api, va, free, free2, xauto, PTEGcnt, wimgkk, wimgxx, slotoff;
939 space = (xpteg[slot] >> 7) & (maxAdrSp - 1); /* Extract the space */
940 hash = space | (space << maxAdrSpb) | (space << (2 * maxAdrSpb)); /* Get the hash */
952 space = (llslot >> 12) & (maxAdrSp - 1); /* Extract the space */
953 llhash = (unsigned long long)space | ((unsigned long long)space << maxAdrSpb) | ((unsigned long long)space << (2 * maxAdrSpb)); /* Get the hash */
964 pmap = pmapTrans[space].pmapVAddr; /* Find the pmap address */
966 db_printf("The space %08X is not assigned to a pmap, slot = %d\n", space, slot); /* Say we are wrong */