Searched refs:RLWINM (Results 1 - 10 of 10) sorted by relevance

/external/pcre/dist/sljit/
H A DsljitNativePPC_32.c42 (RLWINM | S(src) | A(dst) | ((from) << 6) | (31 << 1))
218 return push_inst(compiler, RLWINM | RC(flags) | S(src1) | A(dst) | (compiler->imm << 11) | ((31 - compiler->imm) << 1));
226 return push_inst(compiler, RLWINM | RC(flags) | S(src1) | A(dst) | (((32 - compiler->imm) & 0x1f) << 11) | (compiler->imm << 6) | (31 << 1));
H A DsljitNativePPC_64.c346 return push_inst(compiler, RLWINM | RC(flags) | S(src1) | A(dst) | (compiler->imm << 11) | ((31 - compiler->imm) << 1));
360 return push_inst(compiler, RLWINM | RC(flags) | S(src1) | A(dst) | (((32 - compiler->imm) & 0x1f) << 11) | (compiler->imm << 6) | (31 << 1));
H A DsljitNativePPC_common.c198 #define RLWINM (HI(21)) macro
988 FAIL_IF(push_inst(compiler, RLWINM | S(OFFS_REG(arg)) | A(tmp_r) | (argw << 11) | ((31 - argw) << 1)));
1771 FAIL_IF(push_inst(compiler, RLWINM | S(OFFS_REG(dst)) | A(TMP_REG1) | (dstw << 11) | ((31 - dstw) << 1)));
2224 FAIL_IF(push_inst(compiler, RLWINM | S(dst) | A(dst) | ((1 + (bit)) << 11) | (31 << 6) | (31 << 1)));
/external/llvm/lib/Target/PowerPC/
H A DPPCISelDAGToDAG.cpp763 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops);
775 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops);
782 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops);
812 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops);
816 Op = SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops),
909 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops);
913 SDValue(CurDAG->getMachineNode(PPC::RLWINM, dl, MVT::i32, Ops), 0);
1156 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops);
1165 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MVT::i32, Ops);
1225 return CurDAG->SelectNodeTo(N, PPC::RLWINM, MV
[all...]
H A DPPCRegisterInfo.cpp419 BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::RLWINM8 : PPC::RLWINM), Reg)
464 BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::RLWINM8 : PPC::RLWINM), Reg)
537 BuildMI(MBB, II, dl, TII.get(LP64 ? PPC::RLWINM8 : PPC::RLWINM), Reg)
H A DPPCFastISel.cpp1645 // Unsigned 32-bit extensions use RLWINM.
1654 BuildMI(*FuncInfo.MBB, FuncInfo.InsertPt, DbgLoc, TII.get(PPC::RLWINM),
2122 case PPC::RLWINM:
H A DPPCFrameLowering.cpp679 BuildMI(MBB, MBBI, dl, TII.get(PPC::RLWINM), ScratchReg)
H A DPPCISelLowering.cpp6397 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
6405 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
7014 BuildMI(BB, dl, TII->get(PPC::RLWINM), Shift1Reg).addReg(Ptr1Reg)
7022 BuildMI(BB, dl, TII->get(PPC::RLWINM), PtrReg)
/external/llvm/lib/Target/PowerPC/InstPrinter/
H A DPPCInstPrinter.cpp42 if (MI->getOpcode() == PPC::RLWINM) {
/external/llvm/lib/Target/PowerPC/AsmParser/
H A DPPCAsmParser.cpp699 TmpInst.setOpcode(Opcode == PPC::EXTLWI? PPC::RLWINM : PPC::RLWINMo);
713 TmpInst.setOpcode(Opcode == PPC::EXTRWI? PPC::RLWINM : PPC::RLWINMo);
756 TmpInst.setOpcode(Opcode == PPC::ROTRWI? PPC::RLWINM : PPC::RLWINMo);
769 TmpInst.setOpcode(Opcode == PPC::SLWI? PPC::RLWINM : PPC::RLWINMo);
782 TmpInst.setOpcode(Opcode == PPC::SRWI? PPC::RLWINM : PPC::RLWINMo);
795 TmpInst.setOpcode(Opcode == PPC::CLRRWI? PPC::RLWINM : PPC::RLWINMo);
809 TmpInst.setOpcode(Opcode == PPC::CLRLSLWI? PPC::RLWINM : PPC::RLWINMo);

Completed in 169 milliseconds