/* mpmss.c: MPM STRESS TEST * * $Id$ * Copyright (c) 2001-2014 Ravenbrook Limited. See end of file for license. * Portions copyright (C) 2002 Global Graphics Software. */ #include "mpscmv.h" #include "mpscmvff.h" #include "mpscmfs.h" #include "mpslib.h" #include "mpsavm.h" #include "testlib.h" #include "mpslib.h" #include "mps.h" #include /* printf */ #define testArenaSIZE ((((size_t)64)<<20) - 4) #define smallArenaSIZE ((((size_t)1)<<20) - 4) #define testSetSIZE 200 #define testLOOPS 10 /* stress -- create a pool of the requested type and allocate in it */ static mps_res_t stress(mps_class_t class, size_t (*size)(size_t i), mps_arena_t arena, ...) { mps_res_t res; mps_pool_t pool; va_list arg; size_t i, k; int *ps[testSetSIZE]; size_t ss[testSetSIZE]; va_start(arg, arena); res = mps_pool_create_v(&pool, arena, class, arg); va_end(arg); if (res != MPS_RES_OK) return res; /* allocate a load of objects */ for (i=0; i= sizeof(ps[i])) *ps[i] = 1; /* Write something, so it gets swap. */ } mps_pool_check_fenceposts(pool); for (k=0; k> (i / 10)), 2) + 1; } /* randomSize8 -- produce sizes both latge and small, 8-byte aligned */ static size_t randomSize8(size_t i) { size_t maxSize = 2 * 160 * 0x2000; /* Reduce by a factor of 2 every 10 cycles. Total allocation about 40 MB. */ return alignUp(rnd() % max((maxSize >> (i / 10)), 2) + 1, 8); } /* fixedSize -- produce always the same size */ static size_t fixedSizeSize = 0; static size_t fixedSize(size_t i) { testlib_unused(i); return fixedSizeSize; } static mps_pool_debug_option_s bothOptions = { /* .fence_template = */ (const void *)"postpostpostpost", /* .fence_size = */ MPS_PF_ALIGN, /* .free_template = */ (const void *)"DEAD", /* .free_size = */ 4 }; static mps_pool_debug_option_s fenceOptions = { /* .fence_template = */ (const void *)"\0XXX ''\"\"'' XXX\0", /* .fence_size = */ 16, /* .free_template = */ NULL, /* .free_size = */ 0 }; /* testInArena -- test all the pool classes in the given arena */ static void testInArena(mps_arena_t arena, mps_pool_debug_option_s *options) { /* IWBN to test MVFFDebug, but the MPS doesn't support debugging */ /* cross-segment allocation (possibly MVFF ought not to). */ printf("MVFF\n"); die(stress(mps_class_mvff(), randomSize8, arena, (size_t)65536, (size_t)32, (mps_align_t)MPS_PF_ALIGN, TRUE, TRUE, TRUE), "stress MVFF"); printf("MV debug\n"); die(stress(mps_class_mv_debug(), randomSize, arena, options, (size_t)65536, (size_t)32, (size_t)65536), "stress MV debug"); printf("MFS\n"); fixedSizeSize = 13; die(stress(mps_class_mfs(), fixedSize, arena, (size_t)100000, fixedSizeSize), "stress MFS"); printf("MV\n"); die(stress(mps_class_mv(), randomSize, arena, (size_t)65536, (size_t)32, (size_t)65536), "stress MV"); } int main(int argc, char *argv[]) { mps_arena_t arena; testlib_init(argc, argv); die(mps_arena_create(&arena, mps_arena_class_vm(), testArenaSIZE), "mps_arena_create"); testInArena(arena, &bothOptions); mps_arena_destroy(arena); die(mps_arena_create(&arena, mps_arena_class_vm(), smallArenaSIZE), "mps_arena_create"); testInArena(arena, &fenceOptions); mps_arena_destroy(arena); printf("%s: Conclusion: Failed to find any defects.\n", argv[0]); return 0; } /* C. COPYRIGHT AND LICENSE * * Copyright (c) 2001-2014 Ravenbrook Limited . * All rights reserved. This is an open source license. Contact * Ravenbrook for commercial licensing options. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions are * met: * * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * * 2. 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. * * 3. Redistributions in any form must be accompanied by information on how * to obtain complete source code for this software and any accompanying * software that uses this software. The source code must either be * included in the distribution or be available for no more than the cost * of distribution plus a nominal fee, and must be freely redistributable * under reasonable conditions. For an executable file, complete source * code means the source code for all modules it contains. It does not * include source code for modules or files that typically accompany the * major components of the operating system on which the executable file * runs. * * 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, FITNESS FOR A PARTICULAR * PURPOSE, OR NON-INFRINGEMENT, ARE DISCLAIMED. IN NO EVENT SHALL THE * COPYRIGHT HOLDERS AND 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. */