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

/freebsd-9.3-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-9.3-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp852 Value *OpVal = PN.getIncomingValue(InValNo); local
853 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
/freebsd-9.3-release/contrib/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp1244 /// IsOperandAMemoryOperand - Check to see if all uses of OpVal by the specified
1247 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument
1258 if (OpInfo.CallOperandVal == OpVal &&
1672 Value *OpVal = CS->getArgOperand(ArgNo++); local
1673 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-9.3-release/contrib/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp6335 const Value *OpVal = OpInfo.CallOperandVal;
6336 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
6337 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
6338 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
6343 Type *Ty = OpVal->getType();
6928 SDValue OpVal = getValue(CI.getArgOperand(i));
6929 if (ConstantSDNode *C = dyn_cast<ConstantSDNode>(OpVal)) {
6935 Ops.push_back(OpVal);
[all...]
H A DSelectionDAG.cpp6480 SDValue OpVal = getOperand(i); local
6483 if (OpVal.getOpcode() == ISD::UNDEF)
6485 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
6488 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DDAGCombiner.cpp5952 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> local
5956 APInt ThisVal = OpVal.trunc(DstBitSize);
5958 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
5962 OpVal = OpVal.lshr(DstBitSize);
/freebsd-9.3-release/contrib/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp886 SDValue OpVal(0, 0);
947 if (OpVal.getNode() == 0)
948 OpVal = N->getOperand(i);
949 else if (OpVal != N->getOperand(i))
953 if (OpVal.getNode() == 0) return SDValue(); // All UNDEF: use implicit def.
957 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
959 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {

Completed in 174 milliseconds