aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.apple/asm-block-2.c
blob: 586f2c733574907527daf519d0afa65b0e320406 (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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
/* APPLE LOCAL file CW asm blocks */
/* Test structure refs in asm-syntax blocks within functions.  */

/* { dg-do run { target powerpc*-*-* } } */
/* { dg-options "-fasm-blocks -O2" } */

void abort(void);


typedef struct astruct {
  int arr[40];
  char charfield;
  int fieldx;
  int fieldy;
} atypedef;

union aunion {
  int field1;
  int field2;
};

int fun1 (struct astruct *x)
{
  int loc;
  asm {
    lwz loc, astruct.fieldx(x)
    addi loc, loc, 42
    stw loc, astruct.fieldx+4(x)
  }
  return loc;
}

int fun2 (atypedef *x)
{
  int loc;

  asm {
    lwz loc, atypedef.fieldx(r3)
    addi loc, loc, 43
    stw loc, 4 + astruct.fieldx(x)
  }
  return loc;
}

int fun3(int arg)
{
  int loc;

  asm {
    mr loc, r3
    addi loc, loc, aunion.field1
  }
  return loc;
}

int fun4 (struct astruct *arg)
{
  int loc;
  asm {
    lbz loc, arg->charfield
    addi loc, loc, 1
  }
  return loc;
}

struct astruct glob;
union uglob;

int
main ()
{
  glob.charfield = 'b';
  glob.fieldx = 22;
  if (fun1 (&glob) != 64)
    abort ();
  if (glob.fieldy != 64)
    abort ();
  if (fun2 (&glob) != 65)
    abort ();
  if (glob.fieldy != 65)
    abort ();
  if (fun3 (89) != 89)
    abort ();
  if (fun4 (&glob) != 'c')
    abort ();
  return 0;
}