/* -*- mode: C; c-file-style: "k&r"; tab-width 4; indent-tabs-mode: t; -*- */ /* * Copyright (C) 2014 Rob Clark * * Permission is hereby granted, free of charge, to any person obtaining a * copy of this software and associated documentation files (the "Software"), * to deal in the Software without restriction, including without limitation * the rights to use, copy, modify, merge, publish, distribute, sublicense, * and/or sell copies of the Software, and to permit persons to whom the * Software is furnished to do so, subject to the following conditions: * * The above copyright notice and this permission notice (including the next * paragraph) shall be included in all copies or substantial portions of the * Software. * * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE * SOFTWARE. * * Authors: * Rob Clark */ #ifndef RNNUTIL_H_ #define RNNUTIL_H_ #include #include #include #include "rnn.h" #include "rnndec.h" struct rnn { struct rnndb *db; struct rnndeccontext *vc, *vc_nocolor; struct rnndomain *dom[2]; const char *variant; }; union rnndecval { uint64_t u; int64_t i; }; void _rnn_init(struct rnn *rnn, int nocolor); struct rnn *rnn_new(int nocolor); void rnn_load_file(struct rnn *rnn, char *file, char *domain); void rnn_load(struct rnn *rnn, const char *gpuname); uint32_t rnn_regbase(struct rnn *rnn, const char *name); const char *rnn_regname(struct rnn *rnn, uint32_t regbase, int color); struct rnndecaddrinfo *rnn_reginfo(struct rnn *rnn, uint32_t regbase); void rnn_reginfo_free(struct rnndecaddrinfo *info); const char *rnn_enumname(struct rnn *rnn, const char *name, uint32_t val); struct rnndelem *rnn_regelem(struct rnn *rnn, const char *name); struct rnndelem *rnn_regoff(struct rnn *rnn, uint32_t offset); enum rnnttype rnn_decodelem(struct rnn *rnn, struct rnntypeinfo *info, uint64_t regval, union rnndecval *val); #endif /* RNNUTIL_H_ */