aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.target/i386/ms_hook_prologue.c
blob: e11bcc049cb2ca14f644944e29e17fd92d39c73b (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
/* Test that the ms_hook_prologue attribute generates the correct code.  */

/* { dg-do run } */
/* { dg-require-effective-target ms_hook_prologue } */
/* { dg-options "-O2 -fomit-frame-pointer" } */

int __attribute__ ((__ms_hook_prologue__)) foo ()
{
  unsigned char *ptr = (unsigned char *) foo;

  /* The NOP mov must not be optimized away by optimizations.
     The push %ebp, mov %esp, %ebp must not be removed by
     -fomit-frame-pointer */
#ifndef __x86_64__
  /* movl.s %edi, %edi */
  if(*ptr++ != 0x8b) return 1;
  if(*ptr++ != 0xff) return 1;
  /* push %ebp */
  if(*ptr++ != 0x55) return 1;
  /* movl.s %esp, %ebp */
  if(*ptr++ != 0x8b) return 1;
  if(*ptr++ != 0xec) return 1;
#else
  /* leaq 0(%rsp), %rsp */
  if (*ptr++ != 0x48) return 1;
  if (*ptr++ != 0x8d) return 1;
  if (*ptr++ != 0xa4) return 1;
  if (*ptr++ != 0x24) return 1;
  if (ptr[0] != 0 || ptr[1] != 0 || ptr[2] != 0 || ptr[3] != 0)
    return 1;
#endif
  return 0;
}

int main ()
{
  return foo();
}