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

Subversion Repositories or1k

[/] [or1k/] [trunk/] [ecos-2.0/] [packages/] [services/] [memalloc/] [common/] [v2_0/] [tests/] [sepmeta2.cxx] - Blame information for rev 1254

Go to most recent revision | Details | Compare with Previous | View Log

Line No. Rev Author Line
1 1254 phoenix
//==========================================================================
2
//
3
//        sepmeta2.cxx
4
//
5
//        Variable memory pool with separate metadata 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:          2001-06-28
46
// Description:   test allocation and freeing in variable 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
#define NTHREADS 1
63
#include "testaux.hxx"
64
 
65
#endif
66
 
67
#include <cyg/memalloc/sepmeta.hxx>
68
 
69
#include <cyg/infra/testcase.h>
70
 
71
static const cyg_int32 memsize = 10240;
72
static const cyg_int32 metadatasize = 2048;
73
 
74
static cyg_uint8 mem[memsize];
75
static cyg_uint8 metadata[metadatasize];
76
 
77
static Cyg_Mempool_Sepmeta mempool(mem, memsize, 8,
78
                                   metadata, metadatasize);
79
 
80
#define NUM_PTRS 16                     // Should be even
81
 
82
static cyg_uint8 *ptr[NUM_PTRS];
83
static cyg_int32 size[NUM_PTRS];
84
 
85
// We make a number of passes over a table of pointers which point to
86
// blocks of allocated memory.  The block is freed and a new block
87
// allocated.  The size and the order of the processing of blocks
88
// is varied.
89
static void entry( CYG_ADDRWORD data )
90
{
91
    cyg_uint32 s = 1;
92
 
93
    // The number of passes that can be successfully performed
94
    // depends on the fragmentation performance of the memory
95
    // allocator.
96
    for(cyg_ucount32 passes = 0; passes < 10; passes++) {
97
 
98
 
99
        // The order which the table is processed varies according to
100
        // stepsize.
101
        cyg_ucount8 stepsize = (passes*2 + 1) % NUM_PTRS; // odd
102
 
103
 
104
        for(cyg_ucount8 c=0, i=0; c < NUM_PTRS; c++) {
105
            i = (i+stepsize) % NUM_PTRS;
106
            if(ptr[i]) {
107
                for(cyg_ucount32 j=size[i];j--;) {
108
                    CYG_TEST_CHECK(ptr[i][j]==i, "Memory corrupted");
109
                }
110
                CYG_TEST_CHECK(mempool.free(ptr[i], size[i]),
111
                               "bad free");
112
            }
113
            s = (s*2 + 17) % 100;  // size always odds therefore non-0
114
            ptr[i] = mempool.try_alloc(s);
115
            size[i] = s;
116
 
117
            CYG_TEST_CHECK(NULL != ptr[i], "Memory pool not big enough");
118
            CYG_TEST_CHECK(mem<=ptr[i] && ptr[i]+s < mem+memsize,
119
                           "Allocated region not within pool");
120
 
121
            // Scribble over memory to check whether region overlaps
122
            // with other regions.  The contents of the memory are
123
            // checked on freeing.  This also tests that the memory
124
            // does not overlap with allocator memory structures.
125
            for(cyg_ucount32 j=size[i];j--;) {
126
                ptr[i][j]=i;
127
            }
128
        }
129
    }
130
 
131
    CYG_TEST_PASS_FINISH("Sepmeta memory pool 2 OK");
132
}
133
 
134
 
135
void sepmeta2_main( void )
136
{
137
    CYG_TEST_INIT();
138
    CYG_TEST_INFO("Starting Seperate metadata memory pool 2 test");
139
 
140
    for(cyg_ucount32 i = 0; i<NUM_PTRS; i++) {
141
        ptr[i]      = NULL;
142
    }
143
 
144
#ifdef CYGPKG_KERNEL
145
    new_thread(entry, 0);
146
    Cyg_Scheduler::start();
147
#else
148
    entry(0);
149
#endif
150
 
151
    CYG_TEST_FAIL_FINISH("Not reached");
152
}
153
 
154
externC void
155
cyg_start( void )
156
{
157
#ifdef CYGSEM_HAL_STOP_CONSTRUCTORS_ON_FLAG
158
    cyg_hal_invoke_constructors();
159
#endif
160
    sepmeta2_main();
161
}
162
// EOF sepmeta2.cxx

powered by: WebSVN 2.1.0

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