Home
last modified time | relevance | path

Searched refs:SrcReg (Results 1 – 25 of 358) sorted by relevance

12345678910>>...15

/external/mesa3d/src/mesa/program/
Dprogramopt.c93 newInst[i].SrcReg[0].File = PROGRAM_STATE_VAR; in insert_mvp_dp4_code()
94 newInst[i].SrcReg[0].Index = mvpRef[i]; in insert_mvp_dp4_code()
95 newInst[i].SrcReg[0].Swizzle = SWIZZLE_NOOP; in insert_mvp_dp4_code()
96 newInst[i].SrcReg[1].File = PROGRAM_INPUT; in insert_mvp_dp4_code()
97 newInst[i].SrcReg[1].Index = VERT_ATTRIB_POS; in insert_mvp_dp4_code()
98 newInst[i].SrcReg[1].Swizzle = SWIZZLE_NOOP; in insert_mvp_dp4_code()
164 newInst[0].SrcReg[0].File = PROGRAM_INPUT; in insert_mvp_mad_code()
165 newInst[0].SrcReg[0].Index = VERT_ATTRIB_POS; in insert_mvp_mad_code()
166 newInst[0].SrcReg[0].Swizzle = SWIZZLE_XXXX; in insert_mvp_mad_code()
167 newInst[0].SrcReg[1].File = PROGRAM_STATE_VAR; in insert_mvp_mad_code()
[all …]
Dprog_opt_constant_fold.c39 if (inst->SrcReg[i].File != PROGRAM_CONSTANT) in src_regs_are_constant()
41 if (inst->SrcReg[i].RelAddr) in src_regs_are_constant()
140 get_value(prog, &inst->SrcReg[0], a); in _mesa_constant_fold()
141 get_value(prog, &inst->SrcReg[1], b); in _mesa_constant_fold()
149 inst->SrcReg[0] = src_reg_for_vec4(prog, result); in _mesa_constant_fold()
151 inst->SrcReg[1].File = PROGRAM_UNDEFINED; in _mesa_constant_fold()
152 inst->SrcReg[1].Swizzle = SWIZZLE_NOOP; in _mesa_constant_fold()
169 get_value(prog, &inst->SrcReg[0], a); in _mesa_constant_fold()
170 get_value(prog, &inst->SrcReg[1], b); in _mesa_constant_fold()
171 get_value(prog, &inst->SrcReg[2], c); in _mesa_constant_fold()
[all …]
Dprog_parameter_layout.c131 if (inst->SrcReg[i].Base.RelAddr) { in _mesa_layout_parameters()
134 if (!inst->SrcReg[i].Symbol->pass1_done) { in _mesa_layout_parameters()
137 inst->SrcReg[i].Symbol->param_binding_begin, in _mesa_layout_parameters()
138 inst->SrcReg[i].Symbol->param_binding_length); in _mesa_layout_parameters()
145 inst->SrcReg[i].Symbol->param_binding_begin = new_begin; in _mesa_layout_parameters()
146 inst->SrcReg[i].Symbol->pass1_done = 1; in _mesa_layout_parameters()
153 inst->Base.SrcReg[i] = inst->SrcReg[i].Base; in _mesa_layout_parameters()
154 inst->Base.SrcReg[i].Index += in _mesa_layout_parameters()
155 inst->SrcReg[i].Symbol->param_binding_begin; in _mesa_layout_parameters()
166 const int idx = inst->SrcReg[i].Base.Index; in _mesa_layout_parameters()
[all …]
Dprog_execute.c300 inst->SrcReg[0].File == PROGRAM_INPUT && in fetch_texel()
301 inst->SrcReg[0].Index == VARYING_SLOT_TEX0 + inst->TexSrcUnit) { in fetch_texel()
303 GLuint attr = inst->SrcReg[0].Index; in fetch_texel()
404 fetch_vector4(&inst->SrcReg[0], machine, a); in _mesa_execute_program()
415 fetch_vector4(&inst->SrcReg[0], machine, a); in _mesa_execute_program()
416 fetch_vector4(&inst->SrcReg[1], machine, b); in _mesa_execute_program()
432 fetch_vector4(&inst->SrcReg[0], machine, t); in _mesa_execute_program()
480 fetch_vector4(&inst->SrcReg[0], machine, a); in _mesa_execute_program()
481 fetch_vector4(&inst->SrcReg[1], machine, b); in _mesa_execute_program()
482 fetch_vector4(&inst->SrcReg[2], machine, c); in _mesa_execute_program()
[all …]
Dprog_optimize.c107 const GLuint coord = GET_SWZ(inst->SrcReg[arg].Swizzle, comp); in get_src_arg_mask()
133 src_comp = GET_SWZ(mov->SrcReg[0].Swizzle, comp); in get_dst_mask_for_mov()
218 if (inst->SrcReg[j].File == file) { in replace_regs()
219 GLuint index = inst->SrcReg[j].Index; in replace_regs()
221 inst->SrcReg[j].Index = map[index]; in replace_regs()
264 if (inst->SrcReg[j].File == PROGRAM_TEMPORARY) { in _mesa_remove_dead_code_global()
265 const GLuint index = inst->SrcReg[j].Index; in _mesa_remove_dead_code_global()
270 if (inst->SrcReg[j].RelAddr) { in _mesa_remove_dead_code_global()
277 const GLuint swz = GET_SWZ(inst->SrcReg[j].Swizzle, comp); in _mesa_remove_dead_code_global()
389 if (inst->SrcReg[j].RelAddr || in find_next_use()
[all …]
/external/llvm/lib/Target/PowerPC/
DPPCRegisterInfo.h26 inline static unsigned getCRFromCRBit(unsigned SrcReg) { in getCRFromCRBit() argument
28 if (SrcReg == PPC::CR0LT || SrcReg == PPC::CR0GT || in getCRFromCRBit()
29 SrcReg == PPC::CR0EQ || SrcReg == PPC::CR0UN) in getCRFromCRBit()
31 else if (SrcReg == PPC::CR1LT || SrcReg == PPC::CR1GT || in getCRFromCRBit()
32 SrcReg == PPC::CR1EQ || SrcReg == PPC::CR1UN) in getCRFromCRBit()
34 else if (SrcReg == PPC::CR2LT || SrcReg == PPC::CR2GT || in getCRFromCRBit()
35 SrcReg == PPC::CR2EQ || SrcReg == PPC::CR2UN) in getCRFromCRBit()
37 else if (SrcReg == PPC::CR3LT || SrcReg == PPC::CR3GT || in getCRFromCRBit()
38 SrcReg == PPC::CR3EQ || SrcReg == PPC::CR3UN) in getCRFromCRBit()
40 else if (SrcReg == PPC::CR4LT || SrcReg == PPC::CR4GT || in getCRFromCRBit()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/PowerPC/
DPPCRegisterInfo.h26 inline static unsigned getCRFromCRBit(unsigned SrcReg) { in getCRFromCRBit() argument
28 if (SrcReg == PPC::CR0LT || SrcReg == PPC::CR0GT || in getCRFromCRBit()
29 SrcReg == PPC::CR0EQ || SrcReg == PPC::CR0UN) in getCRFromCRBit()
31 else if (SrcReg == PPC::CR1LT || SrcReg == PPC::CR1GT || in getCRFromCRBit()
32 SrcReg == PPC::CR1EQ || SrcReg == PPC::CR1UN) in getCRFromCRBit()
34 else if (SrcReg == PPC::CR2LT || SrcReg == PPC::CR2GT || in getCRFromCRBit()
35 SrcReg == PPC::CR2EQ || SrcReg == PPC::CR2UN) in getCRFromCRBit()
37 else if (SrcReg == PPC::CR3LT || SrcReg == PPC::CR3GT || in getCRFromCRBit()
38 SrcReg == PPC::CR3EQ || SrcReg == PPC::CR3UN) in getCRFromCRBit()
40 else if (SrcReg == PPC::CR4LT || SrcReg == PPC::CR4GT || in getCRFromCRBit()
[all …]
/external/mesa3d/src/gallium/drivers/r300/compiler/
Dradeon_program_tex.c70 inst_mov->U.I.SrcReg[0] = inst->U.I.SrcReg[0]; in scale_texcoords()
71 inst_mov->U.I.SrcReg[1].File = RC_FILE_CONSTANT; in scale_texcoords()
72 inst_mov->U.I.SrcReg[1].Index = in scale_texcoords()
76 reset_srcreg(&inst->U.I.SrcReg[0]); in scale_texcoords()
77 inst->U.I.SrcReg[0].File = RC_FILE_TEMPORARY; in scale_texcoords()
78 inst->U.I.SrcReg[0].Index = temp; in scale_texcoords()
93 inst_rcp->U.I.SrcReg[0] = inst->U.I.SrcReg[0]; in projective_divide()
96 inst_rcp->U.I.SrcReg[0].Swizzle = in projective_divide()
97 RC_MAKE_SWIZZLE_SMEAR(GET_SWZ(inst->U.I.SrcReg[0].Swizzle, 3)); in projective_divide()
103 inst_mul->U.I.SrcReg[0] = inst->U.I.SrcReg[0]; in projective_divide()
[all …]
Dradeon_optimize.c76 &reader_data->Writer->U.I.PreSub.SrcReg[0], in copy_propagate_scan_read()
77 &reader_data->Writer->U.I.PreSub.SrcReg[1])) { in copy_propagate_scan_read()
91 if(reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_TEMPORARY && in copy_propagate_scan_read()
92 reader_data->Writer->U.I.SrcReg[0].File != RC_FILE_INPUT && in copy_propagate_scan_read()
166 inst->U.I.SrcReg[0].File == RC_FILE_PRESUB || in copy_propagate()
167 inst->U.I.SrcReg[0].Abs || in copy_propagate()
168 inst->U.I.SrcReg[0].Negate) { in copy_propagate()
177 …_data.Readers[i].U.I.Src = chain_srcregs(*reader_data.Readers[i].U.I.Src, inst_mov->U.I.SrcReg[0]); in copy_propagate()
179 if (inst_mov->U.I.SrcReg[0].File == RC_FILE_PRESUB) in copy_propagate()
232 if (is_src_uniform_constant(inst->U.I.SrcReg[2], &swz, &negate)) { in constant_folding_mad()
[all …]
Dr3xx_vertprog.c43 (PVS_SRC_OPERAND(t_src_index(vp, &vpi->SrcReg[x]), \
48 t_src_class(vpi->SrcReg[x].File), \
49 RC_MASK_NONE) | (vpi->SrcReg[x].RelAddr << 4))
198 inst[1] = t_src(vp, &vpi->SrcReg[0]); in ei_vector1()
215 inst[1] = t_src(vp, &vpi->SrcReg[0]); in ei_vector2()
216 inst[2] = t_src(vp, &vpi->SrcReg[1]); in ei_vector2()
232 inst[1] = t_src_scalar(vp, &vpi->SrcReg[0]); in ei_math1()
251 …inst[1] = PVS_SRC_OPERAND(t_src_index(vp, &vpi->SrcReg[0]), t_swizzle(GET_SWZ(vpi->SrcReg[0].Swizz… in ei_lit()
252 t_swizzle(GET_SWZ(vpi->SrcReg[0].Swizzle, 3)), // W in ei_lit()
254 t_swizzle(GET_SWZ(vpi->SrcReg[0].Swizzle, 1)), // Y in ei_lit()
[all …]
Dradeon_pair_translate.c44 inst->SrcReg[2] = inst->SrcReg[1]; in final_rewrite()
45 inst->SrcReg[1].File = RC_FILE_NONE; in final_rewrite()
46 inst->SrcReg[1].Swizzle = RC_SWIZZLE_1111; in final_rewrite()
47 inst->SrcReg[1].Negate = RC_MASK_NONE; in final_rewrite()
51 tmp = inst->SrcReg[2]; in final_rewrite()
52 inst->SrcReg[2] = inst->SrcReg[0]; in final_rewrite()
53 inst->SrcReg[0] = tmp; in final_rewrite()
66 inst->SrcReg[1].File = RC_FILE_NONE; in final_rewrite()
67 inst->SrcReg[1].Swizzle = RC_SWIZZLE_1111; in final_rewrite()
68 inst->SrcReg[2].File = RC_FILE_NONE; in final_rewrite()
[all …]
Dradeon_compiler.c125 if (inst->U.I.SrcReg[i].File == RC_FILE_INPUT) in rc_calculate_inputs_outputs()
126 c->Program.InputsRead |= 1 << inst->U.I.SrcReg[i].Index; in rc_calculate_inputs_outputs()
151 if (inst->U.I.SrcReg[i].File == RC_FILE_INPUT && inst->U.I.SrcReg[i].Index == input) { in rc_move_input()
152 inst->U.I.SrcReg[i].File = new_input.File; in rc_move_input()
153 inst->U.I.SrcReg[i].Index = new_input.Index; in rc_move_input()
154 inst->U.I.SrcReg[i].Swizzle = combine_swizzles(new_input.Swizzle, inst->U.I.SrcReg[i].Swizzle); in rc_move_input()
155 if (!inst->U.I.SrcReg[i].Abs) { in rc_move_input()
156 inst->U.I.SrcReg[i].Negate ^= new_input.Negate; in rc_move_input()
157 inst->U.I.SrcReg[i].Abs = new_input.Abs; in rc_move_input()
217 inst->U.I.SrcReg[0].File = RC_FILE_TEMPORARY; in rc_copy_output()
[all …]
Dradeon_program_alu.c45 struct rc_dst_register DstReg, struct rc_src_register SrcReg) in emit1() argument
55 fpi->U.I.SrcReg[0] = SrcReg; in emit1()
73 fpi->U.I.SrcReg[0] = SrcReg0; in emit2()
74 fpi->U.I.SrcReg[1] = SrcReg1; in emit2()
93 fpi->U.I.SrcReg[0] = SrcReg0; in emit3()
94 fpi->U.I.SrcReg[1] = SrcReg1; in emit3()
95 fpi->U.I.SrcReg[2] = SrcReg2; in emit3()
208 if (inst->U.I.SrcReg[i].File == RC_FILE_TEMPORARY && in is_dst_safe_to_reuse()
209 inst->U.I.SrcReg[i].Index == inst->U.I.DstReg.Index) in is_dst_safe_to_reuse()
232 struct rc_src_register src = inst->U.I.SrcReg[0]; in transform_ABS()
[all …]
Dradeon_vert_fc.c131 new_inst->U.I.SrcReg[0].Index = 0; in lower_bgnloop()
132 new_inst->U.I.SrcReg[0].File = RC_FILE_NONE; in lower_bgnloop()
133 new_inst->U.I.SrcReg[0].Swizzle = RC_SWIZZLE_0000; in lower_bgnloop()
141 build_pred_src(&new_inst->U.I.SrcReg[0], fc_state); in lower_bgnloop()
151 new_inst->U.I.SrcReg[1].Index = 0; in lower_bgnloop()
152 new_inst->U.I.SrcReg[1].File = RC_FILE_NONE; in lower_bgnloop()
153 new_inst->U.I.SrcReg[1].Swizzle = RC_SWIZZLE_0000; in lower_bgnloop()
165 inst->U.I.SrcReg[0].Index = 0; in lower_brk()
166 inst->U.I.SrcReg[0].File = RC_FILE_NONE; in lower_brk()
167 inst->U.I.SrcReg[0].Swizzle = RC_SWIZZLE_0000; in lower_brk()
[all …]
Dradeon_emulate_loops.c100 if(!rc_src_reg_is_immediate(value->C, inst->U.I.SrcReg[0].File, in update_const_value()
101 inst->U.I.SrcReg[0].Index)){ in update_const_value()
107 inst->U.I.SrcReg[0].Index, in update_const_value()
108 inst->U.I.SrcReg[0].Swizzle, in update_const_value()
109 inst->U.I.SrcReg[0].Negate, 0); in update_const_value()
141 if(inst->U.I.SrcReg[0].File == RC_FILE_TEMPORARY && in get_incr_amount()
142 inst->U.I.SrcReg[0].Index == count_inst->Index && in get_incr_amount()
143 inst->U.I.SrcReg[0].Swizzle == count_inst->Swz){ in get_incr_amount()
145 } else if( inst->U.I.SrcReg[1].File == RC_FILE_TEMPORARY && in get_incr_amount()
146 inst->U.I.SrcReg[1].Index == count_inst->Index && in get_incr_amount()
[all …]
Dradeon_emulate_branches.c79 inst_mov->U.I.SrcReg[0] = inst->U.I.SrcReg[0]; in handle_if()
81 inst->U.I.SrcReg[0].File = RC_FILE_TEMPORARY; in handle_if()
82 inst->U.I.SrcReg[0].Index = inst_mov->U.I.DstReg.Index; in handle_if()
83 inst->U.I.SrcReg[0].Swizzle = 0; in handle_if()
84 inst->U.I.SrcReg[0].Abs = 0; in handle_if()
85 inst->U.I.SrcReg[0].Negate = 0; in handle_if()
169 inst_mov->U.I.SrcReg[0].File = RC_FILE_TEMPORARY; in allocate_and_insert_proxies()
170 inst_mov->U.I.SrcReg[0].Index = index; in allocate_and_insert_proxies()
188 inst_cmp->U.I.SrcReg[0] = inst_if->U.I.SrcReg[0]; in inject_cmp()
189 inst_cmp->U.I.SrcReg[0].Abs = 1; in inject_cmp()
[all …]
Dradeon_dataflow_swizzles.c49 if (GET_SWZ(inst->U.I.SrcReg[src].Swizzle, chan) != RC_SWIZZLE_UNUSED) in rewrite_source()
53 c->SwizzleCaps->Split(inst->U.I.SrcReg[src], usemask, &split); in rewrite_source()
64 mov->U.I.SrcReg[0] = inst->U.I.SrcReg[src]; in rewrite_source()
70 SET_SWZ(mov->U.I.SrcReg[0].Swizzle, chan, RC_SWIZZLE_UNUSED); in rewrite_source()
72 phase_refmask |= 1 << GET_SWZ(mov->U.I.SrcReg[0].Swizzle, chan); in rewrite_source()
77 masked_negate = split.Phase[phase] & mov->U.I.SrcReg[0].Negate; in rewrite_source()
79 mov->U.I.SrcReg[0].Negate = 0; in rewrite_source()
81 mov->U.I.SrcReg[0].Negate = RC_MASK_XYZW; in rewrite_source()
85 inst->U.I.SrcReg[src].File = RC_FILE_TEMPORARY; in rewrite_source()
86 inst->U.I.SrcReg[src].Index = tempreg; in rewrite_source()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/Blackfin/
DBlackfinInstrInfo.cpp102 unsigned DestReg, unsigned SrcReg, in copyPhysReg() argument
104 if (BF::ALLRegClass.contains(DestReg, SrcReg)) { in copyPhysReg()
106 .addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg()
110 if (BF::D16RegClass.contains(DestReg, SrcReg)) { in copyPhysReg()
112 .addReg(SrcReg, getKillRegState(KillSrc)) in copyPhysReg()
118 if (SrcReg == BF::NCC) { in copyPhysReg()
120 .addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg()
124 if (SrcReg == BF::CC) { in copyPhysReg()
126 .addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg()
131 if (BF::DRegClass.contains(SrcReg)) { in copyPhysReg()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/PowerPC/
DPPCInstrInfo.cpp304 unsigned DestReg, unsigned SrcReg, in copyPhysReg() argument
307 if (PPC::GPRCRegClass.contains(DestReg, SrcReg)) in copyPhysReg()
309 else if (PPC::G8RCRegClass.contains(DestReg, SrcReg)) in copyPhysReg()
311 else if (PPC::F4RCRegClass.contains(DestReg, SrcReg)) in copyPhysReg()
313 else if (PPC::CRRCRegClass.contains(DestReg, SrcReg)) in copyPhysReg()
315 else if (PPC::VRRCRegClass.contains(DestReg, SrcReg)) in copyPhysReg()
317 else if (PPC::CRBITRCRegClass.contains(DestReg, SrcReg)) in copyPhysReg()
325 .addReg(SrcReg).addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg()
327 BuildMI(MBB, I, DL, MCID, DestReg).addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg()
332 unsigned SrcReg, bool isKill, in StoreRegToStackSlot() argument
[all …]
/external/llvm/lib/Target/ARM/
DThumb1InstrInfo.cpp43 unsigned SrcReg, bool KillSrc) const { in copyPhysReg() argument
48 assert(ARM::GPRRegClass.contains(DestReg, SrcReg) && in copyPhysReg()
51 if (st.hasV6Ops() || ARM::hGPRRegClass.contains(SrcReg) in copyPhysReg()
54 .addReg(SrcReg, getKillRegState(KillSrc))); in copyPhysReg()
64 .addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg()
72 unsigned SrcReg, bool isKill, int FI, in storeRegToStackSlot() argument
76 (TargetRegisterInfo::isPhysicalRegister(SrcReg) && in storeRegToStackSlot()
77 isARMLowRegister(SrcReg))) && "Unknown regclass!"); in storeRegToStackSlot()
80 (TargetRegisterInfo::isPhysicalRegister(SrcReg) && in storeRegToStackSlot()
81 isARMLowRegister(SrcReg))) { in storeRegToStackSlot()
[all …]
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/Hexagon/
DHexagonPeephole.cpp141 unsigned SrcReg = Src.getReg(); in runOnMachineFunction() local
144 TargetRegisterInfo::isVirtualRegister(SrcReg)) { in runOnMachineFunction()
148 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction()
162 unsigned SrcReg = Src2.getReg(); in runOnMachineFunction() local
163 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction()
179 unsigned SrcReg = Src1.getReg(); in runOnMachineFunction() local
181 std::make_pair(*&SrcReg, Hexagon::isub_hi); in runOnMachineFunction()
190 unsigned SrcReg = Src.getReg(); in runOnMachineFunction() local
193 TargetRegisterInfo::isVirtualRegister(SrcReg)) { in runOnMachineFunction()
197 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/ARM/
DThumb1InstrInfo.cpp37 unsigned DestReg, unsigned SrcReg, in copyPhysReg() argument
40 .addReg(SrcReg, getKillRegState(KillSrc))); in copyPhysReg()
41 assert(ARM::GPRRegClass.contains(DestReg, SrcReg) && in copyPhysReg()
47 unsigned SrcReg, bool isKill, int FI, in storeRegToStackSlot() argument
51 (TargetRegisterInfo::isPhysicalRegister(SrcReg) && in storeRegToStackSlot()
52 isARMLowRegister(SrcReg))) && "Unknown regclass!"); in storeRegToStackSlot()
55 (TargetRegisterInfo::isPhysicalRegister(SrcReg) && in storeRegToStackSlot()
56 isARMLowRegister(SrcReg))) { in storeRegToStackSlot()
69 .addReg(SrcReg, getKillRegState(isKill)) in storeRegToStackSlot()
/external/swiftshader/third_party/llvm-7.0/llvm/lib/Target/ARM/
DThumb1InstrInfo.cpp42 unsigned SrcReg, bool KillSrc) const { in copyPhysReg() argument
47 assert(ARM::GPRRegClass.contains(DestReg, SrcReg) && in copyPhysReg()
50 if (st.hasV6Ops() || ARM::hGPRRegClass.contains(SrcReg) in copyPhysReg()
53 .addReg(SrcReg, getKillRegState(KillSrc)) in copyPhysReg()
63 .addReg(SrcReg, getKillRegState(KillSrc)) in copyPhysReg()
71 .addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg()
80 unsigned SrcReg, bool isKill, int FI, in storeRegToStackSlot() argument
84 (TargetRegisterInfo::isPhysicalRegister(SrcReg) && in storeRegToStackSlot()
85 isARMLowRegister(SrcReg))) && "Unknown regclass!"); in storeRegToStackSlot()
88 (TargetRegisterInfo::isPhysicalRegister(SrcReg) && in storeRegToStackSlot()
[all …]
/external/swiftshader/third_party/LLVM/lib/Target/Mips/
DMipsInstrInfo.cpp104 unsigned DestReg, unsigned SrcReg, in copyPhysReg() argument
109 if (Mips::CPURegsRegClass.contains(SrcReg)) in copyPhysReg()
111 else if (Mips::CCRRegClass.contains(SrcReg)) in copyPhysReg()
113 else if (Mips::FGR32RegClass.contains(SrcReg)) in copyPhysReg()
115 else if (SrcReg == Mips::HI) in copyPhysReg()
116 Opc = Mips::MFHI, SrcReg = 0; in copyPhysReg()
117 else if (SrcReg == Mips::LO) in copyPhysReg()
118 Opc = Mips::MFLO, SrcReg = 0; in copyPhysReg()
120 else if (Mips::CPURegsRegClass.contains(SrcReg)) { // Copy from CPU Reg. in copyPhysReg()
130 else if (Mips::FGR32RegClass.contains(DestReg, SrcReg)) in copyPhysReg()
[all …]
/external/mesa3d/src/mesa/drivers/dri/r200/
Dr200_fragshader.c170 inst->SrcReg[optype][0], 1, &tfactor); in r200UpdateFSArith()
172 inst->SrcReg[optype][1], 2, &tfactor); in r200UpdateFSArith()
180 inst->SrcReg[optype][0], 2, &tfactor); in r200UpdateFSArith()
185 inst->SrcReg[optype][2], 2, &tfactor); in r200UpdateFSArith()
189 inst->SrcReg[optype][0], 0, &tfactor); in r200UpdateFSArith()
191 inst->SrcReg[optype][1], 1, &tfactor); in r200UpdateFSArith()
197 inst->SrcReg[optype][0], 2, &tfactor); in r200UpdateFSArith()
199 inst->SrcReg[optype][1], 1, &tfactor); in r200UpdateFSArith()
201 inst->SrcReg[optype][2], 0, &tfactor); in r200UpdateFSArith()
206 inst->SrcReg[optype][0], 0, &tfactor); in r200UpdateFSArith()
[all …]

12345678910>>...15