Home
last modified time | relevance | path

Searched refs:OpV (Results 1 – 13 of 13) sorted by relevance

/freebsd/contrib/llvm-project/llvm/lib/Target/VE/
H A DVECustomDAG.h156 SDValue getNode(unsigned OC, SDVTList VTL, ArrayRef<SDValue> OpV,
158 auto N = DAG.getNode(OC, DL, VTL, OpV);
164 SDValue getNode(unsigned OC, ArrayRef<EVT> ResVT, ArrayRef<SDValue> OpV,
166 auto N = DAG.getNode(OC, DL, ResVT, OpV);
172 SDValue getNode(unsigned OC, EVT ResVT, ArrayRef<SDValue> OpV,
174 auto N = DAG.getNode(OC, DL, ResVT, OpV);
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Scalar/
H A DDCE.cpp68 Value *OpV = I->getOperand(i); in createRedundantDbgInstEliminationPass()
71 if (!OpV->use_empty() || I == OpV)
77 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in run()
101 Value *OpV = I->getOperand(i); DCEInstruction() local
H A DSimpleLoopUnswitch.cpp209 for (Value *OpV : I.operand_values()) { in collectHomogenousInstGraphLoopInvariants()
211 if (isa<Constant>(OpV)) in collectHomogenousInstGraphLoopInvariants()
215 if (L.isLoopInvariant(OpV)) { in collectHomogenousInstGraphLoopInvariants()
216 Invariants.push_back(OpV); in collectHomogenousInstGraphLoopInvariants()
221 Instruction *OpI = dyn_cast<Instruction>(skipTrivialSelect(OpV)); in collectHomogenousInstGraphLoopInvariants()
/freebsd/contrib/llvm-project/llvm/lib/Target/SPIRV/
H A DSPIRVUtils.cpp153 if (ConstantInt *OpV = in buildOpSpirvDecorations() local
155 MIB.addImm(static_cast<uint32_t>(OpV->getZExtValue())); in buildOpSpirvDecorations()
156 else if (MDString *OpV = dyn_cast<MDString>(OpMD->getOperand(OpI))) in buildOpSpirvDecorations() local
157 addStringImm(OpV->getString(), MIB); in buildOpSpirvDecorations()
/freebsd/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86LowerAMXType.cpp736 Value *OpV = I->getOperand(i); in DCEInstruction() local
739 if (!OpV->use_empty() || I == OpV) in DCEInstruction()
745 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) { in DCEInstruction()
H A DX86FlagsCopyLowering.cpp214 MachineOperand &OpV = MI.getOperand(OpIdx); in splitBlock() local
230 MI.addOperand(MF, OpV); in splitBlock()
H A DX86SpeculativeLoadHardening.cpp292 MachineOperand &OpV = MI.getOperand(OpIdx); in splitEdge() local
305 MI.addOperand(MF, OpV); in splitEdge()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Utils/
H A DLocal.cpp597 Value *OpV = OpU.get(); in RecursivelyDeleteTriviallyDeadInstructions() local
600 if (!OpV->use_empty()) in RecursivelyDeleteTriviallyDeadInstructions()
606 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in RecursivelyDeleteTriviallyDeadInstructions()
683 Value *OpV = I->getOperand(i); in simplifyAndDCEInstruction() local
686 if (!OpV->use_empty() || I == OpV) in simplifyAndDCEInstruction()
692 if (Instruction *OpI = dyn_cast<Instruction>(OpV)) in simplifyAndDCEInstruction()
/freebsd/contrib/llvm-project/llvm/lib/Target/Hexagon/
H A DHexagonISelDAGToDAGHVX.cpp623 OpRef(SDValue V) : OpV(V) {} in OpRef()
624 bool isValue() const { return OpV.getNode() != nullptr; } in isValue()
641 SDValue OpV = SDValue(); member
717 OpV.getNode()->print(OS, &G); in print()
1174 Ops.push_back(R.OpV); in materialize()
/freebsd/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DSelectionDAGNodes.h915 for (const SDValue &OpV : M->op_values()) {
916 SDNode *Op = OpV.getNode();
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/
H A DAttributorAttributes.cpp9332 Value *OpV = CastI->getOperand(0); in calculateCastInst() local
9337 IRPosition::value(*OpV, getCallBaseContext()), *this, in calculateCastInst()
9343 OpV = *SimplifiedOpV; in calculateCastInst()
9345 if (!OpV->getType()->isIntegerTy()) in calculateCastInst()
9349 *this, IRPosition::value(*OpV, getCallBaseContext()), in calculateCastInst()
/freebsd/contrib/llvm-project/llvm/lib/Transforms/Vectorize/
H A DSLPVectorizer.cpp2566 Value *OpV = OpU.get(); in removeInstructionsAndOperands() local
2567 if (!OpV) in removeInstructionsAndOperands()
2571 if (!OpV->use_empty()) in removeInstructionsAndOperands()
2577 if (auto *OpI = dyn_cast<Instruction>(OpV)) in removeInstructionsAndOperands()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DScalarEvolution.cpp10071 const SCEV *OpV = getSCEVAtScope(OrigV, L); in computeSCEVAtScope() local
10072 MadeImprovement |= OrigV != OpV; in computeSCEVAtScope()
10074 Constant *C = BuildConstantFromSCEV(OpV); in computeSCEVAtScope()