aboutsummaryrefslogtreecommitdiff
path: root/lib/libthread_db
diff options
context:
space:
mode:
authorMarius Strobl <marius@FreeBSD.org>2011-08-06 17:50:37 +0000
committerMarius Strobl <marius@FreeBSD.org>2011-08-06 17:50:37 +0000
commit70b9a9a9f6db4731b0c0d56713f96fa414957dd7 (patch)
treedd5ff5105fcebee222b7332f027f7cb384d7cf87 /lib/libthread_db
parent21a305d4af4491e445fa677f04e602c5d834f079 (diff)
Notes
Diffstat (limited to 'lib/libthread_db')
-rw-r--r--lib/libthread_db/arch/sparc64/libpthread_md.c35
1 files changed, 30 insertions, 5 deletions
diff --git a/lib/libthread_db/arch/sparc64/libpthread_md.c b/lib/libthread_db/arch/sparc64/libpthread_md.c
index f5f12d3ff64f..6a84518fa479 100644
--- a/lib/libthread_db/arch/sparc64/libpthread_md.c
+++ b/lib/libthread_db/arch/sparc64/libpthread_md.c
@@ -1,5 +1,6 @@
/*
* Copyright (c) 2004 Marcel Moolenaar
+ * Copyright (c) 2011 Marius Strobl <marius@FreeBSD.org>
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
@@ -27,39 +28,63 @@
#include <sys/cdefs.h>
__FBSDID("$FreeBSD$");
-#include <sys/procfs.h>
+#include <sys/types.h>
+#include <string.h>
#include <thread_db.h>
#include <ucontext.h>
+#include <machine/fsr.h>
#include "libpthread_db.h"
void
-pt_reg_to_ucontext(const struct reg *r __unused, ucontext_t *uc __unused)
+pt_reg_to_ucontext(const struct reg *r, ucontext_t *uc)
{
+
+ memcpy(&uc->uc_mcontext, r, MIN(sizeof(uc->uc_mcontext), sizeof(*r)));
}
void
-pt_ucontext_to_reg(const ucontext_t *uc __unused, struct reg *r __unused)
+pt_ucontext_to_reg(const ucontext_t *uc, struct reg *r)
{
+
+ memcpy(r, &uc->uc_mcontext, MIN(sizeof(uc->uc_mcontext), sizeof(*r)));
}
void
-pt_fpreg_to_ucontext(const struct fpreg* r __unused, ucontext_t *uc __unused)
+pt_fpreg_to_ucontext(const struct fpreg* r, ucontext_t *uc)
{
+ mcontext_t *mc = &uc->uc_mcontext;
+
+ memcpy(mc->mc_fp, r->fr_regs, MIN(sizeof(mc->mc_fp),
+ sizeof(r->fr_regs)));
+ mc->mc_fsr = r->fr_fsr;
+ mc->mc_gsr = r->fr_gsr;
+ mc->mc_fprs |= FPRS_FEF;
}
void
-pt_ucontext_to_fpreg(const ucontext_t *uc __unused, struct fpreg *r __unused)
+pt_ucontext_to_fpreg(const ucontext_t *uc, struct fpreg *r)
{
+ const mcontext_t *mc = &uc->uc_mcontext;
+
+ if ((mc->mc_fprs & FPRS_FEF) != 0) {
+ memcpy(r->fr_regs, mc->mc_fp, MIN(sizeof(mc->mc_fp),
+ sizeof(r->fr_regs)));
+ r->fr_fsr = mc->mc_fsr;
+ r->fr_gsr = mc->mc_gsr;
+ } else
+ memset(r, 0, sizeof(*r));
}
void
pt_md_init(void)
{
+
}
int
pt_reg_sstep(struct reg *reg __unused, int step __unused)
{
+
return (0);
}