Blame elf/tst-tlsalign-extern.c

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