Blame elf/tst-tlsalign.c

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