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

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp384 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0),
386 if (OpVal == 0) return 0;
390 OpVal, InVal->getType(),
402 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local
404 if (OpVal == 0) return 0;
405 GEPOps.push_back(OpVal);
426 Value *OpVal = InsertPHITranslatedSubExpr(Inst->getOperand(0),
428 if (OpVal == 0) return 0;
430 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);
/external/llvm/lib/Transforms/Utils/
H A DAddrModeMatcher.cpp378 /// IsOperandAMemoryOperand - Check to see if all uses of OpVal by the specified
381 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument
392 if (OpInfo.CallOperandVal == OpVal &&
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp854 Value *OpVal = PN.getIncomingValue(InValNo); local
855 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
/external/llvm/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp971 Value *OpVal = CS->getArgOperand(ArgNo++); local
972 MadeChange |= OptimizeMemoryInst(CS, OpVal, OpVal->getType());
H A DSCCP.cpp830 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local
831 mergeInValue(&I, getValueState(OpVal));
/external/llvm/lib/Target/CellSPU/
H A DSPUISelLowering.cpp1505 SDValue OpVal(0, 0);
1510 if (OpVal.getNode() == 0)
1511 OpVal = N->getOperand(i);
1512 else if (OpVal != N->getOperand(i))
1516 if (OpVal.getNode() != 0) {
1517 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.cpp706 SDValue OpVal(0, 0);
767 if (OpVal.getNode() == 0)
768 OpVal = N->getOperand(i);
769 else if (OpVal != N->getOperand(i))
773 if (OpVal.getNode() == 0) return SDValue(); // All UNDEF: use implicit def.
777 if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal)) {
779 } else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal)) {
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAGBuilder.cpp5993 const Value *OpVal = OpInfo.CallOperandVal; local
5994 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5995 isa<ConstantVector>(OpVal) || isa<ConstantDataVector>(OpVal)) {
5996 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
6001 Type *Ty = OpVal->getType();
H A DSelectionDAG.cpp6076 SDValue OpVal = getOperand(i); local
6079 if (OpVal.getOpcode() == ISD::UNDEF)
6081 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
6084 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DDAGCombiner.cpp5575 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> local
5579 APInt ThisVal = OpVal.trunc(DstBitSize);
5581 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
5585 OpVal = OpVal.lshr(DstBitSize);

Completed in 159 milliseconds