mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 02:01:12 +00:00
59030bfc59
Original commit message from CVS: Patch from Chris Emerson for PPC. cothreads stuff was causing segfaults, because the stack needs to be initialised with a particular structure on PPC, unlike x86 where it simply has items pushed or popped. Added Chris to AUTHORS, for his trouble.
26 lines
612 B
C
26 lines
612 B
C
#ifndef GST_HGUARD_GSTPPC_H
|
|
#define GST_HGUARD_GSTPPC_H
|
|
|
|
/* FIXME: Hmm - does this work?
|
|
*/
|
|
#define GET_SP(target) \
|
|
__asm__("stw 1,%0" : "=m"(target) : : "r1");
|
|
|
|
#define SET_SP(source) \
|
|
__asm__("lwz 1,%0" : "=m"(source))
|
|
|
|
#define JUMP(target) \
|
|
__asm__("b " SYMBOL_NAME_STR(cothread_stub))
|
|
|
|
struct minimal_ppc_stackframe {
|
|
unsigned long back_chain;
|
|
unsigned long LR_save;
|
|
unsigned long unused1;
|
|
unsigned long unused2;
|
|
};
|
|
|
|
#define SETUP_STACK(sp) \
|
|
sp = ((unsigned long *)(sp)) - 4; \
|
|
((struct minimal_ppc_stackframe *)sp)->back_chain = 0;
|
|
|
|
#endif /* GST_HGUARD_GSTPPC_H */
|