aboutsummaryrefslogtreecommitdiff
path: root/src/core/dsp/ocl_load/DLOAD/Stack.h
blob: d36f5e08cc9fb2ba075576048997ba91f9d9df85 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
/*
* Stack.h
*
* Interface to Stack
* ------------------
*
* This is an implementation of a type-independent stack implemented as
* a signly linked list class for C.  It's basically a template class, but
* uses macros instead, so that it can be compiled with a C-only compiler.
*
* To define a Stack class:
* #include "Stack.h"
* TYPE_STACK_DEFINITION(object_type,Class_Identifier)
*
* In a separate C file:
* #include "Stack.h"
* TYPE_STACK_DEFINITION(object_type,Class_Identifier)
* TYPE_STACK_IMPLEMENTATION(object_type,Class_Identifier)
*
* Now, to create a stack:
* struct Class_Identifier_Stack name;
* Get it initialized to zero everywhere somehow, maybe like this:
* initialize_stack_Class_Identifier(&name);
*
* To add to the stack:
* push_Class_Identifier(&name, object);
*
* To access the top of the stack:
* Class_Identifier_Stack_Node *tos = name.top_ptr;
* do_something_to_(tos->value);
*
* To delete from the stack:
*   if (name.size > 0) pop_Class_Identifier(&name);
*
* Copyright (C) 2009-2014 Texas Instruments Incorporated - http://www.ti.com/
*
*
* 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 Texas Instruments Incorporated 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 STACK_H
#define STACK_H

#include <inttypes.h>
#include "dload_api.h"

/*****************************************************************************/
/* TYPE_STACK_DEFINITION() - Define structure specifications for a last-in,  */
/*	first-out linked list of t_name objects.                             */
/*****************************************************************************/
#define TYPE_STACK_DEFINITION(t, t_name)                                      \
struct t_name##_Stack_Node_                                                   \
{                                                                             \
     t value;                                                                 \
     struct t_name##_Stack_Node_* next_ptr;                                   \
};                                                                            \
typedef struct t_name##_Stack_Node_ t_name##_Stack_Node;                      \
                                                                              \
typedef struct                                                                \
{                                                                             \
     t_name##_Stack_Node* top_ptr;                                            \
     t_name##_Stack_Node* bottom_ptr;                                         \
     int size;                                                                \
} t_name##_Stack;                                                             \
                                                                              \
extern void t_name##_initialize_stack(t_name##_Stack* stack);                 \
extern void t_name##_push(t_name##_Stack* stack, t to_push);                  \
extern t    t_name##_pop(t_name##_Stack* stack);

/*****************************************************************************/
/* TYPE_STACK_DEFINITION() - Define the initializer to initalize Stacks.     */
/*****************************************************************************/
#define TYPE_STACK_INITIALIZER  {NULL, NULL, 0 }

/*****************************************************************************/
/* TYPE_STACK_IMPLEMENTATION() - Define member functions of new LIFO linked  */
/*	list "class" of t_name objects.                                      */
/*                                                                           */
/* <type>_initialize_stack() - clears the stack                              */
/* <type>_push() - pushes a <t> type object to the top of the stack          */
/* <type>_pop() - pop a <t> type object from the top of the stack            */
/*	and provide access to it to the caller                               */
/*****************************************************************************/
#define TYPE_STACK_IMPLEMENTATION(t, t_name)                                  \
void t_name##_initialize_stack (t_name##_Stack* stack)                        \
{                                                                             \
     stack->top_ptr = stack->bottom_ptr = NULL;                               \
     stack->size = 0;                                                         \
}                                                                             \
void t_name##_push(t_name##_Stack* stack, t to_push)                          \
{                                                                             \
     stack->size++;                                                           \
                                                                              \
     if(!stack->top_ptr)                                                      \
     {                                                                        \
	  stack->bottom_ptr = stack->top_ptr =                                \
	    (t_name##_Stack_Node*)(DLIF_malloc(sizeof(t_name##_Stack_Node))); \
          stack->top_ptr->next_ptr = NULL;                                    \
     }                                                                        \
     else                                                                     \
     {                                                                        \
          t_name##_Stack_Node* next_ptr = stack->top_ptr;                     \
	  stack->top_ptr =                                                    \
	    (t_name##_Stack_Node*)(DLIF_malloc(sizeof(t_name##_Stack_Node))); \
	  stack->top_ptr->next_ptr = next_ptr;                                \
     }                                                                        \
                                                                              \
     stack->top_ptr->value = to_push;                                         \
}                                                                             \
                                                                              \
t t_name##_pop(t_name##_Stack* stack)                                         \
{                                                                             \
     t to_ret;                                                                \
     t_name##_Stack_Node* next_ptr = stack->top_ptr->next_ptr;                \
                                                                              \
     stack->size--;                                                           \
     to_ret = stack->top_ptr->value;                                          \
     DLIF_free((void*)(stack->top_ptr));                                      \
                                                                              \
     if(!stack->size)                                                         \
	  stack->top_ptr = stack->bottom_ptr = NULL;                          \
     else                                                                     \
	  stack->top_ptr = next_ptr;                                          \
                                                                              \
     return to_ret;                                                           \
}

#endif