Searched defs:OpVal (Results 1 - 16 of 16) sorted by relevance

/external/llvm/lib/Analysis/
H A DPHITransAddr.cpp386 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0),
388 if (!OpVal) return nullptr;
391 CastInst *New = CastInst::Create(Cast->getOpcode(), OpVal, InVal->getType(),
404 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local
406 if (!OpVal) return nullptr;
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.cpp264 LatticeVal OpVal = getOrInitValueState(PN.getIncomingValue(i)); local
265 if (OpVal != PNIV)
266 PNIV = LatticeFunc->MergeValues(PNIV, OpVal);
/external/swiftshader/third_party/LLVM/lib/Analysis/
H A DPHITransAddr.cpp385 Value *OpVal = InsertPHITranslatedSubExpr(Cast->getOperand(0),
387 if (OpVal == 0) return 0;
391 OpVal, InVal->getType(),
403 Value *OpVal = InsertPHITranslatedSubExpr(GEP->getOperand(i), local
405 if (OpVal == 0) return 0;
406 GEPOps.push_back(OpVal);
427 Value *OpVal = InsertPHITranslatedSubExpr(Inst->getOperand(0),
429 if (OpVal == 0) return 0;
431 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/swiftshader/third_party/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.cpp952 Value *OpVal = PN.getIncomingValue(InValNo); local
953 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombinePHI.cpp854 Value *OpVal = PN.getIncomingValue(InValNo); local
855 if (OpVal != NonPhiInVal && !isa<PHINode>(OpVal))
/external/swiftshader/third_party/LLVM/lib/Transforms/Scalar/
H A DCodeGenPrepare.cpp936 Value *OpVal = CS->getArgOperand(ArgNo++); local
937 MadeChange |= OptimizeMemoryInst(CS, OpVal, OpVal->getType());
H A DSCCP.cpp884 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local
885 mergeInValue(&I, getValueState(OpVal));
/external/llvm/lib/Transforms/Scalar/
H A DSCCP.cpp852 Value *OpVal = CondCB->isZero() ? I.getFalseValue() : I.getTrueValue(); local
853 mergeInValue(&I, getValueState(OpVal));
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp3460 /// Check to see if all uses of OpVal by the specified inline asm call are due
3462 static bool IsOperandAMemoryOperand(CallInst *CI, InlineAsm *IA, Value *OpVal, argument
3478 if (OpInfo.CallOperandVal == OpVal &&
4065 Value *OpVal = CS->getArgOperand(ArgNo++); local
4066 MadeChange |= optimizeMemoryInst(CS, OpVal, OpVal->getType(), ~0u);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DSelectionDAG.cpp7144 SDValue OpVal = getOperand(i); local
7147 if (OpVal.isUndef())
7149 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
7152 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DDAGCombiner.cpp7743 APInt OpVal = cast<ConstantSDNode>(Op)-> local
7747 APInt ThisVal = OpVal.trunc(DstBitSize);
7749 OpVal = OpVal.lshr(DstBitSize);
/external/swiftshader/third_party/LLVM/lib/CodeGen/SelectionDAG/
H A DDAGCombiner.cpp5208 APInt OpVal = cast<ConstantSDNode>(BV->getOperand(i))-> local
5212 APInt ThisVal = OpVal.trunc(DstBitSize);
5214 if (isS2V && i == 0 && j == 0 && ThisVal.zext(SrcBitSize) == OpVal)
5218 OpVal = OpVal.lshr(DstBitSize);
H A DSelectionDAG.cpp6674 SDValue OpVal = getOperand(i); local
6677 if (OpVal.getOpcode() == ISD::UNDEF)
6679 else if (ConstantSDNode *CN = dyn_cast<ConstantSDNode>(OpVal))
6682 else if (ConstantFPSDNode *CN = dyn_cast<ConstantFPSDNode>(OpVal))
H A DSelectionDAGBuilder.cpp5957 const Value *OpVal = OpInfo.CallOperandVal; local
5958 if (isa<ConstantFP>(OpVal) || isa<ConstantInt>(OpVal) ||
5959 isa<ConstantVector>(OpVal)) {
5960 OpInfo.CallOperand = DAG.getConstantPool(cast<Constant>(OpVal),
5965 Type *Ty = OpVal->getType();

Completed in 382 milliseconds