Blame elf/tst-tlsalign-extern.c

Packit Service 82fcde
/* Test for large alignment in TLS blocks (extern case), 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
/* This is the same as tst-tlsalign-static.c, except that it uses
Packit Service 82fcde
   TLS variables that are defined in a separate translation unit
Packit Service 82fcde
   (ts-tlsalign-vars.c).  It turned out that the cause of BZ#18383
Packit Service 82fcde
   on ARM was actually an ARM assembler bug triggered by the ways of
Packit Service 82fcde
   using .tdata/.tbss sections and relocs referring to them that GCC
Packit Service 82fcde
   chooses when the variables are defined in the same translation
Packit Service 82fcde
   unit that contains the references.  */
Packit Service 82fcde
Packit Service 82fcde
extern __thread int tdata1;
Packit Service 82fcde
extern __thread int tdata2;
Packit Service 82fcde
extern __thread int tdata3;
Packit Service 82fcde
extern __thread int tbss1;
Packit Service 82fcde
extern __thread int tbss2;
Packit Service 82fcde
extern __thread int tbss3;
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
  return fail ? EXIT_FAILURE : EXIT_SUCCESS;
Packit Service 82fcde
}
Packit Service 82fcde
Packit Service 82fcde
#include <support/test-driver.c>