os/ossrv/glib/tests/slice-threadinit.c
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/* slice-threadinit.c - test GSlice across g_thread_init
sl@0
     2
 * Copyright (C) 2007 Tim Janik
sl@0
     3
 * Portions copyright (c) 2009 Nokia Corporation.  All rights reserved.
sl@0
     4
 * This work is provided "as is"; redistribution and modification
sl@0
     5
 * in whole or in part, in any medium, physical or electronic is
sl@0
     6
 * permitted without restriction.
sl@0
     7
 *
sl@0
     8
 * This work is distributed in the hope that it will be useful,
sl@0
     9
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
sl@0
    10
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
sl@0
    11
 *
sl@0
    12
 * In no event shall the authors or contributors be liable for any
sl@0
    13
 * direct, indirect, incidental, special, exemplary, or consequential
sl@0
    14
 * damages (including, but not limited to, procurement of substitute
sl@0
    15
 * goods or services; loss of use, data, or profits; or business
sl@0
    16
 * interruption) however caused and on any theory of liability, whether
sl@0
    17
 * in contract, strict liability, or tort (including negligence or
sl@0
    18
 * otherwise) arising in any way out of the use of this software, even
sl@0
    19
 * if advised of the possibility of such damage.
sl@0
    20
 */
sl@0
    21
#include <glib.h>
sl@0
    22
#ifdef __SYMBIAN32__
sl@0
    23
#include "mrt2_glib2_test.h"
sl@0
    24
#endif /*__SYMBIAN32__*/
sl@0
    25
#define N_PAGES                 (101)                   /* number of pages to sample */
sl@0
    26
#define SAMPLE_SIZE             (7)
sl@0
    27
#define PAGE_SIZE               (128)                   /* must be <= minimum GSlice alignment block */
sl@0
    28
#define MAGAZINE_PROBES         { 81, 265, 347 }        /* block sizes hopefully unused by g_thread_init */
sl@0
    29
#define MAX_PROBE_TRIALS        (1031)                  /* must be >= maximum magazine size */
sl@0
    30
sl@0
    31
#define ALIGN(size, base)       ((base) * (gsize) (((size) + (base) - 1) / (base)))
sl@0
    32
sl@0
    33
static struct {
sl@0
    34
  void *page;
sl@0
    35
  void *sample;
sl@0
    36
} pages[N_PAGES] = { { NULL, }, };
sl@0
    37
sl@0
    38
static const guint magazine_probes[] = MAGAZINE_PROBES;
sl@0
    39
#define N_MAGAZINE_PROBES       G_N_ELEMENTS (magazine_probes)
sl@0
    40
sl@0
    41
static void
sl@0
    42
release_trash_list (GSList **trash_list,
sl@0
    43
                    gsize    block_size)
sl@0
    44
{
sl@0
    45
  while (*trash_list)
sl@0
    46
    {
sl@0
    47
      g_slice_free1 (block_size, (*trash_list)->data);
sl@0
    48
      *trash_list = g_slist_delete_link (*trash_list, *trash_list);
sl@0
    49
    }
sl@0
    50
}
sl@0
    51
sl@0
    52
static GSList *free_list = NULL;
sl@0
    53
sl@0
    54
static gboolean
sl@0
    55
allocate_from_known_page (void)
sl@0
    56
{
sl@0
    57
  guint i, j, n_trials = N_PAGES * PAGE_SIZE / SAMPLE_SIZE; /* upper bound */
sl@0
    58
  for (i = 0; i < n_trials; i++)
sl@0
    59
    {
sl@0
    60
      void *b = g_slice_alloc (SAMPLE_SIZE);
sl@0
    61
      void *p = (void*) (PAGE_SIZE * ((gsize) b / PAGE_SIZE));
sl@0
    62
      free_list = g_slist_prepend (free_list, b);
sl@0
    63
      /* find page */
sl@0
    64
      for (j = 0; j < N_PAGES; j++)
sl@0
    65
        if (pages[j].page == p)
sl@0
    66
          return TRUE;
sl@0
    67
    }
sl@0
    68
  return FALSE;
sl@0
    69
}
sl@0
    70
sl@0
    71
int
sl@0
    72
main (int   argc,
sl@0
    73
      char *argv[])
sl@0
    74
{
sl@0
    75
  int j, n_pages = 0;
sl@0
    76
  void *mps[N_MAGAZINE_PROBES];
sl@0
    77
#ifdef __SYMBIAN32__
sl@0
    78
  g_log_set_handler (NULL,  G_LOG_FLAG_FATAL| G_LOG_FLAG_RECURSION | G_LOG_LEVEL_CRITICAL | G_LOG_LEVEL_WARNING | G_LOG_LEVEL_MESSAGE | G_LOG_LEVEL_INFO | G_LOG_LEVEL_DEBUG, &mrtLogHandler, NULL);
sl@0
    79
  g_set_print_handler(mrtPrintHandler);
sl@0
    80
  #endif /*__SYMBIAN32__*/
sl@0
    81
  /* probe some magazine sizes */
sl@0
    82
  for (j = 0; j < N_MAGAZINE_PROBES; j++)
sl@0
    83
    mps[j] = g_slice_alloc (magazine_probes[j]);
sl@0
    84
  /* mps[*] now contains pointers to allocated slices */
sl@0
    85
sl@0
    86
  /* allocate blocks from N_PAGES different pages */
sl@0
    87
  while (n_pages < N_PAGES)
sl@0
    88
    {
sl@0
    89
      void *b = g_slice_alloc (SAMPLE_SIZE);
sl@0
    90
      void *p = (void*) (PAGE_SIZE * ((gsize) b / PAGE_SIZE));
sl@0
    91
      for (j = 0; j < N_PAGES; j++)
sl@0
    92
        if (pages[j].page == p)
sl@0
    93
          break;
sl@0
    94
      if (j < N_PAGES)  /* known page */
sl@0
    95
        free_list = g_slist_prepend (free_list, b);
sl@0
    96
      else              /* new page */
sl@0
    97
        {
sl@0
    98
          j = n_pages++;
sl@0
    99
          pages[j].page = p;
sl@0
   100
          pages[j].sample = b;
sl@0
   101
        }
sl@0
   102
    }
sl@0
   103
  /* release intermediate allocations */
sl@0
   104
  release_trash_list (&free_list, SAMPLE_SIZE);
sl@0
   105
sl@0
   106
  /* ensure that we can allocate from known pages */
sl@0
   107
  if (!allocate_from_known_page())
sl@0
   108
    g_error ("failed to allocate from magazine/page cache (before g_thread_init)");
sl@0
   109
  /* release intermediate allocations */
sl@0
   110
  release_trash_list (&free_list, SAMPLE_SIZE);
sl@0
   111
sl@0
   112
  /* release magazine probes to be retained */
sl@0
   113
  for (j = 0; j < N_MAGAZINE_PROBES; j++)
sl@0
   114
    g_slice_free1 (magazine_probes[j], mps[j]);
sl@0
   115
  /* mps[*] now contains pointers to releaed slices */
sl@0
   116
sl@0
   117
  /* ensure probes were retained */
sl@0
   118
  for (j = 0; j < N_MAGAZINE_PROBES; j++)
sl@0
   119
    {
sl@0
   120
      GSList *trash = NULL;
sl@0
   121
      guint k;
sl@0
   122
      for (k = 0; k < MAX_PROBE_TRIALS; k++)
sl@0
   123
        {
sl@0
   124
          void *mem = g_slice_alloc (magazine_probes[j]);
sl@0
   125
          if (mem == mps[j])
sl@0
   126
            break;      /* reallocated previously freed slice */
sl@0
   127
          trash = g_slist_prepend (trash, mem);
sl@0
   128
        }
sl@0
   129
      release_trash_list (&trash, magazine_probes[j]);
sl@0
   130
      if (k >= MAX_PROBE_TRIALS)        /* failed to reallocate slice */
sl@0
   131
        g_error ("failed to reallocate slice from magazine (before g_thread_init): size=%d", magazine_probes[j]);
sl@0
   132
    }
sl@0
   133
  /* mps[*] now contains pointers to reallocated slices */
sl@0
   134
sl@0
   135
  /* release magazine probes to be retained across g_thread_init */
sl@0
   136
  for (j = 0; j < N_MAGAZINE_PROBES; j++)
sl@0
   137
    g_slice_free1 (magazine_probes[j], mps[j]);
sl@0
   138
  /* mps[*] now contains pointers to released slices */
sl@0
   139
sl@0
   140
  /* initialize threading (should retain allocator state) */
sl@0
   141
  g_thread_init (NULL);
sl@0
   142
sl@0
   143
  /* ensure probes were retained */
sl@0
   144
  for (j = 0; j < N_MAGAZINE_PROBES; j++)
sl@0
   145
    {
sl@0
   146
      GSList *trash = NULL;
sl@0
   147
      guint k;
sl@0
   148
      for (k = 0; k < MAX_PROBE_TRIALS; k++)
sl@0
   149
        {
sl@0
   150
          void *mem = g_slice_alloc (magazine_probes[j]);
sl@0
   151
          if (mem == mps[j])
sl@0
   152
            break;      /* reallocated previously freed slice */
sl@0
   153
          trash = g_slist_prepend (trash, mem);
sl@0
   154
        }
sl@0
   155
      release_trash_list (&trash, magazine_probes[j]);
sl@0
   156
      if (k >= MAX_PROBE_TRIALS)        /* failed to reallocate slice */
sl@0
   157
        g_error ("failed to reallocate slice from magazine (after g_thread_init): size=%d", magazine_probes[j]);
sl@0
   158
    }
sl@0
   159
  /* mps[*] now contains pointers to reallocated slices */
sl@0
   160
sl@0
   161
  /* ensure that we can allocate from known pages */
sl@0
   162
  if (!allocate_from_known_page())
sl@0
   163
    g_error ("failed to allocate from magazine/page cache (after g_thread_init)");
sl@0
   164
sl@0
   165
  /* some cleanups */
sl@0
   166
  for (j = 0; j < N_MAGAZINE_PROBES; j++)
sl@0
   167
    g_slice_free1 (magazine_probes[j], mps[j]);
sl@0
   168
  release_trash_list (&free_list, SAMPLE_SIZE);
sl@0
   169
#if __SYMBIAN32__
sl@0
   170
  testResultXml("slice-threadinit");
sl@0
   171
  #endif /* EMULATOR */
sl@0
   172
  return 0;
sl@0
   173
}