Home
last modified time | relevance | path

Searched refs:emitGPR (Results 1 – 3 of 3) sorted by relevance

/external/mesa3d/src/gallium/drivers/nouveau/codegen/
Dnv50_ir_emit_gm107.cpp61 inline void emitGPR(int, const Value *);
62 inline void emitGPR(int pos) { in emitGPR() function in nv50_ir::CodeEmitterGM107
63 emitGPR(pos, (const Value *)NULL); in emitGPR()
65 inline void emitGPR(int pos, const ValueRef &ref) { in emitGPR() function in nv50_ir::CodeEmitterGM107
66 emitGPR(pos, ref.get() ? ref.rep() : (const Value *)NULL); in emitGPR()
68 inline void emitGPR(int pos, const ValueRef *ref) { in emitGPR() function in nv50_ir::CodeEmitterGM107
69 emitGPR(pos, ref ? ref->rep() : (const Value *)NULL); in emitGPR()
71 inline void emitGPR(int pos, const ValueDef &def) { in emitGPR() function in nv50_ir::CodeEmitterGM107
72 emitGPR(pos, def.get() ? def.rep() : (const Value *)NULL); in emitGPR()
260 CodeEmitterGM107::emitGPR(int pos, const Value *val) in emitGPR() function in nv50_ir::CodeEmitterGM107
[all …]
Dnv50_ir_emit_gv100.cpp65 emitGPR (64, insn->src(src1 & FA_SRC_MASK)); in emitFormA_RRC()
81 emitGPR (64, insn->src(src1 & FA_SRC_MASK)); in emitFormA_RRI()
94 emitGPR (64, insn->src(src2 & FA_SRC_MASK)); in emitFormA_RRR()
100 emitGPR (32, insn->src(src1 & FA_SRC_MASK)); in emitFormA_RRR()
147 emitGPR(24, insn->src(src0 & FA_SRC_MASK)); in emitFormA()
151 emitGPR(16, insn->def(0)); in emitFormA()
212 emitGPR (16, insn->def(0)); in emitCS2R()
310 emitGPR (16, insn->def(0)); in emitMOV()
311 emitGPR (24); in emitMOV()
329 emitGPR (24, insn->src(0)); in emitMOV()
[all …]
Dnv50_ir_emit_gv100.h231 inline void emitGPR(int pos, const Value *val, int off) { in emitGPR() function
236 inline void emitGPR(int pos, const Value *v) { in emitGPR() function
237 emitGPR(pos, v, 0); in emitGPR()
240 inline void emitGPR(int pos) { in emitGPR() function
241 emitGPR(pos, (const Value *)NULL); in emitGPR()
244 inline void emitGPR(int pos, const ValueRef &ref) { in emitGPR() function
245 emitGPR(pos, ref.get() ? ref.rep() : (const Value *)NULL); in emitGPR()
248 inline void emitGPR(int pos, const ValueRef *ref) { in emitGPR() function
249 emitGPR(pos, ref ? ref->rep() : (const Value *)NULL); in emitGPR()
252 inline void emitGPR(int pos, const ValueDef &def) { in emitGPR() function
[all …]