2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
20 * @APPLE_LICENSE_HEADER_END@
23 * @OSF_COPYRIGHT_INTERNAL_USE_ONLY@
29 Handle things that should are related to the hardware performance monitor
31 Lovingly crafted by Bill Angell using traditional methods and only natural or recycled materials.
32 No more than 7500 chinchillas were killed in the production of the code.
37 #include <ppc/proc_reg.h>
38 #include <ppc/exception.h>
39 #include <ppc/Performance.h>
40 #include <mach/machine/vm_param.h>
45 * This routine is used to interface to the performance monitor
48 ENTRY(PerfCtl, TAG_NO_FRAME_USED)
50 lis r0,PerfCtlCall@h /* Get the top part of the SC number */
51 ori r0,r0,PerfCtlCall@l /* and the bottom part */
53 blr /* Bye bye, Birdie... */
56 ENTRY(PerfCtlLL, TAG_NO_FRAME_USED)
58 cmplwi r3,maxPerf /* See if we are within range */
59 mflr r11 /* Get the return point */
60 li r3,0 /* Show failure */
61 bgelrl- /* Load up current address and, also, leave if out of range */
62 prfBase: mflr r12 /* Get our address */
63 rlwinm r10,r3,2,0,31 /* Get displacement into branch table */
64 addi r12,r12,prfBrnch-prfBase /* Point to the branch address */
65 add r12,r12,r10 /* Point to the branch */
66 mtlr r12 /* Get it in the link register */
67 blr /* Vector to the specific performance command... */
69 prfBrnch: b prfClear /* Clear the histogram table */
70 b prfStart /* Start the performance monitor */
71 b prfStop /* Stop the performance monitor */
72 b prfMap /* Map the histogram into an address space */
73 .equ maxPerf, (.-prfBrnch)/4 /* Set the highest valid address */
76 * Clear the monitor histogram
79 li r4,PMIhist@l /* We know this to be in page 0, so no need for the high part */
80 lis r8,PMIHIST_SIZE@h /* Get high half of the table size */
81 lwz r4,0(r4) /* Get the real address of the histgram */
82 ori r8,r8,PMIHIST_SIZE@l /* Get the low half of the table size */
83 li r6,32 /* Get a displacement */
84 li r3,1 /* Set up a good return code */
85 mtlr r11 /* Restore the return address */
87 clrloop: subi r8,r8,32 /* Back off a cache line */
88 dcbz 0,r4 /* Do the even line */
89 sub. r8,r8,r6 /* Back off a second time (we only do this to generate a CR */
90 dcbz r6,r4 /* Clear the even line */
91 addi r4,r4,64 /* Move up to every other line */
92 bgt+ clrloop /* Go until we've done it all... */
97 * Start the monitor histogram
100 mtlr r11 /* Restore the return address */
104 * Stop the monitor histogram
107 mtlr r11 /* Restore the return address */
111 * Maps the monitor histogram into another address space
114 mtlr r11 /* Restore the return address */