Searched refs:sb_context (Results 1 – 13 of 13) sorted by relevance
/external/mesa3d/src/gallium/drivers/r600/sb/ |
D | sb_core.cpp | 48 sb_context *r600_sb_context_create(struct r600_context *rctx) { in r600_sb_context_create() 50 sb_context *sctx = new sb_context(); in r600_sb_context_create() 60 sb_context::dump_pass = df & DBG_SB_DUMP; in r600_sb_context_create() 61 sb_context::dump_stat = df & DBG_SB_STAT; in r600_sb_context_create() 62 sb_context::dry_run = df & DBG_SB_DRY_RUN; in r600_sb_context_create() 63 sb_context::no_fallback = df & DBG_SB_NO_FALLBACK; in r600_sb_context_create() 64 sb_context::safe_math = df & DBG_SB_SAFEMATH; in r600_sb_context_create() 66 sb_context::dskip_start = debug_get_num_option("R600_SB_DSKIP_START", 0); in r600_sb_context_create() 67 sb_context::dskip_end = debug_get_num_option("R600_SB_DSKIP_END", 0); in r600_sb_context_create() 68 sb_context::dskip_mode = debug_get_num_option("R600_SB_DSKIP_MODE", 0); in r600_sb_context_create() [all …]
|
D | sb_context.cpp | 33 unsigned sb_context::dump_pass = 0; 34 unsigned sb_context::dump_stat = 0; 35 unsigned sb_context::dry_run = 0; 36 unsigned sb_context::no_fallback = 0; 37 unsigned sb_context::safe_math = 0; 39 unsigned sb_context::dskip_start = 0; 40 unsigned sb_context::dskip_end = 0; 41 unsigned sb_context::dskip_mode = 0; 43 int sb_context::init(r600_isa *isa, sb_hw_chip chip, sb_hw_class cclass) { in init() 95 const char* sb_context::get_hw_class_name() { in get_hw_class_name() [all …]
|
D | sb_bc.h | 615 class sb_context { 652 sb_context() : src_stats(), opt_stats(), isa(0), in sb_context() function 738 #define SB_DUMP_STAT(a) do { if (sb_context::dump_stat) { a } } while (0) 739 #define SB_DUMP_PASS(a) do { if (sb_context::dump_pass) { a } } while (0) 743 sb_context &ctx; 750 bc_decoder(sb_context &sctx, uint32_t *data, unsigned size) in bc_decoder() 818 sb_context & ctx; 850 bc_parser(sb_context &sctx, r600_bytecode *bc, r600_shader* pshader) : in bc_parser() 958 sb_context &ctx;
|
D | sb_shader.h | 52 class sb_context; variable 251 sb_context &ctx; 312 shader(sb_context &sctx, shader_target t, unsigned id); 316 sb_context &get_ctx() const { return ctx; } in get_ctx()
|
D | sb_shader.cpp | 33 shader::shader(sb_context &sctx, shader_target t, unsigned id) in shader() 495 if (!sb_context::dump_stat) in collect_stats()
|
D | sb_ir.h | 652 class sb_context; variable 1044 void update_packed_items(sb_context &ctx);
|
D | sb_ir.cpp | 317 void alu_packed_node::update_packed_items(sb_context &ctx) { in update_packed_items()
|
D | sb_pass.h | 36 sb_context &ctx;
|
D | sb_bc_parser.cpp | 78 sh->safe_math = sb_context::safe_math || (t == TARGET_COMPUTE); in decode()
|
/external/mesa3d/src/gallium/drivers/r600/ |
D | Makefile.sources | 62 sb/sb_context.cpp \
|
D | meson.build | 79 'sb/sb_context.cpp',
|
D | r600_pipe.c | 72 r600_sb_context_destroy(rctx->sb_context); in r600_destroy_context()
|
D | r600_pipe.h | 584 void *sb_context; member
|