1 /* 2 * Copyright © 2012 Rob Clark <robclark@freedesktop.org> 3 * 4 * Permission is hereby granted, free of charge, to any person obtaining a 5 * copy of this software and associated documentation files (the "Software"), 6 * to deal in the Software without restriction, including without limitation 7 * the rights to use, copy, modify, merge, publish, distribute, sublicense, 8 * and/or sell copies of the Software, and to permit persons to whom the 9 * Software is furnished to do so, subject to the following conditions: 10 * 11 * The above copyright notice and this permission notice (including the next 12 * paragraph) shall be included in all copies or substantial portions of the 13 * Software. 14 * 15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL 18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 * SOFTWARE. 22 */ 23 24 #ifndef REDUMP_H_ 25 #define REDUMP_H_ 26 27 #include "util/u_math.h" 28 29 enum rd_sect_type { 30 RD_NONE, 31 RD_TEST, /* ascii text */ 32 RD_CMD, /* ascii text */ 33 RD_GPUADDR, /* u32 gpuaddr, u32 size */ 34 RD_CONTEXT, /* raw dump */ 35 RD_CMDSTREAM, /* raw dump */ 36 RD_CMDSTREAM_ADDR, /* gpu addr of cmdstream */ 37 RD_PARAM, /* u32 param_type, u32 param_val, u32 bitlen */ 38 RD_FLUSH, /* empty, clear previous params */ 39 RD_PROGRAM, /* shader program, raw dump */ 40 RD_VERT_SHADER, 41 RD_FRAG_SHADER, 42 RD_BUFFER_CONTENTS, 43 RD_GPU_ID, 44 }; 45 46 /* RD_PARAM types: */ 47 enum rd_param_type { 48 RD_PARAM_SURFACE_WIDTH, 49 RD_PARAM_SURFACE_HEIGHT, 50 RD_PARAM_SURFACE_PITCH, 51 RD_PARAM_COLOR, 52 RD_PARAM_BLIT_X, 53 RD_PARAM_BLIT_Y, 54 RD_PARAM_BLIT_WIDTH, 55 RD_PARAM_BLIT_HEIGHT, 56 RD_PARAM_BLIT_X2, /* BLIT_X + BLIT_WIDTH */ 57 RD_PARAM_BLIT_Y2, /* BLIT_Y + BLIT_WIDTH */ 58 }; 59 60 void rd_start(const char *name, const char *fmt, ...) __attribute__((weak)); 61 void rd_end(void) __attribute__((weak)); 62 void rd_write_section(enum rd_sect_type type, const void *buf, int sz) 63 __attribute__((weak)); 64 65 /* for code that should run with and without libwrap, use the following 66 * macros which check if the fxns are present before calling 67 */ 68 #define RD_START(n, f, ...) \ 69 do { \ 70 if (rd_start) \ 71 rd_start(n, f, ##__VA_ARGS__); \ 72 } while (0) 73 #define RD_END() \ 74 do { \ 75 if (rd_end) \ 76 rd_end(); \ 77 } while (0) 78 #define RD_WRITE_SECTION(t, b, s) \ 79 do { \ 80 if (rd_write_section) \ 81 rd_write_section(t, b, s); \ 82 } while (0) 83 84 #define min(a, b) (((a) < (b)) ? (a) : (b)) 85 #define max(a, b) (((a) > (b)) ? (a) : (b)) 86 87 #endif /* REDUMP_H_ */ 88