Blame elf/tst-tlsalign.c

Packit 6c4009
/* Test for large alignment in TLS blocks, BZ#18383.
Packit 6c4009
   Copyright (C) 2015-2018 Free Software Foundation, Inc.
Packit 6c4009
   This file is part of the GNU C Library.
Packit 6c4009
Packit 6c4009
   The GNU C Library is free software; you can redistribute it and/or
Packit 6c4009
   modify it under the terms of the GNU Lesser General Public
Packit 6c4009
   License as published by the Free Software Foundation; either
Packit 6c4009
   version 2.1 of the License, or (at your option) any later version.
Packit 6c4009
Packit 6c4009
   The GNU C Library is distributed in the hope that it will be useful,
Packit 6c4009
   but WITHOUT ANY WARRANTY; without even the implied warranty of
Packit 6c4009
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
Packit 6c4009
   Lesser General Public License for more details.
Packit 6c4009
Packit 6c4009
   You should have received a copy of the GNU Lesser General Public
Packit 6c4009
   License along with the GNU C Library; if not, see
Packit 6c4009
   <http://www.gnu.org/licenses/>.  */
Packit 6c4009
Packit 6c4009
#include <stdint.h>
Packit 6c4009
#include <stdio.h>
Packit 6c4009
#include <stdlib.h>
Packit 6c4009
Packit 6c4009
static __thread int tdata1 = 1;
Packit 6c4009
static __thread int tdata2 __attribute__ ((aligned (0x10))) = 2;
Packit 6c4009
static __thread int tdata3 __attribute__ ((aligned (0x1000))) = 4;
Packit 6c4009
static __thread int tbss1;
Packit 6c4009
static __thread int tbss2 __attribute__ ((aligned (0x10)));
Packit 6c4009
static __thread int tbss3 __attribute__ ((aligned (0x1000)));
Packit 6c4009
Packit 6c4009
#ifndef NO_LIB
Packit 6c4009
extern __thread int mod_tdata1;
Packit 6c4009
extern __thread int mod_tdata2;
Packit 6c4009
extern __thread int mod_tdata3;
Packit 6c4009
extern __thread int mod_tbss1;
Packit 6c4009
extern __thread int mod_tbss2;
Packit 6c4009
extern __thread int mod_tbss3;
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
static int
Packit 6c4009
test_one (const char *which, unsigned int alignment, int *var, int value)
Packit 6c4009
{
Packit 6c4009
  uintptr_t addr = (uintptr_t) var;
Packit 6c4009
  unsigned int misalign = addr & (alignment - 1);
Packit 6c4009
Packit 6c4009
  printf ("%s TLS address %p %% %u = %u\n",
Packit 6c4009
          which, (void *) var, alignment, misalign);
Packit 6c4009
Packit 6c4009
  int got = *var;
Packit 6c4009
  if (got != value)
Packit 6c4009
    {
Packit 6c4009
      printf ("%s value %d should be %d\n", which, got, value);
Packit 6c4009
      return 1;
Packit 6c4009
    }
Packit 6c4009
Packit 6c4009
  return misalign != 0;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
static int
Packit 6c4009
do_test (void)
Packit 6c4009
{
Packit 6c4009
  int fail = 0;
Packit 6c4009
Packit 6c4009
  fail |= test_one ("tdata1", 4, &tdata1, 1);
Packit 6c4009
  fail |= test_one ("tdata2", 0x10, &tdata2, 2);
Packit 6c4009
  fail |= test_one ("tdata3", 0x1000, &tdata3, 4);
Packit 6c4009
Packit 6c4009
  fail |= test_one ("tbss1", 4, &tbss1, 0);
Packit 6c4009
  fail |= test_one ("tbss2", 0x10, &tbss2, 0);
Packit 6c4009
  fail |= test_one ("tbss3", 0x1000, &tbss3, 0);
Packit 6c4009
Packit 6c4009
#ifndef NO_LIB
Packit 6c4009
  fail |= test_one ("mod_tdata1", 4, &mod_tdata1, 1);
Packit 6c4009
  fail |= test_one ("mod_tdata2", 0x10, &mod_tdata2, 2);
Packit 6c4009
  fail |= test_one ("mod_tdata3", 0x1000, &mod_tdata3, 4);
Packit 6c4009
Packit 6c4009
  fail |= test_one ("mod_tbss1", 4, &mod_tbss1, 0);
Packit 6c4009
  fail |= test_one ("mod_tbss2", 0x10, &mod_tbss2, 0);
Packit 6c4009
  fail |= test_one ("mod_tbss3", 0x1000, &mod_tbss3, 0);
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
  return fail ? EXIT_FAILURE : EXIT_SUCCESS;
Packit 6c4009
}
Packit 6c4009
Packit 6c4009
#include <support/test-driver.c>