summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.target/powerpc/pr106708.c
blob: b941b65e80de1a69a9109d9230610cb581428ed4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* PR target/106708 */
/* { dg-do run } */
/* { dg-options "-O2 -mno-prefixed -save-temps" } */
/* { dg-require-effective-target has_arch_ppc64 } */

long long arr[]
= {0xffffffff7cdeab55LL, 0x98765432LL, 0xabcd0000LL, 0xffffffff65430000LL};

void __attribute__ ((__noipa__)) test_li_xoris (long long *arg)
{
  *arg = 0xffffffff7cdeab55LL;
}
/* { dg-final { scan-assembler-times {\mli .*,-21675\M} 1 } } */
/* { dg-final { scan-assembler-times {\mxoris .*0x8321\M} 1 } } */

void __attribute__ ((__noipa__)) test_li_oris (long long *arg)
{
  *arg = 0x98765432LL;
}
/* { dg-final { scan-assembler-times {\mli .*,21554\M} 1 } } */
/* { dg-final { scan-assembler-times {\moris .*0x9876\M} 1 } } */

void __attribute__ ((__noipa__)) test_lis_rldicl (long long *arg)
{
  *arg = 0xabcd0000LL;
}
/* { dg-final { scan-assembler-times {\mlis .*,0xabcd\M} 1 } } */
/* { dg-final { scan-assembler-times {\mrldicl .*,0,32\M} 1 } } */

void __attribute__ ((__noipa__)) test_lis_xoris (long long *arg)
{
  *arg = 0xffffffff65430000LL;
}
/* { dg-final { scan-assembler-times {\mlis .*,0xe543\M} 1 } } */
/* { dg-final { scan-assembler-times {\mxoris .*0x8000\M} 1 } } */

int
main ()
{
  long long a[sizeof (arr) / sizeof (arr[0])];

  test_li_xoris (a);
  test_li_oris (a + 1);
  test_lis_rldicl (a + 2);
  test_lis_xoris (a + 3);
  if (__builtin_memcmp (a, arr, sizeof (arr)) != 0)
    __builtin_abort ();
  return 0;
}