#include <sys/param.h>
#include <sys/kernel.h>
#include <sys/malloc.h>
#include <sys/lock.h>
#include <sys/mutex.h>
#include <sys/refcount.h>
#include <sys/rwlock.h>
#include <sys/hwt.h>
#include <vm/vm.h>
#include <vm/vm_param.h>
#include <vm/vm_kern.h>
#include <vm/vm_page.h>
#include <vm/vm_object.h>
#include <vm/vm_pager.h>
#include <vm/vm_pageout.h>
#include <vm/vm_phys.h>
#include <dev/hwt/hwt_hook.h>
#include <dev/hwt/hwt_context.h>
#include <dev/hwt/hwt_contexthash.h>
#include <dev/hwt/hwt_config.h>
#include <dev/hwt/hwt_thread.h>
#include <dev/hwt/hwt_owner.h>
#include <dev/hwt/hwt_ownerhash.h>
#include <dev/hwt/hwt_backend.h>
#include <dev/hwt/hwt_vm.h>
#include <dev/hwt/hwt_record.h>
#define HWT_THREAD_DEBUG
#undef HWT_THREAD_DEBUG
#ifdef HWT_THREAD_DEBUG
#define dprintf(fmt, ...) printf(fmt, ##__VA_ARGS__)
#else
#define dprintf(fmt, ...)
#endif
static MALLOC_DEFINE(M_HWT_THREAD, "hwt_thread", "Hardware Trace");
struct hwt_thread *
hwt_thread_first(struct hwt_context *ctx)
{
struct hwt_thread *thr;
HWT_CTX_ASSERT_LOCKED(ctx);
thr = TAILQ_FIRST(&ctx->threads);
KASSERT(thr != NULL, ("thr is NULL"));
return (thr);
}
struct hwt_thread *
hwt_thread_lookup(struct hwt_context *ctx, struct thread *td)
{
struct hwt_thread *thr;
HWT_CTX_LOCK(ctx);
TAILQ_FOREACH(thr, &ctx->threads, next) {
if (thr->td == td) {
HWT_CTX_UNLOCK(ctx);
return (thr);
}
}
HWT_CTX_UNLOCK(ctx);
return (NULL);
}
int
hwt_thread_alloc(struct hwt_thread **thr0, char *path, size_t bufsize,
int kva_req)
{
struct hwt_thread *thr;
struct hwt_vm *vm;
int error;
error = hwt_vm_alloc(bufsize, kva_req, path, &vm);
if (error)
return (error);
thr = malloc(sizeof(struct hwt_thread), M_HWT_THREAD,
M_WAITOK | M_ZERO);
thr->vm = vm;
mtx_init(&thr->mtx, "thr", NULL, MTX_DEF);
refcount_init(&thr->refcnt, 1);
vm->thr = thr;
*thr0 = thr;
return (0);
}
void
hwt_thread_free(struct hwt_thread *thr)
{
hwt_vm_free(thr->vm);
if (thr->private != NULL)
hwt_backend_thread_free(thr);
free(thr, M_HWT_THREAD);
}
void
hwt_thread_insert(struct hwt_context *ctx, struct hwt_thread *thr,
struct hwt_record_entry *entry)
{
HWT_CTX_ASSERT_LOCKED(ctx);
TAILQ_INSERT_TAIL(&ctx->threads, thr, next);
TAILQ_INSERT_TAIL(&ctx->records, entry, next);
}