Searched refs:ExtVal (Results 1 – 7 of 7) sorted by relevance
/external/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 1822 ZExtInst *ExtVal = dyn_cast<ZExtInst>(CI->getArgOperand(0)); in optimizeCallInst() local 1823 if (!ExtVal || !ExtVal->hasOneUse() || in optimizeCallInst() 1824 ExtVal->getParent() == CI->getParent()) in optimizeCallInst() 1827 ExtVal->moveBefore(CI); in optimizeCallInst() 1830 InsertedInsts.insert(ExtVal); in optimizeCallInst() 2908 Value *ExtVal = SExt; in promoteOperandForTruncAndAnyExt() local 2918 ExtVal = ZExt; in promoteOperandForTruncAndAnyExt() 2931 Instruction *ExtInst = dyn_cast<Instruction>(ExtVal); in promoteOperandForTruncAndAnyExt() 2938 return ExtVal; in promoteOperandForTruncAndAnyExt()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.h | 282 bool isVectorLoadExtDesirable(SDValue ExtVal) const override;
|
D | ARMISelLowering.cpp | 10730 bool ARMTargetLowering::isVectorLoadExtDesirable(SDValue ExtVal) const { in isVectorLoadExtDesirable() 10731 EVT VT = ExtVal.getValueType(); in isVectorLoadExtDesirable() 10740 if (ExtVal->use_empty() || in isVectorLoadExtDesirable() 10741 !ExtVal->use_begin()->isOnlyUserOf(ExtVal.getNode())) in isVectorLoadExtDesirable() 10744 SDNode *U = *ExtVal->use_begin(); in isVectorLoadExtDesirable()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXISelLowering.cpp | 1972 SDValue ExtVal = DAG.getNode(ISD::EXTRACT_VECTOR_ELT, DL, EltVT, Val, in LowerSTOREVector() local 1975 ExtVal = DAG.getNode(ISD::ANY_EXTEND, DL, MVT::i16, ExtVal); in LowerSTOREVector() 1976 Ops.push_back(ExtVal); in LowerSTOREVector()
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 1666 virtual bool isVectorLoadExtDesirable(SDValue ExtVal) const { return false; } in isVectorLoadExtDesirable() argument
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | LegalizeVectorTypes.cpp | 2657 SDValue ExtVal = DAG.getNode( in WidenVecRes_CONVERT_RNDSAT() local 2660 Ops[i] = DAG.getConvertRndSat(WidenVT, dl, ExtVal, DTyOp, STyOp, RndOp, in WidenVecRes_CONVERT_RNDSAT()
|
D | DAGCombiner.cpp | 12608 SDValue ExtVal = Extract.getOperand(1); in visitBUILD_VECTOR() local 12609 unsigned ExtIndex = cast<ConstantSDNode>(ExtVal)->getZExtValue(); in visitBUILD_VECTOR()
|