Blame SOURCES/ltrace-0.7.91-ppc64le-support.patch

5cd83f
From eea4ad2cce289753aaa35b4e0258a76d8f8f367c Mon Sep 17 00:00:00 2001
5cd83f
From: Thierry Fauck <thierry@linux.vnet.ibm.com>
5cd83f
Date: Tue, 13 May 2014 07:48:24 -0400
5cd83f
Subject: [PATCH] Support for powerpc64 arch ppc64el
5cd83f
5cd83f
Signed-off-by: Thierry Fauck <thierry@linux.vnet.ibm.com>
5cd83f
5cd83f
	Add support for ppc64le proc and ELF ABIv2.
5cd83f
	Provides support for irelative and wchar
5cd83f
---
5cd83f
 ltrace-elf.c                           |    2 +-
5cd83f
 ltrace-elf.h                           |    1 +
5cd83f
 sysdeps/linux-gnu/ppc/arch.h           |   35 ++++-
5cd83f
 sysdeps/linux-gnu/ppc/fetch.c          |  244 +++++++++++++++++++++++++++++---
5cd83f
 sysdeps/linux-gnu/ppc/plt.c            |   98 ++++++++++++--
5cd83f
 sysdeps/linux-gnu/ppc/trace.c          |   10 ++
5cd83f
 testsuite/ltrace.main/system_calls.exp |    2 +-
5cd83f
 7 files changed, 356 insertions(+), 36 deletions(-)
5cd83f
5cd83f
diff --git a/ltrace-elf.c b/ltrace-elf.c
5cd83f
index 8997518..f638342 100644
5cd83f
--- a/ltrace-elf.c
5cd83f
+++ b/ltrace-elf.c
5cd83f
@@ -859,7 +859,7 @@ populate_plt(struct process *proc, const char *filename,
5cd83f
 	return 0;
5cd83f
 }
5cd83f
 
5cd83f
-static void
5cd83f
+void
5cd83f
 delete_symbol_chain(struct library_symbol *libsym)
5cd83f
 {
5cd83f
 	while (libsym != NULL) {
5cd83f
diff --git a/ltrace-elf.h b/ltrace-elf.h
5cd83f
index db4ffe9..4a824c4 100644
5cd83f
--- a/ltrace-elf.h
5cd83f
+++ b/ltrace-elf.h
5cd83f
@@ -166,6 +166,7 @@ int elf_read_next_uleb128(Elf_Data *data, GElf_Xword *offset, uint64_t *retp);
5cd83f
 /* Return whether there's AMOUNT more bytes after OFFSET in DATA.  */
5cd83f
 int elf_can_read_next(Elf_Data *data, GElf_Xword offset, GElf_Xword amount);
5cd83f
 
5cd83f
+void delete_symbol_chain(struct library_symbol *);
5cd83f
 #if __WORDSIZE == 32
5cd83f
 #define PRI_ELF_ADDR		PRIx32
5cd83f
 #define GELF_ADDR_CAST(x)	(void *)(uint32_t)(x)
5cd83f
diff --git a/sysdeps/linux-gnu/ppc/arch.h b/sysdeps/linux-gnu/ppc/arch.h
5cd83f
index bf9b5dc..7918a13 100644
5cd83f
--- a/sysdeps/linux-gnu/ppc/arch.h
5cd83f
+++ b/sysdeps/linux-gnu/ppc/arch.h
5cd83f
@@ -23,8 +23,8 @@
5cd83f
 #define LTRACE_PPC_ARCH_H
5cd83f
 
5cd83f
 #include <gelf.h>
5cd83f
+#include <stdbool.h>
5cd83f
 
5cd83f
-#define BREAKPOINT_VALUE { 0x7f, 0xe0, 0x00, 0x08 }
5cd83f
 #define BREAKPOINT_LENGTH 4
5cd83f
 #define DECR_PC_AFTER_BREAK 0
5cd83f
 
5cd83f
@@ -34,8 +34,33 @@
5cd83f
 #ifdef __powerpc64__ // Says 'ltrace' is 64 bits, says nothing about target.
5cd83f
 #define LT_ELFCLASS2	ELFCLASS64
5cd83f
 #define LT_ELF_MACHINE2	EM_PPC64
5cd83f
-#define ARCH_SUPPORTS_OPD
5cd83f
-#endif
5cd83f
+
5cd83f
+# ifdef __LITTLE_ENDIAN__
5cd83f
+# define BREAKPOINT_VALUE { 0x08, 0x00, 0xe0, 0x7f }
5cd83f
+# define ARCH_ENDIAN_LITTLE
5cd83f
+# else
5cd83f
+# define BREAKPOINT_VALUE { 0x7f, 0xe0, 0x00, 0x08 }
5cd83f
+# define ARCH_SUPPORTS_OPD
5cd83f
+# define ARCH_ENDIAN_BIG
5cd83f
+# endif
5cd83f
+
5cd83f
+# if _CALL_ELF != 2
5cd83f
+# define ARCH_SUPPORTS_OPD
5cd83f
+# define STACK_FRAME_OVERHEAD 112
5cd83f
+#  ifndef EF_PPC64_ABI
5cd83f
+#  define EF_PPC64_ABI 3
5cd83f
+#  endif
5cd83f
+# else /* _CALL_ELF == 2 ABIv2 */
5cd83f
+# define STACK_FRAME_OVERHEAD 32
5cd83f
+# endif /* CALL_ELF */
5cd83f
+
5cd83f
+#else
5cd83f
+#define BREAKPOINT_VALUE { 0x7f, 0xe0, 0x00, 0x08 }
5cd83f
+#define ARCH_ENDIAN_BIG
5cd83f
+# ifndef EF_PPC64_ABI
5cd83f
+# define EF_PPC64_ABI 3
5cd83f
+# endif
5cd83f
+#endif 	/* __powerpc64__ */
5cd83f
 
5cd83f
 #define ARCH_HAVE_SW_SINGLESTEP
5cd83f
 #define ARCH_HAVE_ADD_PLT_ENTRY
5cd83f
@@ -43,7 +68,6 @@
5cd83f
 #define ARCH_HAVE_TRANSLATE_ADDRESS
5cd83f
 #define ARCH_HAVE_DYNLINK_DONE
5cd83f
 #define ARCH_HAVE_FETCH_ARG
5cd83f
-#define ARCH_ENDIAN_BIG
5cd83f
 #define ARCH_HAVE_SIZEOF
5cd83f
 #define ARCH_HAVE_ALIGNOF
5cd83f
 
5cd83f
@@ -56,7 +80,8 @@ struct arch_ltelf_data {
5cd83f
 	Elf_Data *opd_data;
5cd83f
 	GElf_Addr opd_base;
5cd83f
 	GElf_Xword opd_size;
5cd83f
-	int secure_plt;
5cd83f
+	bool secure_plt : 1;
5cd83f
+	bool elfv2_abi  : 1;
5cd83f
 
5cd83f
 	Elf_Data *reladyn;
5cd83f
 	size_t reladyn_count;
5cd83f
diff --git a/sysdeps/linux-gnu/ppc/fetch.c b/sysdeps/linux-gnu/ppc/fetch.c
5cd83f
index ed38336..c9381c3 100644
5cd83f
--- a/sysdeps/linux-gnu/ppc/fetch.c
5cd83f
+++ b/sysdeps/linux-gnu/ppc/fetch.c
5cd83f
@@ -30,9 +30,11 @@
5cd83f
 #include "ptrace.h"
5cd83f
 #include "proc.h"
5cd83f
 #include "value.h"
5cd83f
+#include "ltrace-elf.h"
5cd83f
 
5cd83f
 static int allocate_gpr(struct fetch_context *ctx, struct process *proc,
5cd83f
-			struct arg_type_info *info, struct value *valuep);
5cd83f
+			struct arg_type_info *info, struct value *valuep,
5cd83f
+			size_t off, bool is_hfa_type);
5cd83f
 
5cd83f
 /* Floating point registers have the same width on 32-bit as well as
5cd83f
  * 64-bit PPC, but <ucontext.h> presents a different API depending on
5cd83f
@@ -62,7 +64,10 @@ struct fetch_context {
5cd83f
 		gregs64_t r64;
5cd83f
 	} regs;
5cd83f
 	struct fpregs_t fpregs;
5cd83f
-
5cd83f
+	int vgreg;
5cd83f
+	int struct_size;
5cd83f
+	int struct_hfa_size;
5cd83f
+	int struct_hfa_count;
5cd83f
 };
5cd83f
 
5cd83f
 static int
5cd83f
@@ -74,7 +79,8 @@ fetch_context_init(struct process *proc, struct fetch_context *context)
5cd83f
 	if (proc->e_machine == EM_PPC)
5cd83f
 		context->stack_pointer = proc->stack_pointer + 8;
5cd83f
 	else
5cd83f
-		context->stack_pointer = proc->stack_pointer + 112;
5cd83f
+		context->stack_pointer = proc->stack_pointer
5cd83f
+			+ STACK_FRAME_OVERHEAD;
5cd83f
 
5cd83f
 	/* When ltrace is 64-bit, we might use PTRACE_GETREGS to
5cd83f
 	 * obtain 64-bit as well as 32-bit registers.  But if we do it
5cd83f
@@ -118,6 +124,11 @@ arch_fetch_arg_init(enum tof type, struct process *proc,
5cd83f
 		return NULL;
5cd83f
 	}
5cd83f
 
5cd83f
+	context->vgreg = context->greg;
5cd83f
+	context->struct_size = 0;
5cd83f
+	context->struct_hfa_size = 0;
5cd83f
+	context->struct_hfa_count = 0;
5cd83f
+
5cd83f
 	/* Aggregates or unions of any length, and character strings
5cd83f
 	 * of length longer than 8 bytes, will be returned in a
5cd83f
 	 * storage buffer allocated by the caller. The caller will
5cd83f
@@ -125,8 +136,20 @@ arch_fetch_arg_init(enum tof type, struct process *proc,
5cd83f
 	 * in r3, causing the first explicit argument to be passed in
5cd83f
 	 * r4.  */
5cd83f
 	context->ret_struct = ret_info->type == ARGTYPE_STRUCT;
5cd83f
-	if (context->ret_struct)
5cd83f
+	if (context->ret_struct) {
5cd83f
+#if _CALL_ELF == 2
5cd83f
+		/* if R3 points to stack, parameters will be in R4.  */
5cd83f
+		uint64_t pstack_end = ptrace(PTRACE_PEEKTEXT, proc->pid,
5cd83f
+					proc->stack_pointer, 0);
5cd83f
+		if (((arch_addr_t)context->regs.r64[3] > proc->stack_pointer)
5cd83f
+		    && (context->regs.r64[3] < pstack_end)) {
5cd83f
+			context->greg++;
5cd83f
+			context->stack_pointer += 8;
5cd83f
+		}
5cd83f
+#else
5cd83f
 		context->greg++;
5cd83f
+#endif
5cd83f
+	}
5cd83f
 
5cd83f
 	return context;
5cd83f
 }
5cd83f
@@ -144,7 +167,8 @@ arch_fetch_arg_clone(struct process *proc,
5cd83f
 
5cd83f
 static int
5cd83f
 allocate_stack_slot(struct fetch_context *ctx, struct process *proc,
5cd83f
-		    struct arg_type_info *info, struct value *valuep)
5cd83f
+		    struct arg_type_info *info, struct value *valuep,
5cd83f
+		    bool is_hfa_type)
5cd83f
 {
5cd83f
 	size_t sz = type_sizeof(proc, info);
5cd83f
 	if (sz == (size_t)-1)
5cd83f
@@ -154,7 +178,14 @@ allocate_stack_slot(struct fetch_context *ctx, struct process *proc,
5cd83f
 	size_t off = 0;
5cd83f
 	if (proc->e_machine == EM_PPC && a < 4)
5cd83f
 		a = 4;
5cd83f
+#if _CALL_ELF == 2
5cd83f
+	else if (proc->e_machine == EM_PPC64 && sz == 4 && is_hfa_type)
5cd83f
+		a = 4;
5cd83f
+	else
5cd83f
+		a = 8;
5cd83f
+#else
5cd83f
 	else if (proc->e_machine == EM_PPC64 && a < 8)
5cd83f
+#endif
5cd83f
 		a = 8;
5cd83f
 
5cd83f
 	/* XXX Remove the two double casts when arch_addr_t
5cd83f
@@ -164,7 +195,7 @@ allocate_stack_slot(struct fetch_context *ctx, struct process *proc,
5cd83f
 
5cd83f
 	if (valuep != NULL)
5cd83f
 		value_in_inferior(valuep, ctx->stack_pointer + off);
5cd83f
-	ctx->stack_pointer += sz;
5cd83f
+	ctx->stack_pointer += a;
5cd83f
 
5cd83f
 	return 0;
5cd83f
 }
5cd83f
@@ -216,19 +247,34 @@ align_small_int(unsigned char *buf, size_t w, size_t sz)
5cd83f
 
5cd83f
 static int
5cd83f
 allocate_gpr(struct fetch_context *ctx, struct process *proc,
5cd83f
-	     struct arg_type_info *info, struct value *valuep)
5cd83f
+	     struct arg_type_info *info, struct value *valuep,
5cd83f
+	     size_t off, bool is_hfa_type)
5cd83f
 {
5cd83f
 	if (ctx->greg > 10)
5cd83f
-		return allocate_stack_slot(ctx, proc, info, valuep);
5cd83f
+		return allocate_stack_slot(ctx, proc, info, valuep, is_hfa_type);
5cd83f
 
5cd83f
-	int reg_num = ctx->greg++;
5cd83f
-	if (valuep == NULL)
5cd83f
-		return 0;
5cd83f
+	int reg_num = ctx->greg;
5cd83f
 
5cd83f
 	size_t sz = type_sizeof(proc, info);
5cd83f
 	if (sz == (size_t)-1)
5cd83f
 		return -1;
5cd83f
 	assert(sz == 1 || sz == 2 || sz == 4 || sz == 8);
5cd83f
+#if _CALL_ELF == 2
5cd83f
+	/* Consume the stack slot corresponding to this arg.  */
5cd83f
+	if ((sz + off) >= 8)
5cd83f
+		ctx->greg++;
5cd83f
+
5cd83f
+	if (is_hfa_type)
5cd83f
+		ctx->stack_pointer += sz;
5cd83f
+	else
5cd83f
+		ctx->stack_pointer += 8;
5cd83f
+#else
5cd83f
+	ctx->greg++;
5cd83f
+#endif
5cd83f
+
5cd83f
+	if (valuep == NULL)
5cd83f
+		return 0;
5cd83f
+
5cd83f
 	if (value_reserve(valuep, sz) == NULL)
5cd83f
 		return -1;
5cd83f
 
5cd83f
@@ -240,13 +286,14 @@ allocate_gpr(struct fetch_context *ctx, struct process *proc,
5cd83f
 	u.i64 = read_gpr(ctx, proc, reg_num);
5cd83f
 	if (proc->e_machine == EM_PPC)
5cd83f
 		align_small_int(u.buf, 8, sz);
5cd83f
-	memcpy(value_get_raw_data(valuep), u.buf, sz);
5cd83f
+	memcpy(value_get_raw_data(valuep), u.buf + off, sz);
5cd83f
 	return 0;
5cd83f
 }
5cd83f
 
5cd83f
 static int
5cd83f
 allocate_float(struct fetch_context *ctx, struct process *proc,
5cd83f
-	       struct arg_type_info *info, struct value *valuep)
5cd83f
+	       struct arg_type_info *info, struct value *valuep,
5cd83f
+	       size_t off, bool is_hfa_type)
5cd83f
 {
5cd83f
 	int pool = proc->e_machine == EM_PPC64 ? 13 : 8;
5cd83f
 	if (ctx->freg <= pool) {
5cd83f
@@ -257,8 +304,12 @@ allocate_float(struct fetch_context *ctx, struct process *proc,
5cd83f
 		} u = { .d = ctx->fpregs.fpregs[ctx->freg] };
5cd83f
 
5cd83f
 		ctx->freg++;
5cd83f
+
5cd83f
+		if (!is_hfa_type)
5cd83f
+			ctx->vgreg++;
5cd83f
+
5cd83f
 		if (proc->e_machine == EM_PPC64)
5cd83f
-			allocate_gpr(ctx, proc, info, NULL);
5cd83f
+			allocate_gpr(ctx, proc, info, NULL, off, is_hfa_type);
5cd83f
 
5cd83f
 		size_t sz = sizeof(double);
5cd83f
 		if (info->type == ARGTYPE_FLOAT) {
5cd83f
@@ -272,8 +323,128 @@ allocate_float(struct fetch_context *ctx, struct process *proc,
5cd83f
 		memcpy(value_get_raw_data(valuep), u.buf, sz);
5cd83f
 		return 0;
5cd83f
 	}
5cd83f
-	return allocate_stack_slot(ctx, proc, info, valuep);
5cd83f
+	return allocate_stack_slot(ctx, proc, info, valuep, is_hfa_type);
5cd83f
+}
5cd83f
+
5cd83f
+#if _CALL_ELF == 2
5cd83f
+static int
5cd83f
+allocate_hfa(struct fetch_context *ctx, struct process *proc,
5cd83f
+	     struct arg_type_info *info, struct value *valuep,
5cd83f
+	     enum arg_type hfa_type, size_t hfa_count)
5cd83f
+{
5cd83f
+	size_t sz = type_sizeof(proc, info);
5cd83f
+	if (sz == (size_t)-1)
5cd83f
+		return -1;
5cd83f
+
5cd83f
+	ctx->struct_hfa_size += sz;
5cd83f
+
5cd83f
+	/* There are two changes regarding structure return types:
5cd83f
+	 * * heterogeneous float/vector structs are returned
5cd83f
+	 *   in (multiple) FP/vector registers,
5cd83f
+	 *   instead of via implicit reference.
5cd83f
+	 * * small structs (up to 16 bytes) are return
5cd83f
+	 *   in one or two GPRs, instead of via implicit reference.
5cd83f
+	 *
5cd83f
+	 * Other structures (larger than 16 bytes, not heterogeneous)
5cd83f
+	 * are still returned via implicit reference (i.e. a pointer
5cd83f
+	 * to memory where to return the struct being passed in r3).
5cd83f
+	 * Of course, whether or not an implicit reference pointer
5cd83f
+	 * is present will shift the remaining arguments,
5cd83f
+	 * so you need to get this right for ELFv2 in order
5cd83f
+	 * to get the arguments correct.
5cd83f
+	 * If an actual parameter is known to correspond to an HFA
5cd83f
+	 * formal parameter, each element is passed in the next
5cd83f
+	 * available floating-point argument register starting at fp1
5cd83f
+	 * until the fp13. The remaining elements of the aggregate are
5cd83f
+	 * passed on the stack.  */
5cd83f
+	size_t slot_off = 0;
5cd83f
+
5cd83f
+	unsigned char *buf = value_reserve(valuep, sz);
5cd83f
+	if (buf == NULL)
5cd83f
+		return -1;
5cd83f
+
5cd83f
+	struct arg_type_info *hfa_info = type_get_simple(hfa_type);
5cd83f
+	size_t hfa_sz = type_sizeof(proc, hfa_info);
5cd83f
+
5cd83f
+	if (hfa_count > 8)
5cd83f
+		ctx->struct_hfa_count += hfa_count;
5cd83f
+
5cd83f
+	while (hfa_count > 0 && ctx->freg <= 13) {
5cd83f
+		int rc;
5cd83f
+		struct value tmp;
5cd83f
+
5cd83f
+		value_init(&tmp, proc, NULL, hfa_info, 0);
5cd83f
+
5cd83f
+		/* Hetereogeneous struct - get value on GPR or stack.  */
5cd83f
+		if (((hfa_type == ARGTYPE_FLOAT
5cd83f
+		    || hfa_type == ARGTYPE_DOUBLE)
5cd83f
+		      && hfa_count <= 8))
5cd83f
+			rc = allocate_float(ctx, proc, hfa_info, &tmp,
5cd83f
+						slot_off, true);
5cd83f
+		else
5cd83f
+			rc = allocate_gpr(ctx, proc, hfa_info, &tmp,
5cd83f
+						slot_off, true);
5cd83f
+
5cd83f
+		memcpy(buf, value_get_data(&tmp, NULL), hfa_sz);
5cd83f
+
5cd83f
+		slot_off += hfa_sz;
5cd83f
+		buf += hfa_sz;
5cd83f
+		hfa_count--;
5cd83f
+		if (slot_off == 8) {
5cd83f
+			slot_off = 0;
5cd83f
+			ctx->vgreg++;
5cd83f
+		}
5cd83f
+
5cd83f
+		value_destroy(&tmp);
5cd83f
+		if (rc < 0)
5cd83f
+			return -1;
5cd83f
+	}
5cd83f
+	if (hfa_count == 0)
5cd83f
+		return 0;
5cd83f
+
5cd83f
+	/* if no remaining FP, GPR corresponding to slot is used
5cd83f
+	* Mostly it is in part of r10.  */
5cd83f
+	if (ctx->struct_hfa_size <= 64 && ctx->vgreg == 10) {
5cd83f
+		while (ctx->vgreg <= 10) {
5cd83f
+			struct value tmp;
5cd83f
+			value_init(&tmp, proc, NULL, hfa_info, 0);
5cd83f
+			union {
5cd83f
+				uint64_t i64;
5cd83f
+				unsigned char buf[0];
5cd83f
+			} u;
5cd83f
+
5cd83f
+			u.i64 = read_gpr(ctx, proc, ctx->vgreg);
5cd83f
+
5cd83f
+			memcpy(buf, u.buf + slot_off, hfa_sz);
5cd83f
+			slot_off += hfa_sz;
5cd83f
+			buf += hfa_sz;
5cd83f
+			hfa_count--;
5cd83f
+			ctx->stack_pointer += hfa_sz;
5cd83f
+			if (slot_off >= 8 ) {
5cd83f
+				slot_off = 0;
5cd83f
+				ctx->vgreg++;
5cd83f
+			}
5cd83f
+			value_destroy(&tmp);
5cd83f
+		}
5cd83f
+	}
5cd83f
+
5cd83f
+	if (hfa_count == 0)
5cd83f
+		return 0;
5cd83f
+
5cd83f
+	/* Remaining values are on stack */
5cd83f
+	while (hfa_count) {
5cd83f
+		struct value tmp;
5cd83f
+		value_init(&tmp, proc, NULL, hfa_info, 0);
5cd83f
+
5cd83f
+		value_in_inferior(&tmp, ctx->stack_pointer);
5cd83f
+		memcpy(buf, value_get_data(&tmp, NULL), hfa_sz);
5cd83f
+		ctx->stack_pointer += hfa_sz;
5cd83f
+		buf += hfa_sz;
5cd83f
+		hfa_count--;
5cd83f
+	}
5cd83f
+	return 0;
5cd83f
 }
5cd83f
+#endif
5cd83f
 
5cd83f
 static int
5cd83f
 allocate_argument(struct fetch_context *ctx, struct process *proc,
5cd83f
@@ -287,13 +458,25 @@ allocate_argument(struct fetch_context *ctx, struct process *proc,
5cd83f
 
5cd83f
 	case ARGTYPE_FLOAT:
5cd83f
 	case ARGTYPE_DOUBLE:
5cd83f
-		return allocate_float(ctx, proc, info, valuep);
5cd83f
+		return allocate_float(ctx, proc, info, valuep,
5cd83f
+					8 - type_sizeof(proc,info), false);
5cd83f
 
5cd83f
 	case ARGTYPE_STRUCT:
5cd83f
 		if (proc->e_machine == EM_PPC) {
5cd83f
 			if (value_pass_by_reference(valuep) < 0)
5cd83f
 				return -1;
5cd83f
 		} else {
5cd83f
+#if _CALL_ELF == 2
5cd83f
+			struct arg_type_info *hfa_info;
5cd83f
+			size_t hfa_size;
5cd83f
+			hfa_info = type_get_hfa_type(info, &hfa_size);
5cd83f
+			if (hfa_info != NULL ) {
5cd83f
+				size_t sz = type_sizeof(proc, info);
5cd83f
+				ctx->struct_size += sz;
5cd83f
+				return allocate_hfa(ctx, proc, info, valuep,
5cd83f
+						hfa_info->type, hfa_size);
5cd83f
+			}
5cd83f
+#endif
5cd83f
 			/* PPC64: Fixed size aggregates and unions passed by
5cd83f
 			 * value are mapped to as many doublewords of the
5cd83f
 			 * parameter save area as the value uses in memory.
5cd83f
@@ -326,6 +509,10 @@ allocate_argument(struct fetch_context *ctx, struct process *proc,
5cd83f
 	size_t sz = type_sizeof(proc, valuep->type);
5cd83f
 	if (sz == (size_t)-1)
5cd83f
 		return -1;
5cd83f
+
5cd83f
+	if (ctx->ret_struct)
5cd83f
+		ctx->struct_size += sz;
5cd83f
+
5cd83f
 	size_t slots = (sz + width - 1) / width;  /* Round up.  */
5cd83f
 	unsigned char *buf = value_reserve(valuep, slots * width);
5cd83f
 	if (buf == NULL)
5cd83f
@@ -346,9 +533,11 @@ allocate_argument(struct fetch_context *ctx, struct process *proc,
5cd83f
 		struct arg_type_info *fp_info
5cd83f
 			= type_get_fp_equivalent(valuep->type);
5cd83f
 		if (fp_info != NULL)
5cd83f
-			rc = allocate_float(ctx, proc, fp_info, &val;;
5cd83f
+			rc = allocate_float(ctx, proc, fp_info, &val,
5cd83f
+					8-type_sizeof(proc,info), false);
5cd83f
 		else
5cd83f
-			rc = allocate_gpr(ctx, proc, long_info, &val;;
5cd83f
+			rc = allocate_gpr(ctx, proc, long_info, &val,
5cd83f
+					0, false);
5cd83f
 
5cd83f
 		if (rc >= 0) {
5cd83f
 			memcpy(ptr, value_get_data(&val, NULL), width);
5cd83f
@@ -363,6 +552,7 @@ allocate_argument(struct fetch_context *ctx, struct process *proc,
5cd83f
 			return rc;
5cd83f
 	}
5cd83f
 
5cd83f
+#ifndef __LITTLE_ENDIAN__
5cd83f
 	/* Small values need post-processing.  */
5cd83f
 	if (sz < width) {
5cd83f
 		switch (info->type) {
5cd83f
@@ -394,6 +584,7 @@ allocate_argument(struct fetch_context *ctx, struct process *proc,
5cd83f
 			break;
5cd83f
 		}
5cd83f
 	}
5cd83f
+#endif
5cd83f
 
5cd83f
 	return 0;
5cd83f
 }
5cd83f
@@ -411,7 +602,22 @@ arch_fetch_retval(struct fetch_context *ctx, enum tof type,
5cd83f
 		  struct process *proc, struct arg_type_info *info,
5cd83f
 		  struct value *valuep)
5cd83f
 {
5cd83f
+	if (fetch_context_init(proc, ctx) < 0)
5cd83f
+		return -1;
5cd83f
+
5cd83f
+#if _CALL_ELF == 2
5cd83f
+	void *ptr = (void *)(ctx->regs.r64[1]+32);
5cd83f
+	uint64_t val = ptrace(PTRACE_PEEKTEXT, proc->pid, ptr, 0);
5cd83f
+
5cd83f
+	if (ctx->ret_struct
5cd83f
+	   && ((ctx->struct_size > 64
5cd83f
+	      || ctx->struct_hfa_count > 8
5cd83f
+	      || (ctx->struct_hfa_size == 0 && ctx->struct_size > 56)
5cd83f
+	      || (ctx->regs.r64[3] == ctx->regs.r64[1]+32)
5cd83f
+	      || (ctx->regs.r64[3] == val )))) {
5cd83f
+#else
5cd83f
 	if (ctx->ret_struct) {
5cd83f
+#endif
5cd83f
 		assert(info->type == ARGTYPE_STRUCT);
5cd83f
 
5cd83f
 		uint64_t addr = read_gpr(ctx, proc, 3);
5cd83f
@@ -424,8 +630,6 @@ arch_fetch_retval(struct fetch_context *ctx, enum tof type,
5cd83f
 		return 0;
5cd83f
 	}
5cd83f
 
5cd83f
-	if (fetch_context_init(proc, ctx) < 0)
5cd83f
-		return -1;
5cd83f
 	return allocate_argument(ctx, proc, info, valuep);
5cd83f
 }
5cd83f
 
5cd83f
diff --git a/sysdeps/linux-gnu/ppc/plt.c b/sysdeps/linux-gnu/ppc/plt.c
5cd83f
index 332daa8..45ed7fb 100644
5cd83f
--- a/sysdeps/linux-gnu/ppc/plt.c
5cd83f
+++ b/sysdeps/linux-gnu/ppc/plt.c
5cd83f
@@ -136,7 +136,11 @@
5cd83f
  */
5cd83f
 
5cd83f
 #define PPC_PLT_STUB_SIZE 16
5cd83f
-#define PPC64_PLT_STUB_SIZE 8 //xxx
5cd83f
+#if _CALL_ELF != 2
5cd83f
+#define PPC64_PLT_STUB_SIZE 8
5cd83f
+#else
5cd83f
+#define PPC64_PLT_STUB_SIZE 4
5cd83f
+#endif
5cd83f
 
5cd83f
 static inline int
5cd83f
 host_powerpc64()
5cd83f
@@ -186,8 +190,13 @@ ppc32_delayed_symbol(struct library_symbol *libsym)
5cd83f
 	if ((insn1 & BRANCH_MASK) == B_INSN
5cd83f
 	    || ((insn2 & BRANCH_MASK) == B_INSN
5cd83f
 		/* XXX double cast  */
5cd83f
+#ifdef __LITTLE_ENDIAN__
5cd83f
+		&& (ppc_branch_dest(libsym->enter_addr + 4, insn1)
5cd83f
+		    == (arch_addr_t) (long) libsym->lib->arch.pltgot_addr)))
5cd83f
+#else
5cd83f
 		&& (ppc_branch_dest(libsym->enter_addr + 4, insn2)
5cd83f
 		    == (arch_addr_t) (long) libsym->lib->arch.pltgot_addr)))
5cd83f
+#endif
5cd83f
 	{
5cd83f
 		mark_as_resolved(libsym, libsym->arch.resolved_value);
5cd83f
 	}
5cd83f
@@ -206,7 +215,7 @@ arch_dynlink_done(struct process *proc)
5cd83f
 				"couldn't read PLT value for %s(%p): %s\n",
5cd83f
 				libsym->name, libsym->enter_addr,
5cd83f
 				strerror(errno));
5cd83f
-			return;
5cd83f
+				return;
5cd83f
 		}
5cd83f
 
5cd83f
 		if (proc->e_machine == EM_PPC)
5cd83f
@@ -227,8 +236,14 @@ reloc_is_irelative(int machine, GElf_Rela *rela)
5cd83f
 {
5cd83f
 	bool irelative = false;
5cd83f
 	if (machine == EM_PPC64) {
5cd83f
-#ifdef R_PPC64_JMP_IREL
5cd83f
+#ifdef __LITTLE_ENDIAN__
5cd83f
+# ifdef R_PPC64_IRELATIVE
5cd83f
+		irelative = GELF_R_TYPE(rela->r_info) == R_PPC64_IRELATIVE;
5cd83f
+# endif
5cd83f
+#else
5cd83f
+# ifdef R_PPC64_JMP_IREL
5cd83f
 		irelative = GELF_R_TYPE(rela->r_info) == R_PPC64_JMP_IREL;
5cd83f
+# endif
5cd83f
 #endif
5cd83f
 	} else {
5cd83f
 		assert(machine == EM_PPC);
5cd83f
@@ -285,6 +300,7 @@ arch_translate_address_dyn(struct process *proc,
5cd83f
 			   arch_addr_t addr, arch_addr_t *ret)
5cd83f
 {
5cd83f
 	if (proc->e_machine == EM_PPC64) {
5cd83f
+#if _CALL_ELF != 2
5cd83f
 		uint64_t value;
5cd83f
 		if (proc_read_64(proc, addr, &value) < 0) {
5cd83f
 			fprintf(stderr,
5cd83f
@@ -296,6 +312,7 @@ arch_translate_address_dyn(struct process *proc,
5cd83f
 		 * arch_addr_t becomes integral type.  */
5cd83f
 		*ret = (arch_addr_t)(uintptr_t)value;
5cd83f
 		return 0;
5cd83f
+#endif
5cd83f
 	}
5cd83f
 
5cd83f
 	*ret = addr;
5cd83f
@@ -306,7 +323,8 @@ int
5cd83f
 arch_translate_address(struct ltelf *lte,
5cd83f
 		       arch_addr_t addr, arch_addr_t *ret)
5cd83f
 {
5cd83f
-	if (lte->ehdr.e_machine == EM_PPC64) {
5cd83f
+	if (lte->ehdr.e_machine == EM_PPC64
5cd83f
+	    && !lte->arch.elfv2_abi) {
5cd83f
 		/* XXX The double cast should be removed when
5cd83f
 		 * arch_addr_t becomes integral type.  */
5cd83f
 		GElf_Xword offset
5cd83f
@@ -430,7 +448,16 @@ reloc_copy_if_irelative(GElf_Rela *rela, void *data)
5cd83f
 int
5cd83f
 arch_elf_init(struct ltelf *lte, struct library *lib)
5cd83f
 {
5cd83f
+
5cd83f
+	/* Check for ABIv2 in ELF header processor specific flag.  */
5cd83f
+#ifndef EF_PPC64_ABI
5cd83f
+	assert (! (lte->ehdr.e_flags & 3 ) == 2)
5cd83f
+#else
5cd83f
+	lte->arch.elfv2_abi=((lte->ehdr.e_flags & EF_PPC64_ABI) == 2) ;
5cd83f
+#endif
5cd83f
+
5cd83f
 	if (lte->ehdr.e_machine == EM_PPC64
5cd83f
+	    && !lte->arch.elfv2_abi
5cd83f
 	    && load_opd_data(lte, lib) < 0)
5cd83f
 		return -1;
5cd83f
 
5cd83f
@@ -599,7 +626,7 @@ read_plt_slot_value(struct process *proc, GElf_Addr addr, GElf_Addr *valp)
5cd83f
 	uint64_t l;
5cd83f
 	/* XXX double cast.  */
5cd83f
 	if (proc_read_64(proc, (arch_addr_t)(uintptr_t)addr, &l) < 0) {
5cd83f
-		fprintf(stderr, "ptrace .plt slot value @%#" PRIx64": %s\n",
5cd83f
+		debug(DEBUG_EVENT, "ptrace .plt slot value @%#" PRIx64": %s",
5cd83f
 			addr, strerror(errno));
5cd83f
 		return -1;
5cd83f
 	}
5cd83f
@@ -616,7 +643,7 @@ unresolve_plt_slot(struct process *proc, GElf_Addr addr, GElf_Addr value)
5cd83f
 	 * pointers intact.  Hence the only adjustment that we need to
5cd83f
 	 * do is to IP.  */
5cd83f
 	if (ptrace(PTRACE_POKETEXT, proc->pid, addr, value) < 0) {
5cd83f
-		fprintf(stderr, "failed to unresolve .plt slot: %s\n",
5cd83f
+		debug(DEBUG_EVENT, "failed to unresolve .plt slot: %s",
5cd83f
 			strerror(errno));
5cd83f
 		return -1;
5cd83f
 	}
5cd83f
@@ -629,9 +656,48 @@ arch_elf_add_func_entry(struct process *proc, struct ltelf *lte,
5cd83f
 			arch_addr_t addr, const char *name,
5cd83f
 			struct library_symbol **ret)
5cd83f
 {
5cd83f
-	if (lte->ehdr.e_machine != EM_PPC || lte->ehdr.e_type == ET_DYN)
5cd83f
+#ifndef PPC64_LOCAL_ENTRY_OFFSET
5cd83f
+	assert(! lte->arch.elfv2_abi);
5cd83f
+#else
5cd83f
+	/* With ABIv2 st_other field contains an offset.  */
5cd83f
+	 if (lte->arch.elfv2_abi)
5cd83f
+		addr += PPC64_LOCAL_ENTRY_OFFSET(sym->st_other);
5cd83f
+#endif
5cd83f
+
5cd83f
+	int st_info = GELF_ST_TYPE(sym->st_info);
5cd83f
+
5cd83f
+	if ((lte->ehdr.e_machine != EM_PPC && sym->st_other == 0)
5cd83f
+	    || lte->ehdr.e_type == ET_DYN
5cd83f
+	    || (st_info == STT_FUNC && ! sym->st_other))
5cd83f
 		return PLT_DEFAULT;
5cd83f
 
5cd83f
+	if (st_info == STT_FUNC) {
5cd83f
+		/* Put the default symbol to the chain.
5cd83f
+		 * The addr has already been updated with
5cd83f
+		 * symbol offset  */
5cd83f
+		char *full_name = strdup(name);
5cd83f
+		if (full_name == NULL) {
5cd83f
+			fprintf(stderr, "couldn't copy name of %s: %s\n",
5cd83f
+			name, strerror(errno));
5cd83f
+			free(full_name);
5cd83f
+			return PLT_FAIL;
5cd83f
+		}
5cd83f
+		struct library_symbol *libsym = malloc(sizeof *libsym);
5cd83f
+		if (libsym == NULL
5cd83f
+		    || library_symbol_init(libsym, addr, full_name, 1,
5cd83f
+					   LS_TOPLT_NONE) < 0) {
5cd83f
+			free(libsym);
5cd83f
+			delete_symbol_chain(libsym);
5cd83f
+			libsym = NULL;
5cd83f
+			fprintf(stderr, "Couldn't add symbol %s"
5cd83f
+				"for tracing.\n", name);
5cd83f
+		}
5cd83f
+		full_name = NULL;
5cd83f
+		libsym->next = *ret;
5cd83f
+		*ret = libsym;
5cd83f
+		return PLT_OK;
5cd83f
+	}
5cd83f
+
5cd83f
 	bool ifunc = false;
5cd83f
 #ifdef STT_GNU_IFUNC
5cd83f
 	ifunc = GELF_ST_TYPE(sym->st_info) == STT_GNU_IFUNC;
5cd83f
@@ -761,9 +827,15 @@ arch_elf_add_plt_entry(struct process *proc, struct ltelf *lte,
5cd83f
 	assert(plt_slot_addr >= lte->plt_addr
5cd83f
 	       || plt_slot_addr < lte->plt_addr + lte->plt_size);
5cd83f
 
5cd83f
+	/* Should avoid to do read if dynamic linker hasn't run yet
5cd83f
+	 * or allow -1 a valid return code.  */
5cd83f
 	GElf_Addr plt_slot_value;
5cd83f
-	if (read_plt_slot_value(proc, plt_slot_addr, &plt_slot_value) < 0)
5cd83f
-		goto fail;
5cd83f
+	if (read_plt_slot_value(proc, plt_slot_addr, &plt_slot_value) < 0) {
5cd83f
+		if (!lte->arch.elfv2_abi)
5cd83f
+			goto fail;
5cd83f
+		else
5cd83f
+			return PPC_PLT_UNRESOLVED;
5cd83f
+	}
5cd83f
 
5cd83f
 	struct library_symbol *libsym = malloc(sizeof(*libsym));
5cd83f
 	if (libsym == NULL) {
5cd83f
@@ -997,8 +1069,12 @@ ppc_plt_bp_continue(struct breakpoint *bp, struct process *proc)
5cd83f
 			return;
5cd83f
 		}
5cd83f
 
5cd83f
+#if _CALL_ELF == 2
5cd83f
+		continue_after_breakpoint(proc, bp);
5cd83f
+#else
5cd83f
 		jump_to_entry_point(proc, bp);
5cd83f
 		continue_process(proc->pid);
5cd83f
+#endif
5cd83f
 		return;
5cd83f
 
5cd83f
 	case PPC64_PLT_STUB:
5cd83f
@@ -1123,7 +1199,11 @@ arch_library_symbol_init(struct library_symbol *libsym)
5cd83f
 	/* We set type explicitly in the code above, where we have the
5cd83f
 	 * necessary context.  This is for calls from ltrace-elf.c and
5cd83f
 	 * such.  */
5cd83f
+#if _CALL_ELF == 2
5cd83f
+	libsym->arch.type = PPC_PLT_UNRESOLVED;
5cd83f
+#else
5cd83f
 	libsym->arch.type = PPC_DEFAULT;
5cd83f
+#endif
5cd83f
 	return 0;
5cd83f
 }
5cd83f
 
5cd83f
diff --git a/sysdeps/linux-gnu/ppc/trace.c b/sysdeps/linux-gnu/ppc/trace.c
5cd83f
index ee9a6b5..5aab538 100644
5cd83f
--- a/sysdeps/linux-gnu/ppc/trace.c
5cd83f
+++ b/sysdeps/linux-gnu/ppc/trace.c
5cd83f
@@ -65,9 +65,15 @@ syscall_p(struct process *proc, int status, int *sysnum)
5cd83f
 	if (WIFSTOPPED(status)
5cd83f
 	    && WSTOPSIG(status) == (SIGTRAP | proc->tracesysgood)) {
5cd83f
 		long pc = (long)get_instruction_pointer(proc);
5cd83f
+#ifndef __LITTLE_ENDIAN__
5cd83f
 		int insn =
5cd83f
 		    (int)ptrace(PTRACE_PEEKTEXT, proc->pid, pc - sizeof(long),
5cd83f
 				0);
5cd83f
+#else
5cd83f
+		int insn =
5cd83f
+		    (int)ptrace(PTRACE_PEEKTEXT, proc->pid, pc - sizeof(int),
5cd83f
+				0);
5cd83f
+#endif
5cd83f
 
5cd83f
 		if (insn == SYSCALL_INSN) {
5cd83f
 			*sysnum =
5cd83f
diff -up ltrace-0.7.91/sysdeps/linux-gnu/ppc/trace.c\~ ltrace-0.7.91/sysdeps/linux-gnu/ppc/trace.c
5cd83f
--- ltrace-0.7.91/sysdeps/linux-gnu/ppc/trace.c~	2014-08-08 14:05:58.000000000 +0200
5cd83f
+++ ltrace-0.7.91/sysdeps/linux-gnu/ppc/trace.c	2014-08-08 14:07:55.000000000 +0200
5cd83f
@@ -133,7 +133,11 @@ arch_sw_singlestep(struct process *proc,
5cd83f
 			return SWS_FAIL;
5cd83f
 		uint32_t insn;
5cd83f
 #ifdef __powerpc64__
5cd83f
+# ifdef __LITTLE_ENDIAN__
5cd83f
+		insn = (uint32_t) l;
5cd83f
+# else
5cd83f
 		insn = l >> 32;
5cd83f
+# endif
5cd83f
 #else
5cd83f
 		insn = l;
5cd83f
 #endif
5cd83f
diff -up ltrace-0.7.91/configure\~ ltrace-0.7.91/configure
5cd83f
--- ltrace-0.7.91/configure~	2014-08-08 14:09:12.000000000 +0200
5cd83f
+++ ltrace-0.7.91/configure	2014-08-08 14:18:30.000000000 +0200
5cd83f
@@ -2555,7 +2555,7 @@ case "${host_cpu}" in
5cd83f
     arm*|sa110)		HOST_CPU="arm" ;;
5cd83f
     cris*)		HOST_CPU="cris" ;;
5cd83f
     mips*)		HOST_CPU="mips" ;;
5cd83f
-    powerpc|powerpc64)	HOST_CPU="ppc" ;;
5cd83f
+    powerpc|powerpc64|powerpc64le)	HOST_CPU="ppc" ;;
5cd83f
     sun4u|sparc64)	HOST_CPU="sparc" ;;
5cd83f
     s390x)		HOST_CPU="s390" ;;
5cd83f
     i?86|x86_64)	HOST_CPU="x86" ;;
5cd83f
@@ -12094,7 +12094,7 @@ if test x"$enable_libunwind" = xyes; the
5cd83f
       arm*|sa110)         UNWIND_ARCH="arm" ;;
5cd83f
       i?86)               UNWIND_ARCH="x86" ;;
5cd83f
       powerpc)            UNWIND_ARCH="ppc32" ;;
5cd83f
-      powerpc64)          UNWIND_ARCH="ppc64" ;;
5cd83f
+      powerpc64|powerpc64le)          UNWIND_ARCH="ppc64" ;;
5cd83f
       mips*)              UNWIND_ARCH="mips" ;;
5cd83f
       *)                  UNWIND_ARCH="${host_cpu}" ;;
5cd83f
   esac