summaryrefslogtreecommitdiff
path: root/src/gallium/drivers/r600/sfn/sfn_emitssboinstruction.h
blob: 5064845d53040249f6d3a2ad58c5d92799242b81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#ifndef SFN_EMITSSBOINSTRUCTION_H
#define SFN_EMITSSBOINSTRUCTION_H

#include "sfn_emitinstruction.h"
#include "sfn_instruction_gds.h"

namespace r600 {

class EmitSSBOInstruction: public EmitInstruction {
public:
   EmitSSBOInstruction(ShaderFromNirProcessor& processor);

   void set_ssbo_offset(int offset);

   void set_require_rat_return_address();
   bool load_rat_return_address();
   bool load_atomic_inc_limits();

private:
   bool do_emit(nir_instr *instr);

   bool emit_atomic(const nir_intrinsic_instr* instr);
   bool emit_unary_atomic(const nir_intrinsic_instr* instr);
   bool emit_atomic_add(const nir_intrinsic_instr* instr);
   bool emit_atomic_inc(const nir_intrinsic_instr* instr);
   bool emit_atomic_pre_dec(const nir_intrinsic_instr* instr);

   bool emit_load_ssbo(const nir_intrinsic_instr* instr);
   bool emit_store_ssbo(const nir_intrinsic_instr* instr);

   bool emit_image_size(const nir_intrinsic_instr *intrin);
   bool emit_image_load(const nir_intrinsic_instr *intrin);
   bool emit_image_store(const nir_intrinsic_instr *intrin);
   bool emit_ssbo_atomic_op(const nir_intrinsic_instr *intrin);

   bool fetch_return_value(const nir_intrinsic_instr *intrin);

   ESDOp get_opcode(nir_intrinsic_op opcode);
   RatInstruction::ERatOp get_rat_opcode(const nir_intrinsic_op opcode, pipe_format format) const;

   GPRVector make_dest(const nir_intrinsic_instr* instr);

   PValue m_atomic_update;

   bool m_require_rat_return_address;
   GPRVector m_rat_return_address;
   int m_ssbo_image_offset;
};

}

#endif // SFN_EMITSSBOINSTRUCTION_H