1 /* 2 * Copyright (C) 2010 Marcin Kościelnicki <koriakin@0x04.net> 3 * All Rights Reserved. 4 * 5 * Permission is hereby granted, free of charge, to any person obtaining a 6 * copy of this software and associated documentation files (the "Software"), 7 * to deal in the Software without restriction, including without limitation 8 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 9 * and/or sell copies of the Software, and to permit persons to whom the 10 * Software is furnished to do so, subject to the following conditions: 11 * 12 * The above copyright notice and this permission notice (including the next 13 * paragraph) shall be included in all copies or substantial portions of the 14 * Software. 15 * 16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 19 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 * OTHER DEALINGS IN THE SOFTWARE. 23 */ 24 25 #ifndef RNNDEC_H 26 #define RNNDEC_H 27 28 #include "rnn.h" 29 #include "colors.h" 30 31 struct rnndecvariant { 32 struct rnnenum *en; 33 int variant; 34 }; 35 36 struct rnndeccontext { 37 struct rnndb *db; 38 struct rnndecvariant **vars; 39 int varsnum; 40 int varsmax; 41 const struct envy_colors *colors; 42 }; 43 44 struct rnndecaddrinfo { 45 struct rnntypeinfo *typeinfo; 46 int width; 47 char *name; 48 }; 49 50 struct rnndeccontext *rnndec_newcontext(struct rnndb *db); 51 int rnndec_varadd(struct rnndeccontext *ctx, char *varset, const char *variant); 52 int rnndec_varmatch(struct rnndeccontext *ctx, struct rnnvarinfo *vi); 53 const char *rnndec_decode_enum(struct rnndeccontext *ctx, const char *enumname, uint64_t enumval); 54 char *rnndec_decodeval(struct rnndeccontext *ctx, struct rnntypeinfo *ti, uint64_t value); 55 int rnndec_checkaddr(struct rnndeccontext *ctx, struct rnndomain *domain, uint64_t addr, int write); 56 struct rnndecaddrinfo *rnndec_decodeaddr(struct rnndeccontext *ctx, struct rnndomain *domain, uint64_t addr, int write); 57 uint64_t rnndec_decodereg(struct rnndeccontext *ctx, struct rnndomain *domain, const char *name); 58 59 #endif 60