search for: bbd6917

Displaying 3 results from an estimated 3 matches for "bbd6917".

2014 Mar 11
0
[PATCH] add mips64 support
...> + unsigned long __unused; Does it make sense to save all the floating-point state even though klibc doesn't have any floating point support? > +/* > + * Symbolic register names for 32 bit ABI > + */ 64-bit? > diff --git a/usr/include/fcntl.h b/usr/include/fcntl.h > index bbd6917..09ba2f2 100644 > --- a/usr/include/fcntl.h > +++ b/usr/include/fcntl.h > @@ -9,7 +9,7 @@ > #include <klibc/compiler.h> > #include <klibc/seek.h> > #include <sys/types.h> > -#if defined(__mips__) && !defined(__mips64__) > +#if defined(__mips__) &...
2015 Mar 06
0
[klibc:master] add-mips64-support-headers
...ck pointer */ #define fp $30 /* frame pointer */ -#define s8 $30 /* same like fp! */ +#define s8 $30 /* callee saved */ #define ra $31 /* return address */ + /* * LEAF - declare leaf routine */ diff --git a/usr/include/fcntl.h b/usr/include/fcntl.h index bbd6917..16128f8 100644 --- a/usr/include/fcntl.h +++ b/usr/include/fcntl.h @@ -9,7 +9,7 @@ #include <klibc/compiler.h> #include <klibc/seek.h> #include <sys/types.h> -#if defined(__mips__) && !defined(__mips64__) +#if defined(__mips__) && ! defined(__mips64) # include...
2014 Mar 11
4
[PATCH] add mips64 support
...frame sp, framesize, rpc + +/* + * END - mark end of function + */ +#define END(function) \ + .end function; \ + .size function,.-function + + +#endif /* _MACHINE_ASM_H */ diff --git a/usr/include/fcntl.h b/usr/include/fcntl.h index bbd6917..09ba2f2 100644 --- a/usr/include/fcntl.h +++ b/usr/include/fcntl.h @@ -9,7 +9,7 @@ #include <klibc/compiler.h> #include <klibc/seek.h> #include <sys/types.h> -#if defined(__mips__) && !defined(__mips64__) +#if defined(__mips__) && !defined(__mips64) # include...