Subversion Repositories HelenOS-historic

Rev

Rev 341 | Rev 426 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 341 Rev 425
Line 27... Line 27...
27
 */
27
 */
28
 
28
 
29
#ifndef __mips32_ARG_H__
29
#ifndef __mips32_ARG_H__
30
#define __mips32_ARG_H__
30
#define __mips32_ARG_H__
31
 
31
 
32
#include <stackarg.h>
32
//#include <stackarg.h>
-
 
33
 
-
 
34
#include <arch/types.h>
-
 
35
 
-
 
36
typedef struct va_list {
-
 
37
    int pos;
-
 
38
    __u8 *last;
-
 
39
} va_list;
-
 
40
 
-
 
41
#define va_start(ap, lst)       \
-
 
42
    (ap).pos = sizeof(lst);             \
-
 
43
    (ap).last = (__u8 *) &(lst)
-
 
44
 
-
 
45
/**
-
 
46
* va_arg macro for MIPS32 - problem is that 64 bit values must be aligned on an 8-byte boundary (32bit values not)
-
 
47
* To satisfy this, paddings must be sometimes inserted.
-
 
48
*/
-
 
49
#define va_arg(ap, type)        \
-
 
50
    (*((type *)((ap).last + ((ap).pos  += sizeof(type) + ((sizeof(type)==8)&&(((ap).pos)&(4))?4:0)) - sizeof(type))))
-
 
51
 
-
 
52
#define va_end(ap)
-
 
53
 
-
 
54
 
33
 
55
 
34
#endif
56
#endif