OpenCores
URL https://opencores.org/ocsvn/openrisc_me/openrisc_me/trunk

Subversion Repositories openrisc_me

[/] [openrisc/] [trunk/] [rtos/] [rtems/] [c/] [src/] [lib/] [libbsp/] [powerpc/] [score603e/] [include/] [coverhd.h] - Blame information for rev 173

Details | Compare with Previous | View Log

Line No. Rev Author Line
1 30 unneback
/*  coverhd.h
2
 *
3
 *  This include file has defines to represent the overhead associated
4
 *  with calling a particular directive from C.  These are used in the
5
 *  Timing Test Suite to ignore the overhead required to pass arguments
6
 *  to directives.  On some CPUs and/or target boards, this overhead
7
 *  is significant and makes it difficult to distinguish internal
8
 *  RTEMS execution time from that used to call the directive.
9
 *  This file should be updated after running the C overhead timing
10
 *  test.  Once this update has been performed, the RTEMS Time Test
11
 *  Suite should be rebuilt to account for these overhead times in the
12
 *  timing results.
13
 *
14
 *  NOTE:  If these are all zero, then the times reported include
15
 *         calling overhead including passing of arguments.
16
 *
17
 *
18
 *  COPYRIGHT (c) 1989-1997.
19
 *  On-Line Applications Research Corporation (OAR).
20
 *  Copyright assigned to U.S. Government, 1994.
21
 *
22
 *  The license and distribution terms for this file may in
23
 *  the file LICENSE in this distribution or at
24
 *  http://www.OARcorp.com/rtems/license.html.
25
 *
26
 *  $Id: coverhd.h,v 1.2 2001-09-27 12:01:03 chris Exp $
27
 */
28
 
29
/*
30
 *  These are set to 0 for now.
31
 *
32
 *  Units are 100ns.
33
 *
34
 *  These numbers are of questionable use, as they are developed by calling
35
 *  the routine many times, thus getting its entry veneer into the (small)
36
 *  cache on the 403GA.  This in general is not true of the RTEMS timing
37
 *  tests, which usually call a routine only once, thus having no cache loaded
38
 *  advantage.
39
 *
40
 *  Whether the directive times are useful after deducting the function call
41
 *  overhead is also questionable.  The user is more interested generally
42
 *  in the total cost of a directive, not the cost if the procedure call
43
 *  is inlined!  (In general this is not true).
44
 *
45
 *  Andrew Bray 18/08/1995
46
 *
47
 */
48
 
49
#ifndef __COVERHD_h
50
#define __COVERHD_h
51
 
52
#ifdef __cplusplus
53
extern "C" {
54
#endif
55
 
56
#define CALLING_OVERHEAD_INITIALIZE_EXECUTIVE      0
57
#define CALLING_OVERHEAD_SHUTDOWN_EXECUTIVE        0
58
#define CALLING_OVERHEAD_TASK_CREATE               0
59
#define CALLING_OVERHEAD_TASK_IDENT                0
60
#define CALLING_OVERHEAD_TASK_START                0
61
#define CALLING_OVERHEAD_TASK_RESTART              0
62
#define CALLING_OVERHEAD_TASK_DELETE               0
63
#define CALLING_OVERHEAD_TASK_SUSPEND              0
64
#define CALLING_OVERHEAD_TASK_RESUME               0
65
#define CALLING_OVERHEAD_TASK_SET_PRIORITY         0
66
#define CALLING_OVERHEAD_TASK_MODE                 0
67
#define CALLING_OVERHEAD_TASK_GET_NOTE             0
68
#define CALLING_OVERHEAD_TASK_SET_NOTE             0
69
#define CALLING_OVERHEAD_TASK_WAKE_WHEN            0
70
#define CALLING_OVERHEAD_TASK_WAKE_AFTER           0
71
#define CALLING_OVERHEAD_INTERRUPT_CATCH           0
72
#define CALLING_OVERHEAD_CLOCK_GET                 0
73
#define CALLING_OVERHEAD_CLOCK_SET                 0
74
#define CALLING_OVERHEAD_CLOCK_TICK                0
75
 
76
#define CALLING_OVERHEAD_TIMER_CREATE              0
77
#define CALLING_OVERHEAD_TIMER_IDENT               0
78
#define CALLING_OVERHEAD_TIMER_DELETE              0
79
#define CALLING_OVERHEAD_TIMER_FIRE_AFTER          0
80
#define CALLING_OVERHEAD_TIMER_FIRE_WHEN           0
81
#define CALLING_OVERHEAD_TIMER_RESET               0
82
#define CALLING_OVERHEAD_TIMER_CANCEL              0
83
#define CALLING_OVERHEAD_SEMAPHORE_CREATE          0
84
#define CALLING_OVERHEAD_SEMAPHORE_IDENT           0
85
#define CALLING_OVERHEAD_SEMAPHORE_DELETE          0
86
#define CALLING_OVERHEAD_SEMAPHORE_OBTAIN          0 
87
#define CALLING_OVERHEAD_SEMAPHORE_RELEASE         0 
88
#define CALLING_OVERHEAD_MESSAGE_QUEUE_CREATE      0
89
#define CALLING_OVERHEAD_MESSAGE_QUEUE_IDENT       0
90
#define CALLING_OVERHEAD_MESSAGE_QUEUE_DELETE      0
91
#define CALLING_OVERHEAD_MESSAGE_QUEUE_SEND        0
92
#define CALLING_OVERHEAD_MESSAGE_QUEUE_URGENT      0
93
#define CALLING_OVERHEAD_MESSAGE_QUEUE_BROADCAST   0
94
#define CALLING_OVERHEAD_MESSAGE_QUEUE_RECEIVE     0
95
#define CALLING_OVERHEAD_MESSAGE_QUEUE_FLUSH       0
96
 
97
#define CALLING_OVERHEAD_EVENT_SEND                0
98
#define CALLING_OVERHEAD_EVENT_RECEIVE             0
99
#define CALLING_OVERHEAD_SIGNAL_CATCH              0
100
#define CALLING_OVERHEAD_SIGNAL_SEND               0
101
#define CALLING_OVERHEAD_PARTITION_CREATE          0
102
#define CALLING_OVERHEAD_PARTITION_IDENT           0
103
#define CALLING_OVERHEAD_PARTITION_DELETE          0
104
#define CALLING_OVERHEAD_PARTITION_GET_BUFFER      0
105
#define CALLING_OVERHEAD_PARTITION_RETURN_BUFFER   0
106
#define CALLING_OVERHEAD_REGION_CREATE             0
107
#define CALLING_OVERHEAD_REGION_IDENT              0
108
#define CALLING_OVERHEAD_REGION_DELETE             0
109
#define CALLING_OVERHEAD_REGION_GET_SEGMENT        0
110
#define CALLING_OVERHEAD_REGION_RETURN_SEGMENT     0
111
#define CALLING_OVERHEAD_PORT_CREATE               0
112
#define CALLING_OVERHEAD_PORT_IDENT                0
113
#define CALLING_OVERHEAD_PORT_DELETE               0 
114
#define CALLING_OVERHEAD_PORT_EXTERNAL_TO_INTERNAL 0 
115
#define CALLING_OVERHEAD_PORT_INTERNAL_TO_EXTERNAL 0
116
 
117
#define CALLING_OVERHEAD_IO_INITIALIZE             0
118
#define CALLING_OVERHEAD_IO_OPEN                   0
119
#define CALLING_OVERHEAD_IO_CLOSE                  0
120
#define CALLING_OVERHEAD_IO_READ                   0
121
#define CALLING_OVERHEAD_IO_WRITE                  0
122
#define CALLING_OVERHEAD_IO_CONTROL                0
123
#define CALLING_OVERHEAD_FATAL_ERROR_OCCURRED      0
124
#define CALLING_OVERHEAD_RATE_MONOTONIC_CREATE     0
125
#define CALLING_OVERHEAD_RATE_MONOTONIC_IDENT      0
126
#define CALLING_OVERHEAD_RATE_MONOTONIC_DELETE     0
127
#define CALLING_OVERHEAD_RATE_MONOTONIC_CANCEL     0
128
#define CALLING_OVERHEAD_RATE_MONOTONIC_PERIOD     0
129
#define CALLING_OVERHEAD_MULTIPROCESSING_ANNOUNCE  0
130
 
131
#ifdef __cplusplus
132
}
133
#endif
134
 
135
#endif
136
/* end of include file */
137
 
138
 
139
 

powered by: WebSVN 2.1.0

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