xref: /xnu-10002.1.13/bsd/dev/dtrace/scripts/vm_object_ownership.d (revision 1031c584a5e37aff177559b9f69dbd3c8c3fd30a)
1*1031c584SApple OSS Distributions #!/usr/sbin/dtrace -s
2*1031c584SApple OSS Distributions 
3*1031c584SApple OSS Distributions vminfo:::object_ownership_change
4*1031c584SApple OSS Distributions {
5*1031c584SApple OSS Distributions 	old_owner = (task_t)arg1;
6*1031c584SApple OSS Distributions 	if (old_owner == 0) {
7*1031c584SApple OSS Distributions 		old_pid = -1;
8*1031c584SApple OSS Distributions 		old_name = "(nil)";
9*1031c584SApple OSS Distributions 	} else {
10*1031c584SApple OSS Distributions 		old_proc = xlate <psinfo_t *>((proc_t)old_owner->t_tro->tro_proc);
11*1031c584SApple OSS Distributions 		old_pid = old_proc->pr_pid;
12*1031c584SApple OSS Distributions 		old_name = old_proc->pr_fname;
13*1031c584SApple OSS Distributions 	}
14*1031c584SApple OSS Distributions 	new_owner = (task_t)arg4;
15*1031c584SApple OSS Distributions 	if (new_owner == 0) {
16*1031c584SApple OSS Distributions 		new_pid = -1;
17*1031c584SApple OSS Distributions 		new_name = "(nil)";
18*1031c584SApple OSS Distributions 	} else {
19*1031c584SApple OSS Distributions 		new_proc = xlate <psinfo_t *>((proc_t)new_owner->t_tro->tro_proc);
20*1031c584SApple OSS Distributions 		new_pid = new_proc->pr_pid;
21*1031c584SApple OSS Distributions 		new_name = new_proc->pr_fname;
22*1031c584SApple OSS Distributions 	}
23*1031c584SApple OSS Distributions 
24*1031c584SApple OSS Distributions 	printf("%d[%s] object 0x%p id 0x%x purgeable:%d owner:0x%p (%d[%s]) tag:%d nofootprint:%d -> owner:0x%p (%d[%s]) tag:%d nofootprint:%d",
25*1031c584SApple OSS Distributions 	       pid, execname, arg0, arg7, ((vm_object_t)arg0)->purgable,
26*1031c584SApple OSS Distributions 	       old_owner, old_pid, old_name,
27*1031c584SApple OSS Distributions 	       arg2, arg3,
28*1031c584SApple OSS Distributions 	       new_owner, new_pid, new_name,
29*1031c584SApple OSS Distributions 	       arg5, arg6);
30*1031c584SApple OSS Distributions 	stack();
31*1031c584SApple OSS Distributions 	ustack();
32*1031c584SApple OSS Distributions }
33