/freebsd/contrib/llvm-project/llvm/lib/Target/VE/ |
H A D | VECustomDAG.h | 156 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 D | DCE.cpp | 68 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 D | SimpleLoopUnswitch.cpp | 209 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 D | SPIRVUtils.cpp | 153 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 D | X86LowerAMXType.cpp | 736 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 D | X86FlagsCopyLowering.cpp | 214 MachineOperand &OpV = MI.getOperand(OpIdx); in splitBlock() local 230 MI.addOperand(MF, OpV); in splitBlock()
|
H A D | X86SpeculativeLoadHardening.cpp | 292 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 D | Local.cpp | 597 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 D | HexagonISelDAGToDAGHVX.cpp | 623 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 D | SelectionDAGNodes.h | 915 for (const SDValue &OpV : M->op_values()) { 916 SDNode *Op = OpV.getNode();
|
/freebsd/contrib/llvm-project/llvm/lib/Transforms/IPO/ |
H A D | AttributorAttributes.cpp | 9332 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 D | SLPVectorizer.cpp | 2566 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 D | ScalarEvolution.cpp | 10071 const SCEV *OpV = getSCEVAtScope(OrigV, L); in computeSCEVAtScope() local 10072 MadeImprovement |= OrigV != OpV; in computeSCEVAtScope() 10074 Constant *C = BuildConstantFromSCEV(OpV); in computeSCEVAtScope()
|