Blame src/libpfm-3.y/lib/pfmlib_sicortex_priv.h

Packit 577717
/*
Packit 577717
 * Contributed by Philip Mucci <mucci@cs.utk.edu> based on code from
Packit 577717
 * Copyright (c) 2004-2006 Hewlett-Packard Development Company, L.P.
Packit 577717
 * Contributed by Stephane Eranian <eranian@hpl.hp.com>
Packit 577717
 *
Packit 577717
 * Permission is hereby granted, free of charge, to any person obtaining a copy
Packit 577717
 * of this software and associated documentation files (the "Software"), to deal
Packit 577717
 * in the Software without restriction, including without limitation the rights
Packit 577717
 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
Packit 577717
 * of the Software, and to permit persons to whom the Software is furnished to do so,
Packit 577717
 * subject to the following conditions:
Packit 577717
 *
Packit 577717
 * The above copyright notice and this permission notice shall be included in all
Packit 577717
 * copies or substantial portions of the Software.
Packit 577717
 *
Packit 577717
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
Packit 577717
 * INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A
Packit 577717
 * PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT
Packit 577717
 * HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
Packit 577717
 * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE
Packit 577717
 * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
Packit 577717
 *
Packit 577717
 * This file is part of libpfm, a performance monitoring support library for
Packit 577717
 * applications on Linux/ia64.
Packit 577717
 */
Packit 577717
#ifndef __PFMLIB_SICORTEX_PRIV_H__
Packit 577717
#define __PFMLIB_SICORTEX_PRIV_H__
Packit 577717
#include "pfmlib_gen_mips64_priv.h"
Packit 577717
Packit 577717
#define PFMLIB_SICORTEX_MAX_UMASK 5
Packit 577717
Packit 577717
typedef struct {
Packit 577717
	char			*pme_uname; /* unit mask name */
Packit 577717
	char			*pme_udesc; /* event/umask description */
Packit 577717
	unsigned int		pme_ucode;  /* unit mask code */
Packit 577717
} pme_sicortex_umask_t;
Packit 577717
Packit 577717
typedef struct {
Packit 577717
	char			*pme_name;
Packit 577717
	char			*pme_desc; /* text description of the event */
Packit 577717
	unsigned int		pme_code;  /* event mask, holds room for four events, low 8 bits cntr0, ... high 8 bits cntr3 */
Packit 577717
	unsigned int		pme_counters;   /* Which counter event lives on */
Packit 577717
	unsigned int		pme_numasks;	/* number of umasks */
Packit 577717
	pme_sicortex_umask_t pme_umasks[PFMLIB_SICORTEX_MAX_UMASK]; /* umask desc */
Packit 577717
} pme_sicortex_entry_t;
Packit 577717
  
Packit 577717
static pme_sicortex_umask_t sicortex_scb_umasks[PFMLIB_SICORTEX_MAX_UMASK] = {
Packit 577717
  {
Packit 577717
    "IFOTHER_NONE","Both buckets count independently",0x00
Packit 577717
  },
Packit 577717
  {
Packit 577717
    "IFOTHER_AND","Increment where this event counts and the opposite bucket counts",0x02
Packit 577717
  },
Packit 577717
  {
Packit 577717
    "IFOTHER_ANDNOT","Increment where this event counts and the opposite bucket does not",0x04
Packit 577717
  },
Packit 577717
  {
Packit 577717
    "HIST_NONE","Count cycles where the event is asserted",0x0
Packit 577717
  },
Packit 577717
  {
Packit 577717
    "HIST_EDGE","Histogram on edges of the specified event",0x1
Packit 577717
  }
Packit 577717
};
Packit 577717
#endif /* __PFMLIB_GEN_MIPS64_PRIV_H__ */