source: rtems/c/src/lib/libbsp/m68k/gen68302/include/coverhd.h @ c499856

4.115
Last change on this file since c499856 was c499856, checked in by Chris Johns <chrisj@…>, on 03/20/14 at 21:10:47

Change all references of rtems.com to rtems.org.

  • Property mode set to 100644
File size: 5.0 KB
Line 
1/**
2 * @file
3 *
4 * @ingroup m68k_gen68302
5 *
6 * @brief C overhead definitions.
7 */
8
9/*  coverhd.h
10 *
11 *  This include file has defines to represent the overhead associated
12 *  with calling a particular directive from C.  These are used in the
13 *  Timing Test Suite to ignore the overhead required to pass arguments
14 *  to directives.  On some CPUs and/or target boards, this overhead
15 *  is significant and makes it difficult to distinguish internal
16 *  RTEMS execution time from that used to call the directive.
17 *  This file should be updated after running the C overhead timing
18 *  test.  Once this update has been performed, the RTEMS Time Test
19 *  Suite should be rebuilt to account for these overhead times in the
20 *  timing results.
21 *
22 *  NOTE:  If these are all zero, then the times reported include
23 *         all calling overhead including passing of arguments.
24 *
25 *  COPYRIGHT (c) 1989-1999.
26 *  On-Line Applications Research Corporation (OAR).
27 *
28 *  The license and distribution terms for this file may be
29 *  found in the file LICENSE in this distribution or at
30 *  http://www.rtems.org/license/LICENSE.
31 */
32
33#ifndef __COVERHD_h
34#define __COVERHD_h
35
36#ifdef __cplusplus
37extern "C" {
38#endif
39
40#define CALLING_OVERHEAD_INITIALIZE_EXECUTIVE      14
41#define CALLING_OVERHEAD_SHUTDOWN_EXECUTIVE        11
42#define CALLING_OVERHEAD_TASK_CREATE               22
43#define CALLING_OVERHEAD_TASK_IDENT                17
44#define CALLING_OVERHEAD_TASK_START                18
45#define CALLING_OVERHEAD_TASK_RESTART              15
46#define CALLING_OVERHEAD_TASK_DELETE               12
47#define CALLING_OVERHEAD_TASK_SUSPEND              12
48#define CALLING_OVERHEAD_TASK_RESUME               12
49#define CALLING_OVERHEAD_TASK_SET_PRIORITY         16
50#define CALLING_OVERHEAD_TASK_MODE                 15
51#define CALLING_OVERHEAD_TASK_GET_NOTE             16
52#define CALLING_OVERHEAD_TASK_SET_NOTE             16
53#define CALLING_OVERHEAD_TASK_WAKE_WHEN            31
54#define CALLING_OVERHEAD_TASK_WAKE_AFTER           11
55#define CALLING_OVERHEAD_INTERRUPT_CATCH           17
56#define CALLING_OVERHEAD_CLOCK_GET                 32
57#define CALLING_OVERHEAD_CLOCK_SET                 31
58#define CALLING_OVERHEAD_CLOCK_TICK                8
59
60#define CALLING_OVERHEAD_TIMER_CREATE              13
61#define CALLING_OVERHEAD_TIMER_IDENT               12
62#define CALLING_OVERHEAD_TIMER_DELETE              14
63#define CALLING_OVERHEAD_TIMER_FIRE_AFTER          19
64#define CALLING_OVERHEAD_TIMER_FIRE_WHEN           39
65#define CALLING_OVERHEAD_TIMER_RESET               12
66#define CALLING_OVERHEAD_TIMER_CANCEL              12
67#define CALLING_OVERHEAD_SEMAPHORE_CREATE          18
68#define CALLING_OVERHEAD_SEMAPHORE_IDENT           12
69#define CALLING_OVERHEAD_SEMAPHORE_DELETE          17
70#define CALLING_OVERHEAD_SEMAPHORE_OBTAIN          17
71#define CALLING_OVERHEAD_SEMAPHORE_RELEASE         12
72#define CALLING_OVERHEAD_MESSAGE_QUEUE_CREATE      18
73#define CALLING_OVERHEAD_MESSAGE_QUEUE_IDENT       17
74#define CALLING_OVERHEAD_MESSAGE_QUEUE_DELETE      12
75#define CALLING_OVERHEAD_MESSAGE_QUEUE_SEND        14
76#define CALLING_OVERHEAD_MESSAGE_QUEUE_URGENT      14
77#define CALLING_OVERHEAD_MESSAGE_QUEUE_BROADCAST   17
78#define CALLING_OVERHEAD_MESSAGE_QUEUE_RECEIVE     19
79#define CALLING_OVERHEAD_MESSAGE_QUEUE_FLUSH       14
80
81#define CALLING_OVERHEAD_EVENT_SEND                15
82#define CALLING_OVERHEAD_EVENT_RECEIVE             18
83#define CALLING_OVERHEAD_SIGNAL_CATCH              14
84#define CALLING_OVERHEAD_SIGNAL_SEND               14
85#define CALLING_OVERHEAD_PARTITION_CREATE          23
86#define CALLING_OVERHEAD_PARTITION_IDENT           17
87#define CALLING_OVERHEAD_PARTITION_DELETE          12
88#define CALLING_OVERHEAD_PARTITION_GET_BUFFER      15
89#define CALLING_OVERHEAD_PARTITION_RETURN_BUFFER   15
90#define CALLING_OVERHEAD_REGION_CREATE             23
91#define CALLING_OVERHEAD_REGION_IDENT              14
92#define CALLING_OVERHEAD_REGION_DELETE             12
93#define CALLING_OVERHEAD_REGION_GET_SEGMENT        21
94#define CALLING_OVERHEAD_REGION_RETURN_SEGMENT     15
95#define CALLING_OVERHEAD_PORT_CREATE               20
96#define CALLING_OVERHEAD_PORT_IDENT                14
97#define CALLING_OVERHEAD_PORT_DELETE               12
98#define CALLING_OVERHEAD_PORT_EXTERNAL_TO_INTERNAL 18
99#define CALLING_OVERHEAD_PORT_INTERNAL_TO_EXTERNAL 18
100
101#define CALLING_OVERHEAD_IO_INITIALIZE             18
102#define CALLING_OVERHEAD_IO_OPEN                   18
103#define CALLING_OVERHEAD_IO_CLOSE                  18
104#define CALLING_OVERHEAD_IO_READ                   18
105#define CALLING_OVERHEAD_IO_WRITE                  18
106#define CALLING_OVERHEAD_IO_CONTROL                18
107#define CALLING_OVERHEAD_FATAL_ERROR_OCCURRED      11
108#define CALLING_OVERHEAD_RATE_MONOTONIC_CREATE     13
109#define CALLING_OVERHEAD_RATE_MONOTONIC_IDENT      14
110#define CALLING_OVERHEAD_RATE_MONOTONIC_DELETE     12
111#define CALLING_OVERHEAD_RATE_MONOTONIC_CANCEL     12
112#define CALLING_OVERHEAD_RATE_MONOTONIC_PERIOD     14
113#define CALLING_OVERHEAD_MULTIPROCESSING_ANNOUNCE  8
114
115#ifdef __cplusplus
116}
117#endif
118
119#endif
Note: See TracBrowser for help on using the repository browser.