OpenCores
URL https://opencores.org/ocsvn/openrisc_2011-10-31/openrisc_2011-10-31/trunk

Subversion Repositories openrisc_2011-10-31

[/] [openrisc/] [tags/] [gnu-src/] [newlib-1.18.0/] [newlib-1.18.0-or32-1.0rc1/] [libgloss/] [i386/] [cygmon-gmon.h] - Blame information for rev 345

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 207 jeremybenn
#ifndef GMON_CYGMON_H
2
#define GMON_CYGMON_H
3
 
4
struct phdr
5
{
6
  char    *lpc;
7
  char    *hpc;
8
  int     ncnt;
9
};
10
 
11
 
12
#define HISTFRACTION 2
13
#define HISTCOUNTER unsigned short
14
#define HASHFRACTION 1
15
#define ARCDENSITY 2
16
#define MINARCS 50
17
 
18
struct tostruct
19
{
20
  char *selfpc;
21
  long count;
22
  unsigned short link;
23
};
24
 
25
struct rawarc
26
{
27
    unsigned long       raw_frompc;
28
    unsigned long       raw_selfpc;
29
    long                raw_count;
30
};
31
 
32
#define ROUNDDOWN(x,y)  (((x)/(y))*(y))
33
#define ROUNDUP(x,y)    ((((x)+(y)-1)/(y))*(y))
34
 
35
#endif

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.