/external/llvm/lib/Target/PowerPC/ |
D | PPCRegisterInfo.h | 26 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/mesa/program/ |
D | programopt.c | 93 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 …]
|
D | prog_opt_constant_fold.c | 39 if (inst->SrcReg[i].File != PROGRAM_CONSTANT) in src_regs_are_constant() 41 if (inst->SrcReg[i].RelAddr) in src_regs_are_constant() 141 get_value(prog, &inst->SrcReg[0], a); in _mesa_constant_fold() 142 get_value(prog, &inst->SrcReg[1], b); in _mesa_constant_fold() 150 inst->SrcReg[0] = src_reg_for_vec4(prog, result); in _mesa_constant_fold() 152 inst->SrcReg[1].File = PROGRAM_UNDEFINED; in _mesa_constant_fold() 153 inst->SrcReg[1].Swizzle = SWIZZLE_NOOP; in _mesa_constant_fold() 170 get_value(prog, &inst->SrcReg[0], a); in _mesa_constant_fold() 171 get_value(prog, &inst->SrcReg[1], b); in _mesa_constant_fold() 172 get_value(prog, &inst->SrcReg[2], c); in _mesa_constant_fold() [all …]
|
D | prog_parameter_layout.c | 141 if (inst->SrcReg[i].Base.RelAddr) { in _mesa_layout_parameters() 144 if (!inst->SrcReg[i].Symbol->pass1_done) { in _mesa_layout_parameters() 147 inst->SrcReg[i].Symbol->param_binding_begin, in _mesa_layout_parameters() 148 inst->SrcReg[i].Symbol->param_binding_length); in _mesa_layout_parameters() 155 inst->SrcReg[i].Symbol->param_binding_begin = new_begin; in _mesa_layout_parameters() 156 inst->SrcReg[i].Symbol->pass1_done = 1; in _mesa_layout_parameters() 163 inst->Base.SrcReg[i] = inst->SrcReg[i].Base; in _mesa_layout_parameters() 164 inst->Base.SrcReg[i].Index += in _mesa_layout_parameters() 165 inst->SrcReg[i].Symbol->param_binding_begin; in _mesa_layout_parameters() 176 const int idx = inst->SrcReg[i].Base.Index; in _mesa_layout_parameters() [all …]
|
D | prog_execute.c | 304 inst->SrcReg[0].File == PROGRAM_INPUT && in fetch_texel() 305 inst->SrcReg[0].Index == VARYING_SLOT_TEX0 + inst->TexSrcUnit) { in fetch_texel() 307 GLuint attr = inst->SrcReg[0].Index; in fetch_texel() 408 fetch_vector4(&inst->SrcReg[0], machine, a); in _mesa_execute_program() 419 fetch_vector4(&inst->SrcReg[0], machine, a); in _mesa_execute_program() 420 fetch_vector4(&inst->SrcReg[1], machine, b); in _mesa_execute_program() 436 fetch_vector4(&inst->SrcReg[0], machine, t); in _mesa_execute_program() 484 fetch_vector4(&inst->SrcReg[0], machine, a); in _mesa_execute_program() 485 fetch_vector4(&inst->SrcReg[1], machine, b); in _mesa_execute_program() 486 fetch_vector4(&inst->SrcReg[2], machine, c); in _mesa_execute_program() [all …]
|
D | prog_optimize.c | 107 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/swiftshader/third_party/llvm-10.0/llvm/lib/Target/PowerPC/ |
D | PPCRegisterInfo.h | 26 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/llvm-project/llvm/lib/Target/PowerPC/ |
D | PPCRegisterInfo.h | 26 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/ |
D | radeon_program_tex.c | 70 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 …]
|
D | radeon_optimize.c | 76 &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 …]
|
D | r3xx_vertprog.c | 43 (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 …]
|
D | radeon_pair_translate.c | 44 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 …]
|
D | radeon_compiler.c | 125 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 …]
|
D | radeon_program_alu.c | 45 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 …]
|
D | radeon_vert_fc.c | 131 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 …]
|
D | radeon_emulate_loops.c | 100 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 …]
|
D | radeon_emulate_branches.c | 79 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 …]
|
D | radeon_dataflow_swizzles.c | 49 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/llvm/lib/Target/ARM/ |
D | Thumb1InstrInfo.cpp | 43 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-10.0/llvm/lib/Target/ARM/ |
D | Thumb1InstrInfo.cpp | 41 MCRegister SrcReg, bool KillSrc) const { in copyPhysReg() argument 46 assert(ARM::GPRRegClass.contains(DestReg, SrcReg) && in copyPhysReg() 49 if (st.hasV6Ops() || ARM::hGPRRegClass.contains(SrcReg) in copyPhysReg() 52 .addReg(SrcReg, getKillRegState(KillSrc)) in copyPhysReg() 62 .addReg(SrcReg, getKillRegState(KillSrc)) in copyPhysReg() 70 .addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg() 79 unsigned SrcReg, bool isKill, int FI, in storeRegToStackSlot() argument 83 (Register::isPhysicalRegister(SrcReg) && isARMLowRegister(SrcReg))) && in storeRegToStackSlot() 87 (Register::isPhysicalRegister(SrcReg) && isARMLowRegister(SrcReg))) { in storeRegToStackSlot() 97 .addReg(SrcReg, getKillRegState(isKill)) in storeRegToStackSlot()
|
/external/llvm-project/llvm/lib/Target/ARM/ |
D | Thumb1InstrInfo.cpp | 41 MCRegister SrcReg, bool KillSrc) const { in copyPhysReg() argument 46 assert(ARM::GPRRegClass.contains(DestReg, SrcReg) && in copyPhysReg() 49 if (st.hasV6Ops() || ARM::hGPRRegClass.contains(SrcReg) in copyPhysReg() 52 .addReg(SrcReg, getKillRegState(KillSrc)) in copyPhysReg() 62 .addReg(SrcReg, getKillRegState(KillSrc)) in copyPhysReg() 70 .addReg(SrcReg, getKillRegState(KillSrc)); in copyPhysReg() 79 Register SrcReg, bool isKill, int FI, in storeRegToStackSlot() argument 83 (Register::isPhysicalRegister(SrcReg) && isARMLowRegister(SrcReg))) && in storeRegToStackSlot() 87 (Register::isPhysicalRegister(SrcReg) && isARMLowRegister(SrcReg))) { in storeRegToStackSlot() 97 .addReg(SrcReg, getKillRegState(isKill)) in storeRegToStackSlot()
|
/external/llvm-project/llvm/lib/Target/Hexagon/ |
D | HexagonPeephole.cpp | 140 Register SrcReg = Src.getReg(); in runOnMachineFunction() local 142 if (DstReg.isVirtual() && SrcReg.isVirtual()) { in runOnMachineFunction() 146 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() 160 Register SrcReg = Src2.getReg(); in runOnMachineFunction() local 161 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() 177 Register SrcReg = Src1.getReg(); in runOnMachineFunction() local 179 std::make_pair(*&SrcReg, Hexagon::isub_hi); in runOnMachineFunction() 188 Register SrcReg = Src.getReg(); in runOnMachineFunction() local 190 if (DstReg.isVirtual() && SrcReg.isVirtual()) { in runOnMachineFunction() 194 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/ |
D | HexagonPeephole.cpp | 140 Register SrcReg = Src.getReg(); in runOnMachineFunction() local 143 Register::isVirtualRegister(SrcReg)) { in runOnMachineFunction() 147 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() 161 Register SrcReg = Src2.getReg(); in runOnMachineFunction() local 162 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() 178 Register SrcReg = Src1.getReg(); in runOnMachineFunction() local 180 std::make_pair(*&SrcReg, Hexagon::isub_hi); in runOnMachineFunction() 189 Register SrcReg = Src.getReg(); in runOnMachineFunction() local 192 Register::isVirtualRegister(SrcReg)) { in runOnMachineFunction() 196 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() [all …]
|
/external/llvm-project/llvm/unittests/CodeGen/GlobalISel/ |
D | KnownBitsTest.cpp | 21 unsigned SrcReg = FinalCopy->getOperand(1).getReg(); in TEST_F() local 24 KnownBits Res = Info.getKnownBits(SrcReg); in TEST_F() 41 unsigned SrcReg = FinalCopy->getOperand(1).getReg(); in TEST_F() local 44 KnownBits Res = Info.getKnownBits(SrcReg); in TEST_F() 80 Register SrcReg = FinalCopy->getOperand(1).getReg(); in TEST_F() local 83 KnownBits Res = Info.getKnownBits(SrcReg); in TEST_F() 114 Register SrcReg = FinalCopy->getOperand(1).getReg(); in TEST_F() local 117 KnownBits Res = Info.getKnownBits(SrcReg); in TEST_F() 152 Register SrcReg = FinalCopy->getOperand(1).getReg(); in TEST_F() local 155 KnownBits Res = Info.getKnownBits(SrcReg); in TEST_F() [all …]
|
/external/llvm/lib/Target/Hexagon/ |
D | HexagonPeephole.cpp | 143 unsigned SrcReg = Src.getReg(); in runOnMachineFunction() local 146 TargetRegisterInfo::isVirtualRegister(SrcReg)) { in runOnMachineFunction() 150 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() 164 unsigned SrcReg = Src2.getReg(); in runOnMachineFunction() local 165 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() 181 unsigned SrcReg = Src1.getReg(); in runOnMachineFunction() local 183 std::make_pair(*&SrcReg, Hexagon::subreg_hireg); in runOnMachineFunction() 192 unsigned SrcReg = Src.getReg(); in runOnMachineFunction() local 195 TargetRegisterInfo::isVirtualRegister(SrcReg)) { in runOnMachineFunction() 199 PeepholeMap[DstReg] = SrcReg; in runOnMachineFunction() [all …]
|