| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | PHITransAddr.cpp | 382 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0), in InsertPHITranslatedSubExpr() local 384 if (!OpVal) return nullptr; in InsertPHITranslatedSubExpr() 387 CastInst *New = CastInst::Create(Cast->getOpcode(), OpVal, InVal->getType(), in InsertPHITranslatedSubExpr() 400 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), in InsertPHITranslatedSubExpr() local 402 if (!OpVal) return nullptr; in InsertPHITranslatedSubExpr() 403 GEPOps.push_back(OpVal); in InsertPHITranslatedSubExpr() 424 Value *OpVal = InsertPHITranslatedSubExpr(Inst->getOperand(0), in InsertPHITranslatedSubExpr() 426 if (OpVal == 0) return 0; in InsertPHITranslatedSubExpr() 428 BinaryOperator *Res = BinaryOperator::CreateAdd(OpVal, Inst->getOperand(1), in InsertPHITranslatedSubExpr()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/PowerPC/ |
| H A D | Target.cpp | 18 const MCOperand &OpVal) { in setMemOp() argument 21 IT.getValueFor(Op) = OpVal; in setMemOp()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/Mips/ |
| H A D | Target.cpp | 43 const MCOperand &OpVal) { in setMemOp() argument 46 IT.getValueFor(Op) = OpVal; in setMemOp()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Analysis/ |
| H A D | SparsePropagation.h | 435 LatticeVal OpVal = in visitPHINode() local 437 if (OpVal != PNIV) in visitPHINode() 438 PNIV = LatticeFunc->MergeValues(PNIV, OpVal); in visitPHINode()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AArch64/ |
| H A D | SVEIntrinsicOpts.cpp | 391 auto *OpVal = I->getOperand(0); in optimizeTBL() local 411 auto *Extract = Builder.CreateExtractElement(OpVal, SplatValue); in optimizeTBL()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/ |
| H A D | InstCombinePHI.cpp | 1414 Value *OpVal = PN.getIncomingValue(InValNo); in visitPHINode() local 1415 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal)) in visitPHINode()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/tools/llvm-exegesis/lib/X86/ |
| H A D | Target.cpp | 238 const MCOperand &OpVal) { in setMemOp() argument 241 IT.getValueFor(Op) = OpVal; in setMemOp()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | SCCPSolver.cpp | 883 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); in visitSelectInst() local 884 mergeInValue(&I, getValueState(OpVal)); in visitSelectInst()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/SystemZ/ |
| H A D | SystemZISelDAGToDAG.cpp | 1160 for (unsigned OpVal : VCI.OpVals) in loadVectorConstant() local 1161 Ops.push_back(CurDAG->getTargetConstant(OpVal, DL, MVT::i32)); in loadVectorConstant()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/ |
| H A D | SelectionDAGBuilder.cpp | 8173 const Value *OpVal = OpInfo.CallOperandVal; in getAddressForMemoryInput() local 8174 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) || in getAddressForMemoryInput() 8175 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) { in getAddressForMemoryInput() 8177 cast<Constant>(OpVal), TLI.getPointerTy(DAG.getDataLayout())); in getAddressForMemoryInput() 8182 Type *Ty = OpVal->getType(); in getAddressForMemoryInput() 9030 SDValue OpVal = Builder.getValue(Call.getArgOperand(i)); in addStackMapLiveVars() local 9031 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(OpVal)) { in addStackMapLiveVars() 9036 } else if (FrameIndexSDNode *FI = dyn_cast<FrameIndexSDNode>(OpVal)) { in addStackMapLiveVars() 9041 Ops.push_back(OpVal); in addStackMapLiveVars()
|
| H A D | SelectionDAG.cpp | 10228 SDValue OpVal = getOperand(i); in isConstantSplat() local 10231 if (OpVal.isUndef()) in isConstantSplat() 10233 else if (auto *CN = dyn_cast<ConstantSDNode>(OpVal)) in isConstantSplat() 10235 else if (auto *CN = dyn_cast<ConstantFPSDNode>(OpVal)) in isConstantSplat()
|
| H A D | DAGCombiner.cpp | 12795 APInt OpVal = cast<ConstantSDNode>(Op)-> in ConstantFoldBITCASTofBUILD_VECTOR() local 12799 APInt ThisVal = OpVal.trunc(DstBitSize); in ConstantFoldBITCASTofBUILD_VECTOR() 12801 OpVal.lshrInPlace(DstBitSize); in ConstantFoldBITCASTofBUILD_VECTOR()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | CodeGenPrepare.cpp | 4827 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, in IsOperandAMemoryOperand() argument 4842 if (OpInfo.CallOperandVal == OpVal && in IsOperandAMemoryOperand() 5627 Value *OpVal = CS->getArgOperand(ArgNo++); in optimizeInlineAsmInst() local 5628 MadeChange |= optimizeMemoryInst(CS, OpVal, OpVal->getType(), ~0u); in optimizeInlineAsmInst()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/PowerPC/ |
| H A D | PPCISelLowering.cpp | 2404 SDValue OpVal(nullptr, 0); in get_VSPLTI_elt() local 2464 if (!OpVal.getNode()) in get_VSPLTI_elt() 2465 OpVal = N->getOperand(i); in get_VSPLTI_elt() 2466 else if (OpVal != N->getOperand(i)) in get_VSPLTI_elt() 2470 if (!OpVal.getNode()) return SDValue(); // All UNDEF: use implicit def. in get_VSPLTI_elt() 2474 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) { in get_VSPLTI_elt() 2476 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) { in get_VSPLTI_elt()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Vectorize/ |
| H A D | SLPVectorizer.cpp | 2009 void init(int BlockSchedulingRegionID, Value *OpVal) { in init() 2017 OpValue = OpVal; in init()
|