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

Lines Matching defs:replace

397     uint32_t	*ptr, search_mask, search, replace_mask, replace;
404 replace_mask = 0xFFFFFFFF; // replace all bits...
405 replace = 0x60000000; // ...with a NOP
407 commpage_change(ptr,length,search_mask,search,replace_mask,replace,NULL);
420 uint32_t *ptr, search_mask, search, replace_mask, replace;
427 replace_mask = 0xFFFFFFFF; // replace all bits...
428 replace = 0x60000000; // ...with a NOP
430 commpage_change(ptr,length,search_mask,search,replace_mask,replace,NULL);
443 uint32_t *ptr, search_mask, search, replace_mask, replace;
450 replace_mask = 0xFFFFFFFF; // replace all bits...
451 replace = 0x60000000; // ...with a NOP
453 commpage_change(ptr,length,search_mask,search,replace_mask,replace,NULL);
469 uint32_t *ptr, search_mask, search, replace_mask, replace;
476 replace_mask = 0x00100000; // replace bit 11...
477 replace = 0x00100000; // ...with a 1-bit
479 commpage_change(ptr,length,search_mask,search,replace_mask,replace,commpage_onebit);
496 uint32_t *ptr, search_mask, search, replace_mask, replace;
502 replace_mask = 0x00200000; // replace bit 10 (L)...
503 replace = 0x00200000; // ...with a 1-bit, converting word to doubleword compares
504 commpage_change(ptr,length,search_mask,search,replace_mask,replace,NULL);
508 replace_mask = 0x00200000; // replace bit 10 (L)...
509 replace = 0x00200000; // ...with a 1-bit, converting word to doubleword compares
510 commpage_change(ptr,length,search_mask,search,replace_mask,replace,NULL);
514 replace_mask = 0x00200000; // replace bit 10 (L)...
515 replace = 0x00200000; // ...with a 1-bit, converting word to doubleword compares
516 commpage_change(ptr,length,search_mask,search,replace_mask,replace,NULL);
520 replace_mask = 0x00200000; // replace bit 10 (L)...
521 replace = 0x00200000; // ...with a 1-bit, converting word to doubleword compares
522 commpage_change(ptr,length,search_mask,search,replace_mask,replace,NULL);
526 replace_mask = 0xFC00003E; // then replace RLWINM's opcode and ME field to make a RLDICL
527 replace = 0x78000002; // opcode is 30, ME is 0, except we add 32 to SH amount
528 commpage_change(ptr,length,search_mask,search,replace_mask,replace,commpage_srwi);