Searched refs:OpVal (Results 1 - 9 of 9) sorted by relevance

/freebsd-10.0-release/contrib/llvm/lib/Analysis/
H A DPHITransAddr.cpp386 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0),
388 if (OpVal == 0) return 0;
392 OpVal, InVal->getType(),
404 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local
406 if (OpVal == 0) return 0;
407 GEPOps.push_back(OpVal);
428 Value *OpVal = InsertPHITranslatedSubExpr(Inst->getOperand(0),
430 if (OpVal == 0) return 0;
432 BinaryOperator *Res = BinaryOperator::CreateAdd(OpVal, Inst->getOperand(1),
H A DSparsePropagation.cpp263 LatticeVal OpVal = getOrInitValueState(PN.getIncomingValue(i)); local
264 if (OpVal != PNIV)
265 PNIV = LatticeFunc->MergeValues(PNIV, OpVal);
/freebsd-10.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp854 Value *OpVal = PN.getIncomingValue(InValNo); local
855 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
/freebsd-10.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp1249 /// IsOperandAMemoryOperand - Check to see if all uses of OpVal by the specified
1252 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument
1263 if (OpInfo.CallOperandVal == OpVal &&
1680 Value *OpVal = CS->getArgOperand(ArgNo++); local
1681 MadeChange |= OptimizeMemoryInst(CS, OpVal, OpVal->getType());
H A DSCCP.cpp820 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local
821 mergeInValue(&I, getValueState(OpVal));
/freebsd-10.0-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5977 const Value *OpVal = OpInfo.CallOperandVal; local
5978 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5979 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
5980 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5985 Type *Ty = OpVal->getType();
H A DSelectionDAG.cpp6291 SDValue OpVal = getOperand(i); local
6294 if (OpVal.getOpcode() == ISD::UNDEF)
6296 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
6299 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DDAGCombiner.cpp5816 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> local
5820 APInt ThisVal = OpVal.trunc(DstBitSize);
5822 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
5826 OpVal = OpVal.lshr(DstBitSize);
/freebsd-10.0-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp865 SDValue OpVal(0, 0);
926 if (OpVal.getNode() == 0)
927 OpVal = N->getOperand(i);
928 else if (OpVal != N->getOperand(i))
932 if (OpVal.getNode() == 0) return SDValue(); // All UNDEF: use implicit def.
936 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
938 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {

Completed in 304 milliseconds