]> git.kernelconcepts.de Git - karo-tx-redboot.git/blob - packages/services/memalloc/common/v2_0/tests/memfix2.cxx
Initial revision
[karo-tx-redboot.git] / packages / services / memalloc / common / v2_0 / tests / memfix2.cxx
1 //==========================================================================
2 //
3 //        memfix2.cxx
4 //
5 //        Fixed memory pool test 2
6 //
7 //==========================================================================
8 //####ECOSGPLCOPYRIGHTBEGIN####
9 // -------------------------------------------
10 // This file is part of eCos, the Embedded Configurable Operating System.
11 // Copyright (C) 1998, 1999, 2000, 2001, 2002 Red Hat, Inc.
12 //
13 // eCos is free software; you can redistribute it and/or modify it under
14 // the terms of the GNU General Public License as published by the Free
15 // Software Foundation; either version 2 or (at your option) any later version.
16 //
17 // eCos is distributed in the hope that it will be useful, but WITHOUT ANY
18 // WARRANTY; without even the implied warranty of MERCHANTABILITY or
19 // FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
20 // for more details.
21 //
22 // You should have received a copy of the GNU General Public License along
23 // with eCos; if not, write to the Free Software Foundation, Inc.,
24 // 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
25 //
26 // As a special exception, if other files instantiate templates or use macros
27 // or inline functions from this file, or you compile this file and link it
28 // with other works to produce a work based on this file, this file does not
29 // by itself cause the resulting work to be covered by the GNU General Public
30 // License. However the source code for this file must still be made available
31 // in accordance with section (3) of the GNU General Public License.
32 //
33 // This exception does not invalidate any other reasons why a work based on
34 // this file might be covered by the GNU General Public License.
35 //
36 // Alternative licenses for eCos may be arranged by contacting Red Hat, Inc.
37 // at http://sources.redhat.com/ecos/ecos-license/
38 // -------------------------------------------
39 //####ECOSGPLCOPYRIGHTEND####
40 //==========================================================================
41 //#####DESCRIPTIONBEGIN####
42 //
43 // Author(s):     dsm, jlarmour
44 // Contributors:  
45 // Date:          2000-06-18
46 // Description:   test allocation and freeing in fixed memory pools
47 //####DESCRIPTIONEND####
48
49 #include <pkgconf/memalloc.h>
50 #include <pkgconf/system.h>
51
52 #ifdef CYGPKG_KERNEL
53 #include <pkgconf/kernel.h>
54
55 #include <cyg/kernel/sched.hxx>         // Cyg_Scheduler::start()
56 #include <cyg/kernel/thread.hxx>        // Cyg_Thread
57 #include <cyg/kernel/thread.inl>
58 #include <cyg/kernel/sema.hxx>
59
60 #include <cyg/kernel/sched.inl>
61
62
63 #define NTHREADS 1
64 #include "testaux.hxx"
65
66 #endif
67
68 #include <cyg/memalloc/memfixed.hxx>
69
70 #include <cyg/infra/testcase.h>
71
72 static const cyg_int32 memsize = 1024;
73
74 static cyg_uint8 mem[memsize];
75
76 #define NUM_PTRS 16                     // Should be even
77 #define BLOCKSIZE 12
78
79 static Cyg_Mempool_Fixed mempool(mem, memsize, BLOCKSIZE);
80
81 static cyg_uint8 *ptr[NUM_PTRS];
82
83 // We make a number of passes over a table of pointers which point to
84 // blocks of allocated memory.  The block is freed and a new block
85 // allocated.  The order of the processing of blocks is varied.
86 static void entry( CYG_ADDRWORD data )
87 {
88     for(cyg_ucount32 passes = 0; passes < 10; passes++) {
89
90
91         // The order which the table is processed varies according to
92         // stepsize.
93         cyg_ucount8 stepsize = (passes*2 + 1) % NUM_PTRS; // odd
94         
95
96         for(cyg_ucount8 c=0, i=0; c < NUM_PTRS; c++) {
97             i = (i+stepsize) % NUM_PTRS;
98             if(ptr[i]) {
99                 for(cyg_ucount32 j=BLOCKSIZE;j--;) {
100                     CYG_TEST_CHECK(ptr[i][j]==i, "Memory corrupted");
101                 }
102                 CYG_TEST_CHECK(mempool.free(ptr[i]), "bad free");
103             }
104             ptr[i] = mempool.try_alloc();
105
106             CYG_TEST_CHECK(NULL != ptr[i], "Memory pool not big enough");
107             CYG_TEST_CHECK(mem<=ptr[i] && ptr[i]+BLOCKSIZE < mem+memsize,
108                            "Allocated region not within pool");
109             
110             // Scribble over memory to check whether region overlaps
111             // with other regions.  The contents of the memory are
112             // checked on freeing.  This also tests that the memory
113             // does not overlap with allocator memory structures.
114             for(cyg_ucount32 j=BLOCKSIZE;j--;) {
115                 ptr[i][j]=i;
116             }
117         }
118     }
119     
120     CYG_TEST_PASS_FINISH("Fixed memory pool 2 OK");
121 }
122
123
124 void memfix2_main( void )
125 {
126     CYG_TEST_INIT();
127     CYG_TEST_INFO("Starting Fixed memory pool 2 test");
128
129     for(cyg_ucount32 i = 0; i<NUM_PTRS; i++) {
130         ptr[i]      = NULL;
131     }
132
133 #ifdef CYGPKG_KERNEL
134     new_thread(entry, 0);
135     Cyg_Scheduler::start();
136 #else
137     entry(0);
138 #endif
139
140     CYG_TEST_FAIL_FINISH("Not reached");
141 }
142
143 externC void
144 cyg_start( void )
145
146 #ifdef CYGSEM_HAL_STOP_CONSTRUCTORS_ON_FLAG
147     cyg_hal_invoke_constructors();
148 #endif
149     memfix2_main();
150 }
151 // EOF memfix2.cxx