/external/llvm/lib/Target/MSP430/ |
D | MSP430ISelLowering.h | 117 virtual bool isZExtFree(Type *Ty1, Type *Ty2) const; 118 virtual bool isZExtFree(EVT VT1, EVT VT2) const; 119 virtual bool isZExtFree(SDValue Val, EVT VT2) const;
|
D | MSP430ISelLowering.cpp | 1052 bool MSP430TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const { in isZExtFree() function in MSP430TargetLowering 1057 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() function in MSP430TargetLowering 1062 bool MSP430TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() function in MSP430TargetLowering 1063 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
|
/external/llvm/lib/Target/X86/ |
D | X86ISelLowering.h | 638 virtual bool isZExtFree(Type *Ty1, Type *Ty2) const; 639 virtual bool isZExtFree(EVT VT1, EVT VT2) const; 640 virtual bool isZExtFree(SDValue Val, EVT VT2) const;
|
D | X86ISelLowering.cpp | 12640 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const { in isZExtFree() function in X86TargetLowering 12645 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { in isZExtFree() function in X86TargetLowering 12650 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() function in X86TargetLowering 12652 if (isZExtFree(VT1, VT2)) in isZExtFree()
|
/external/llvm/lib/Target/ARM/ |
D | ARMISelLowering.h | 298 using TargetLowering::isZExtFree; 299 virtual bool isZExtFree(SDValue Val, EVT VT2) const;
|
D | ARMISelLowering.cpp | 9533 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() function in ARMTargetLowering
|
/external/llvm/include/llvm/Target/ |
D | TargetLowering.h | 1186 virtual bool isZExtFree(Type * /*Ty1*/, Type * /*Ty2*/) const { in isZExtFree() function 1190 virtual bool isZExtFree(EVT /*VT1*/, EVT /*VT2*/) const { in isZExtFree() function 1197 virtual bool isZExtFree(SDValue Val, EVT VT2) const { in isZExtFree() function 1198 return isZExtFree(Val.getValueType(), VT2); in isZExtFree()
|
/external/llvm/lib/CodeGen/ |
D | BasicTargetTransformInfo.cpp | 259 TLI->isZExtFree(SrcLT.second, DstLT.second)) in getCastInstrCost()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | TargetLowering.cpp | 326 TLI.isZExtFree(SmallVT, Op.getValueType())) { in ShrinkDemandedOp()
|
D | DAGCombiner.cpp | 2333 (!TLI.isZExtFree(VT, Op0VT) || in SimplifyBinOpWithSameOpcodeHands() 4643 !TLI.isZExtFree(N0.getValueType(), VT))) { in visitZERO_EXTEND()
|
D | SelectionDAGBuilder.cpp | 777 TLI.isZExtFree(Val, RegisterVT)? ISD::ZERO_EXTEND: ISD::ANY_EXTEND; in getCopyToRegs()
|