Searched refs:prog_scope (Results 1 – 3 of 3) sorted by relevance
/external/mesa3d/src/gallium/drivers/r600/sfn/ |
D | sfn_liverange.h | 64 class prog_scope { 66 prog_scope(); 67 prog_scope(prog_scope *parent, prog_scope_type type, int id, 71 prog_scope *parent() const; 78 const prog_scope *in_else_scope() const; 79 const prog_scope *in_ifelse_scope() const; 80 const prog_scope *in_parent_ifelse_scope() const; 81 const prog_scope *innermost_loop() const; 82 const prog_scope *outermost_loop() const; 83 const prog_scope *enclosing_conditional() const; [all …]
|
D | sfn_liverange.cpp | 64 prog_scope* 65 prog_scope_storage::create(prog_scope *p, prog_scope_type type, int id, in create() 68 storage[current_slot] = prog_scope(p, type, id, lvl, s_begin); in create() 72 prog_scope::prog_scope(prog_scope *parent, prog_scope_type type, int id, in prog_scope() function in r600::prog_scope 84 prog_scope::prog_scope(): in prog_scope() function in r600::prog_scope 85 prog_scope(nullptr, undefined_scope, -1, -1, -1) in prog_scope() 89 prog_scope_type prog_scope::type() const in type() 94 prog_scope *prog_scope::parent() const in parent() 99 int prog_scope::nesting_depth() const in nesting_depth() 104 bool prog_scope::is_loop() const in is_loop() [all …]
|
/external/mesa3d/src/mesa/state_tracker/ |
D | st_glsl_to_tgsi_temprename.cpp | 94 class prog_scope { class 96 prog_scope(prog_scope *parent, prog_scope_type type, int id, 100 prog_scope *parent() const; 107 const prog_scope *in_else_scope() const; 108 const prog_scope *in_ifelse_scope() const; 109 const prog_scope *in_parent_ifelse_scope() const; 110 const prog_scope *innermost_loop() const; 111 const prog_scope *outermost_loop() const; 112 const prog_scope *enclosing_conditional() const; 118 bool is_child_of(const prog_scope *scope) const; [all …]
|