X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=src%2Fvppinfra%2Ftest_mheap.c;h=f6923a969269f2a6b6000c0d90147f682f7809c7;hb=9c949e72a473195c10a1c1caf503db9467c93f9a;hp=b48e52736514bd3fc16f0d582cac9af25afe2bc7;hpb=7e12d949a346d2e69afb7a8029c0099b5f131b25;p=vpp.git diff --git a/src/vppinfra/test_mheap.c b/src/vppinfra/test_mheap.c index b48e5273651..f6923a96926 100644 --- a/src/vppinfra/test_mheap.c +++ b/src/vppinfra/test_mheap.c @@ -48,11 +48,47 @@ #include #include #include +#include static int verbose = 0; #define if_verbose(format,args...) \ if (verbose) { clib_warning(format, ## args); } +int +test1 (void) +{ + clib_time_t clib_time; + void *h_mem = clib_mem_alloc (2ULL << 30); + void *h; + uword *objects = 0; + int i; + f64 before, after; + + clib_time_init (&clib_time); + + vec_validate (objects, 2000000 - 1); + + h = mheap_alloc (h_mem, (uword) (2 << 30)); + + before = clib_time_now (&clib_time); + + for (i = 0; i < vec_len (objects); i++) + { + h = mheap_get_aligned (h, 24 /* size */ , + 64 /* align */ , + 16 /* align at offset */ , &objects[i]); + } + + after = clib_time_now (&clib_time); + + fformat (stdout, "alloc: %u objects in %.2f seconds, %.2f objects/second\n", + vec_len (objects), (after - before), + ((f64) vec_len (objects)) / (after - before)); + + return 0; +} + + int test_mheap_main (unformat_input_t * input) { @@ -70,6 +106,7 @@ test_mheap_main (unformat_input_t * input) #define CHECK_VALIDITY 1 #define CHECK_DATA 2 #define CHECK_ALIGN 4 +#define TEST1 8 n_iterations = 10; seed = 0; @@ -93,7 +130,8 @@ test_mheap_main (unformat_input_t * input) && 0 == unformat (input, "verbose %=", &really_verbose, 1) && 0 == unformat (input, "trace %=", &trace, 1) && 0 == unformat (input, "vm %=", &use_vm, 1) - && 0 == unformat (input, "align %|", &check_mask, CHECK_ALIGN)) + && 0 == unformat (input, "align %|", &check_mask, CHECK_ALIGN) + && 0 == unformat (input, "test1 %|", &check_mask, TEST1)) { clib_warning ("unknown input `%U'", format_unformat_error, input); return 1; @@ -104,6 +142,11 @@ test_mheap_main (unformat_input_t * input) if (!seed) seed = random_default_seed (); + if (check_mask & TEST1) + { + return test1 (); + } + if_verbose ("testing %d iterations, %d %saligned objects, max. size %d, seed %d", n_iterations, n_objects, (check_mask & CHECK_ALIGN) ? "randomly " : "un", @@ -224,6 +267,8 @@ main (int argc, char *argv[]) unformat_input_t i; int ret; + clib_mem_init (0, 3ULL << 30); + verbose = (argc > 1); unformat_init_command_line (&i, argv); ret = test_mheap_main (&i);