/* * Copyright (c) 2008, XenSource Inc. * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are met: * * Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * Neither the name of XenSource Inc. nor the names of its contributors * may be used to endorse or promote products derived from this software * without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef __TAP_PROFILE_H__ #define __TAP_PROFILE_H__ #ifndef _GNU_SOURCE #define _GNU_SOURCE #endif #include #include #include #include #include #include #include #include #include //#define PROFILING //#define LOGGING #define TAPPROF_IN 1 #define TAPPROF_OUT 2 struct profile_times { char *fn_name; uint64_t in, out_sum, cnt; }; struct profile_info { FILE *log; int size; char *name; unsigned long long seq; struct profile_times *pt; }; #ifdef PROFILING static inline void tp_open(struct profile_info *prof, char *tap_name, char *log_name, int size) { memset(prof, 0, sizeof(struct profile_info)); #ifdef LOGGING prof->log = fopen(log_name, "w"); #endif prof->size = size; prof->name = strdup(tap_name); prof->pt = malloc(sizeof(struct profile_times) * prof->size); if (prof->pt) memset(prof->pt, 0, sizeof(struct profile_times) * prof->size); } static inline void tp_close(struct profile_info *prof) { int i; struct profile_times *pt; for (i = 0; i < prof->size; i++) { pt = &prof->pt[i]; if (pt->fn_name) { syslog(LOG_DEBUG, "%s: %s: cnt: %llu, avg time: %llu\n", prof->name, pt->fn_name, pt->cnt, ((pt->cnt) ? (pt->out_sum / pt->cnt) : 0)); free(pt->fn_name); } } #ifdef LOGGING if (prof->log) fclose(prof->log); #endif free(prof->name); if (prof->pt) free(prof->pt); } static inline u64 tp_get_id(struct profile_info *prof) { return prof->seq++; } static inline int tp_fn_id(struct profile_info *prof, const char *name) { int i; struct profile_times *pt; for (i = 0; i < prof->size; i++) { pt = &prof->pt[i]; if (!pt->fn_name) return i; if (!strcmp(pt->fn_name, name)) return i; } return prof->size - 1; } static inline void __tp_in(struct profile_info *prof, const char *func) { long long _time; int idx = tp_fn_id(prof, func); struct profile_times *pt = &prof->pt[idx]; if (!pt->fn_name) pt->fn_name = strdup(func); asm volatile(".byte 0x0f, 0x31" : "=A" (_time)); pt->in = _time; } #define tp_in(prof) __tp_in(prof, __func__) static inline void __tp_out(struct profile_info *prof, const char *func) { long long _time; int idx = tp_fn_id(prof, func); struct profile_times *pt = &prof->pt[idx]; if (!pt->fn_name || !pt->in) return; asm volatile(".byte 0x0f, 0x31" : "=A" (_time)); pt->cnt++; pt->out_sum += (_time - pt->in); pt->in = 0; } #define tp_out(prof) __tp_out(prof, __func__) static inline void __tp_log(struct profile_info *prof, u64 id, const char *func, int direction) { long long _time; asm volatile(".byte 0x0f, 0x31" : "=A" (_time)); if (direction == TAPPROF_IN) __tp_in(prof, func); else __tp_out(prof, func); #ifdef LOGGING if (prof->log) fprintf(prof->log, "%s: %s: %llu, %lld\n", func, ((direction == TAPPROF_IN) ? "in" : "out"), id, _time); #endif } #define tp_log(prof, id, direction) __tp_log(prof, id, __func__, direction) #else #define tp_open(prof, tname, lname, size) ((void)0) #define tp_close(prof) ((void)0) #define tp_in(prof) ((void)0) #define tp_out(prof) ((void)0) #define tp_log(prof, sec, direction) ((void)0) #endif #endif