eb2925b676
PR libgcj/21692 * sysdep/descriptor-n.h: New file. * sysdep/descriptor-y.h: New file. * sysdep/powerpc/descriptor.h: New file. * configure.host: Set $descriptor_h appropriate for the host. * configure.ac: Link it. * configure: Regenerate. * stacktrace.cc: Include sysdep/descriptor.h. (_Jv_StackTrace::UpdateNCodeMap): Use UNWRAP_FUNCTION_DESCRIPTOR. From-SVN: r100173
10 lines
294 B
C
10 lines
294 B
C
// Given a function pointer, return the code address.
|
|
|
|
#ifdef _CALL_AIX
|
|
// The function descriptor is actually multiple words,
|
|
// but we don't care about anything except the first.
|
|
# define UNWRAP_FUNCTION_DESCRIPTOR(X) (*(void **)(X))
|
|
#else
|
|
# define UNWRAP_FUNCTION_DESCRIPTOR(X) (X)
|
|
#endif
|