Home
last modified time | relevance | path

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

/external/mesa3d/src/gallium/drivers/r600/sfn/
Dsfn_instruction_lds.cpp5 void LDSReadInstruction::do_print(std::ostream& os) const in do_print()
15 LDSReadInstruction::LDSReadInstruction(std::vector<PValue>& address, std::vector<PValue>& value): in LDSReadInstruction() function in r600::LDSReadInstruction
28 void LDSReadInstruction::replace_values(const ValueSet& candiates, PValue new_value) in replace_values()
43 bool LDSReadInstruction::is_equal_to(const Instruction& lhs) const in is_equal_to()
45 auto& other = static_cast<const LDSReadInstruction&>(lhs); in is_equal_to()
Dsfn_instruction_lds.h8 class LDSReadInstruction : public Instruction {
10 LDSReadInstruction(std::vector<PValue>& value, std::vector<PValue>& address);
Dsfn_ir_to_assembly.cpp69 bool emit_ldsread(const LDSReadInstruction& instr);
203 return emit_ldsread(static_cast<const LDSReadInstruction&>(*i)); in emit()
950 bool AssemblyFromShaderLegacyImpl::emit_ldsread(const LDSReadInstruction& instr) in emit_ldsread()
Dsfn_shader_base.cpp553 emit_instruction(new LDSReadInstruction(address, dest_value)); in emit_load_local_shared()