From: Heikki Linnakangas Date: Wed, 13 Apr 2011 08:43:22 +0000 (+0300) Subject: On IA64 architecture, we check the depth of the register stack in addition X-Git-Tag: REL9_0_4~8 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e910bd2dfee154c2b010befac4f9b28bbc46003a;p=postgresql On IA64 architecture, we check the depth of the register stack in addition to the regular stack. The code to do that is platform and compiler specific, add support for the HP-UX native compiler. --- diff --git a/src/backend/tcop/postgres.c b/src/backend/tcop/postgres.c index 3470575039..9bfeba5113 100644 --- a/src/backend/tcop/postgres.c +++ b/src/backend/tcop/postgres.c @@ -2991,10 +2991,15 @@ ProcessInterrupts(void) /* * IA64-specific code to fetch the AR.BSP register for stack depth checks. * - * We currently support gcc and icc here. + * We currently support gcc, icc, and HP-UX inline assembly here. */ #if defined(__ia64__) || defined(__ia64) +#if defined(__hpux) && !defined(__GNUC__) && !defined __INTEL_COMPILER +#include +#define ia64_get_bsp() ((char *) (_Asm_mov_from_ar(_AREG_BSP, _NO_FENCE))) +#else + #ifdef __INTEL_COMPILER #include #endif @@ -3015,7 +3020,7 @@ ia64_get_bsp(void) #endif return ret; } - +#endif #endif /* IA64 */