Home
last modified time | relevance | path

Searched refs:IOp (Results 1 – 7 of 7) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Transforms/AggressiveInstCombine/
H A DTruncInstCombine.cpp213 if (auto *IOp = dyn_cast<Instruction>(Operand)) in getMinBitWidth() local
215 std::max(Info.MinBitWidth, InstInfoMap[IOp].MinBitWidth); in getMinBitWidth()
228 if (auto *IOp = dyn_cast<Instruction>(Operand)) { in getMinBitWidth() local
232 unsigned IOpBitwidth = InstInfoMap.lookup(IOp).ValidBitWidth; in getMinBitWidth()
235 InstInfoMap[IOp].ValidBitWidth = ValidBitWidth; in getMinBitWidth()
236 Worklist.push_back(IOp); in getMinBitWidth()
/freebsd/contrib/llvm-project/llvm/lib/Target/M68k/
H A DM68kInstrBits.td68 : MxInst<(outs), (ins TYPE.ROp:$dst, TYPE.IOp:$bitno),
82 : MxInst<(outs), (ins MEMOpd:$dst, TYPE.IOp:$bitno),
137 (INSTi MxType32d.ROp:$dst, MxType32d.IOp:$bitno)>;
147 (INSTi MEMOpd:$dst, TYPE.IOp:$bitno)>;
H A DM68kInstrData.td235 (MOV32pi MxType32.POp :$dst, MxType32.IOp :$src)>;
238 (MOV32fi MxType32.FOp :$dst, MxType32.IOp :$src)>;
241 (MOV32bi MxType32.BOp :$dst, MxType32.IOp :$src)>;
244 (MOV32ji MxType32.JOp :$dst, MxType32.IOp :$src)>;
526 : MxPseudo<(outs TYPE.ROp:$dst), (ins TYPE.IOp:$src),
H A DM68kInstrArithmetic.td131 : MxInst<(outs TYPE.ROp:$dst), (ins TYPE.ROp:$src, TYPE.IOp:$opd),
146 : MxInst<(outs TYPE.ROp:$dst), (ins TYPE.ROp:$src, TYPE.IOp:$opd),
180 : MxInst<(outs), (ins MEMOpd:$dst, TYPE.IOp:$opd),
415 : MxInst<(outs), (ins TYPE.IOp:$imm, TYPE.ROp:$reg),
434 : MxInst<(outs), (ins TYPE.IOp:$imm, MEMOpd:$mem),
450 : MxInst<(outs), (ins TYPE.IOp:$imm, MxAL32:$abs),
H A DM68kInstrInfo.td641 MxOperand IOp = iOp;
/freebsd/contrib/llvm-project/llvm/lib/Transforms/InstCombine/
H A DInstCombineSimplifyDemanded.cpp689 ShlOperator *IOp = cast<ShlOperator>(I); in SimplifyDemandedUseBits() local
690 if (IOp->hasNoSignedWrap()) in SimplifyDemandedUseBits()
692 else if (IOp->hasNoUnsignedWrap()) in SimplifyDemandedUseBits()
700 /* NUW */ IOp->hasNoUnsignedWrap(), in SimplifyDemandedUseBits()
701 /* NSW */ IOp->hasNoSignedWrap()); in SimplifyDemandedUseBits()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp11628 if (auto *IOp = dyn_cast<Instruction>(Op); in gather() local
11629 !IOp || !(isDeleted(IOp) || getTreeEntry(IOp))) in gather()