summaryrefslogtreecommitdiff
path: root/gcc_arm/ginclude/va-d30v.h
blob: ccd375007d76bcb8326ba1f104ab8f2c53363410 (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
/* CYGNUS LOCAL entire file/d30v */
/* GNU C stdarg/varargs support for the D30V */

/* Define __gnuc_va_list.  */
#ifndef __GNUC_VA_LIST
#define __GNUC_VA_LIST
typedef struct __va_list_tag {
  int *__va_arg_ptr;		/* start of the register save area */
  int __va_arg_num;		/* argument number */
} __va_list[1], __gnuc_va_list[1];

#endif /* not __GNUC_VA_LIST */

/* If this is for internal libc use, don't define anything but
   __gnuc_va_list.  */
#if defined (_STDARG_H) || defined (_VARARGS_H)

/* Common code for va_start for both varargs and stdarg.  This depends
   on the format of the CUMULATIVE_ARGS type.  On the d30v, we use just
   a single word that is the register number.  */

#define __va_start_common(AP)						\
__extension__ ({							\
   (AP)->__va_arg_ptr = (int *) __builtin_saveregs ();			\
   (AP)->__va_arg_num = __builtin_args_info (0) - 2 /* first arg # */;	\
   (void)0;								\
})

#ifdef _STDARG_H /* stdarg.h support */

/* Calling __builtin_next_arg gives the proper error message if LASTARG is
   not indeed the last argument.  */
#define va_start(AP,LASTARG) \
  (__builtin_next_arg (LASTARG), __va_start_common (AP))

#else /* varargs.h support */

#define va_start(AP) __va_start_common (AP)
#define va_alist __builtin_va_alist
#define va_dcl register int va_alist; ...

#endif /* _STDARG_H */

/* Nothing needs to be done to end varargs/stdarg processing */
#define va_end(AP) ((void)0)

#define va_arg(AP,TYPE)							\
__extension__ (*({							\
  register TYPE *__ptr;							\
									\
  if (sizeof (TYPE) > 4 && ((AP)->__va_arg_num & 1) != 0)		\
    (AP)->__va_arg_num++;						\
									\
  __ptr = (TYPE *)(((char *)(void *)					\
		    ((AP)->__va_arg_ptr + (AP)->__va_arg_num)));	\
									\
  if (sizeof (TYPE) < 4)						\
    __ptr = (void*)__ptr + 4 - sizeof (TYPE);				\
  (AP)->__va_arg_num += (sizeof (TYPE) + 3) / 4;			\
  __ptr;								\
}))

#endif /* defined (_STDARG_H) || defined (_VARARGS_H) */
/* END CYGNUS LOCAL */