1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright (c) 1998 by Sun Microsystems, Inc. 24*7c478bd9Sstevel@tonic-gate * All rights reserved. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #ifndef _MONV_H 28*7c478bd9Sstevel@tonic-gate #define _MONV_H 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 31*7c478bd9Sstevel@tonic-gate 32*7c478bd9Sstevel@tonic-gate /* 33*7c478bd9Sstevel@tonic-gate * Versioned monitor file 34*7c478bd9Sstevel@tonic-gate * 35*7c478bd9Sstevel@tonic-gate * Since this is not really a *shared* file between the compilers and OS 36*7c478bd9Sstevel@tonic-gate * (each hold a separate copy), care must be taken to see that it is in 37*7c478bd9Sstevel@tonic-gate * in sync with the compiler version. 38*7c478bd9Sstevel@tonic-gate */ 39*7c478bd9Sstevel@tonic-gate 40*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 41*7c478bd9Sstevel@tonic-gate extern "C" { 42*7c478bd9Sstevel@tonic-gate #endif 43*7c478bd9Sstevel@tonic-gate 44*7c478bd9Sstevel@tonic-gate /* 45*7c478bd9Sstevel@tonic-gate * General object structure 46*7c478bd9Sstevel@tonic-gate */ 47*7c478bd9Sstevel@tonic-gate #ifndef PROF_TYPES_PREDEFINED 48*7c478bd9Sstevel@tonic-gate typedef unsigned long long Index; 49*7c478bd9Sstevel@tonic-gate typedef unsigned long long Address; 50*7c478bd9Sstevel@tonic-gate typedef unsigned long long Size; 51*7c478bd9Sstevel@tonic-gate #endif 52*7c478bd9Sstevel@tonic-gate 53*7c478bd9Sstevel@tonic-gate typedef struct _prof_object { 54*7c478bd9Sstevel@tonic-gate unsigned int type; 55*7c478bd9Sstevel@tonic-gate unsigned int version; 56*7c478bd9Sstevel@tonic-gate Size size; 57*7c478bd9Sstevel@tonic-gate } ProfObject; 58*7c478bd9Sstevel@tonic-gate 59*7c478bd9Sstevel@tonic-gate 60*7c478bd9Sstevel@tonic-gate #define PROF_MAGIC 0x50524F46 /* "PROF" */ 61*7c478bd9Sstevel@tonic-gate #define PROF_MAJOR_VERSION 1 62*7c478bd9Sstevel@tonic-gate #define PROF_MINOR_VERSION 0 63*7c478bd9Sstevel@tonic-gate 64*7c478bd9Sstevel@tonic-gate typedef struct _prof_header { 65*7c478bd9Sstevel@tonic-gate unsigned int h_magic; 66*7c478bd9Sstevel@tonic-gate unsigned short h_major_ver; 67*7c478bd9Sstevel@tonic-gate unsigned short h_minor_ver; 68*7c478bd9Sstevel@tonic-gate Size size; 69*7c478bd9Sstevel@tonic-gate } ProfHeader; 70*7c478bd9Sstevel@tonic-gate 71*7c478bd9Sstevel@tonic-gate /* 72*7c478bd9Sstevel@tonic-gate * Object types 73*7c478bd9Sstevel@tonic-gate */ 74*7c478bd9Sstevel@tonic-gate #define PROF_DUMMY_T -1 /* to be ignored by gprof */ 75*7c478bd9Sstevel@tonic-gate #define PROF_BUFFER_T 1 76*7c478bd9Sstevel@tonic-gate #define PROF_CALLGRAPH_T 2 77*7c478bd9Sstevel@tonic-gate #define PROF_MODULES_T 3 78*7c478bd9Sstevel@tonic-gate 79*7c478bd9Sstevel@tonic-gate /* 80*7c478bd9Sstevel@tonic-gate * Object version numbers 81*7c478bd9Sstevel@tonic-gate */ 82*7c478bd9Sstevel@tonic-gate #define PROF_BUFFER_VER 1 83*7c478bd9Sstevel@tonic-gate #define PROF_CALLGRAPH_VER 1 84*7c478bd9Sstevel@tonic-gate #define PROF_MODULES_VER 1 85*7c478bd9Sstevel@tonic-gate 86*7c478bd9Sstevel@tonic-gate /* 87*7c478bd9Sstevel@tonic-gate * Actual number of pcsample elements that can be held in 1Mb with 88*7c478bd9Sstevel@tonic-gate * the size of (Address) equal to 8 89*7c478bd9Sstevel@tonic-gate */ 90*7c478bd9Sstevel@tonic-gate #define PROF_BUFFER_SIZE 131072 /* 1 Mb */ 91*7c478bd9Sstevel@tonic-gate 92*7c478bd9Sstevel@tonic-gate typedef struct _prof_buffer { 93*7c478bd9Sstevel@tonic-gate unsigned int type; /* PROF_BUFFER_T */ 94*7c478bd9Sstevel@tonic-gate unsigned int version; /* 1 */ 95*7c478bd9Sstevel@tonic-gate Size size; 96*7c478bd9Sstevel@tonic-gate Index buffer; 97*7c478bd9Sstevel@tonic-gate Size bufsize; 98*7c478bd9Sstevel@tonic-gate } ProfBuffer; 99*7c478bd9Sstevel@tonic-gate 100*7c478bd9Sstevel@tonic-gate typedef struct _prof_call_graph { 101*7c478bd9Sstevel@tonic-gate unsigned int type; /* PROF_CALLGRAPH_T */ 102*7c478bd9Sstevel@tonic-gate unsigned int version; /* 1 */ 103*7c478bd9Sstevel@tonic-gate Size size; 104*7c478bd9Sstevel@tonic-gate Index functions; 105*7c478bd9Sstevel@tonic-gate } ProfCallGraph; 106*7c478bd9Sstevel@tonic-gate 107*7c478bd9Sstevel@tonic-gate typedef struct _prof_module_list { 108*7c478bd9Sstevel@tonic-gate unsigned int type; /* PROF_MODULES_T */ 109*7c478bd9Sstevel@tonic-gate unsigned int version; /* 1 */ 110*7c478bd9Sstevel@tonic-gate Size size; 111*7c478bd9Sstevel@tonic-gate Index modules; 112*7c478bd9Sstevel@tonic-gate } ProfModuleList; 113*7c478bd9Sstevel@tonic-gate 114*7c478bd9Sstevel@tonic-gate typedef struct _prof_module { 115*7c478bd9Sstevel@tonic-gate Index next; 116*7c478bd9Sstevel@tonic-gate Index path; 117*7c478bd9Sstevel@tonic-gate Address startaddr; 118*7c478bd9Sstevel@tonic-gate Address endaddr; 119*7c478bd9Sstevel@tonic-gate } ProfModule; 120*7c478bd9Sstevel@tonic-gate 121*7c478bd9Sstevel@tonic-gate typedef struct _prof_function { 122*7c478bd9Sstevel@tonic-gate Index next_to; 123*7c478bd9Sstevel@tonic-gate Index next_from; 124*7c478bd9Sstevel@tonic-gate Address frompc; 125*7c478bd9Sstevel@tonic-gate Address topc; 126*7c478bd9Sstevel@tonic-gate unsigned long long count; 127*7c478bd9Sstevel@tonic-gate Index next_hash; 128*7c478bd9Sstevel@tonic-gate } ProfFunction; 129*7c478bd9Sstevel@tonic-gate 130*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 131*7c478bd9Sstevel@tonic-gate } 132*7c478bd9Sstevel@tonic-gate #endif 133*7c478bd9Sstevel@tonic-gate 134*7c478bd9Sstevel@tonic-gate #endif /* _MONV_H */ 135