Home
last modified time | relevance | path

Searched refs:ElseInstruction (Results 1 – 4 of 4) sorted by relevance

/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instruction_cf.cpp69 ElseInstruction::ElseInstruction(IfInstruction *jump_src): in ElseInstruction() function in r600::ElseInstruction
75 void ElseInstruction::do_evalue_liveness(LiverangeEvaluator& eval) const in do_evalue_liveness()
81 bool ElseInstruction::is_equal_to(const Instruction& lhs) const in is_equal_to()
85 auto& l = static_cast<const ElseInstruction&>(lhs); in is_equal_to()
89 void ElseInstruction::do_print(std::ostream& os) const in do_print()
Dsfn_instruction_cf.h55 class ElseInstruction : public IfElseInstruction {
57 ElseInstruction(IfInstruction *jump_src);
Dsfn_ir_to_assembly.cpp56 bool emit_else(const ElseInstruction & else_instr);
175 return emit_else(static_cast<const ElseInstruction&>(*i)); in emit()
524 bool AssemblyFromShaderLegacyImpl::emit_else(UNUSED const ElseInstruction & else_instr) in emit_else()
Dsfn_shader_base.cpp505 ElseInstruction *ir = new ElseInstruction(if_instr); in emit_else_start()