Searched refs:isZExtFree (Results 1 - 21 of 21) sorted by relevance

/external/llvm/lib/Target/MSP430/
H A DMSP430ISelLowering.h112 /// isZExtFree - Return true if any actual instruction that defines a value
120 bool isZExtFree(Type *Ty1, Type *Ty2) const override;
121 bool isZExtFree(EVT VT1, EVT VT2) const override;
122 bool isZExtFree(SDValue Val, EVT VT2) const override;
H A DMSP430ISelLowering.cpp1174 bool MSP430TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const { function in class:MSP430TargetLowering
1179 bool MSP430TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { function in class:MSP430TargetLowering
1184 bool MSP430TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { function in class:MSP430TargetLowering
1185 return isZExtFree(Val.getValueType(), VT2);
/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUISelLowering.h121 bool isZExtFree(Type *Src, Type *Dest) const override;
122 bool isZExtFree(EVT Src, EVT Dest) const override;
123 bool isZExtFree(SDValue Val, EVT VT2) const override;
H A DAMDGPUISelLowering.cpp529 bool AMDGPUTargetLowering::isZExtFree(Type *Src, Type *Dest) const { function in class:AMDGPUTargetLowering
536 bool AMDGPUTargetLowering::isZExtFree(EVT Src, EVT Dest) const { function in class:AMDGPUTargetLowering
544 bool AMDGPUTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { function in class:AMDGPUTargetLowering
545 return isZExtFree(Val.getValueType(), VT2);
/external/llvm/lib/Target/XCore/
H A DXCoreISelLowering.h99 using TargetLowering::isZExtFree;
100 bool isZExtFree(SDValue Val, EVT VT2) const override;
H A DXCoreISelLowering.cpp185 bool XCoreTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { function in class:XCoreTargetLowering
/external/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.h290 bool isZExtFree(Type *Ty1, Type *Ty2) const override;
291 bool isZExtFree(EVT VT1, EVT VT2) const override;
292 bool isZExtFree(SDValue Val, EVT VT2) const override;
H A DAArch64ISelLowering.cpp6890 bool AArch64TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const { function in class:AArch64TargetLowering
6897 bool AArch64TargetLowering::isZExtFree(EVT VT1, EVT VT2) const { function in class:AArch64TargetLowering
6905 bool AArch64TargetLowering::isZExtFree(SDValue Val, EVT VT2) const { function in class:AArch64TargetLowering
6907 if (isZExtFree(VT1, VT2)) {
/external/llvm/lib/Target/ARM/
H A DARMISelLowering.h279 using TargetLowering::isZExtFree;
280 bool isZExtFree(SDValue Val, EVT VT2) const override;
H A DARMISelLowering.cpp10709 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { function in class:ARMTargetLowering
/external/llvm/lib/Target/X86/
H A DX86ISelLowering.h824 bool isZExtFree(Type *Ty1, Type *Ty2) const override;
825 bool isZExtFree(EVT VT1, EVT VT2) const override;
826 bool isZExtFree(SDValue Val, EVT VT2) const override;
H A DX86ISelLowering.cpp20758 bool X86TargetLowering::isZExtFree(Type *Ty1, Type *Ty2) const {
20763 bool X86TargetLowering::isZExtFree(EVT VT1, EVT VT2) const {
20768 bool X86TargetLowering::isZExtFree(SDValue Val, EVT VT2) const {
20770 if (isZExtFree(VT1, VT2))
[all...]
/external/llvm/include/llvm/Target/
H A DTargetLowering.h1560 if (isZExtFree(I->getOperand(0)->getType(), I->getType()))
1581 virtual bool isZExtFree(Type *FromTy, Type *ToTy) const {
1585 virtual bool isZExtFree(EVT FromTy, EVT ToTy) const {
1652 virtual bool isZExtFree(SDValue Val, EVT VT2) const {
1653 return isZExtFree(Val.getValueType(), VT2);
2141 /// uses isZExtFree and ZERO_EXTEND for the widening cast, but it could be
/external/llvm/include/llvm/CodeGen/
H A DBasicTTIImpl.h210 if (TLI->isZExtFree(OpTy, Ty))
359 TLI->isZExtFree(SrcLT.second, DstLT.second))
/external/llvm/lib/Target/PowerPC/
H A DPPCISelLowering.h595 bool isZExtFree(SDValue Val, EVT VT2) const override;
H A DPPCISelLowering.cpp11458 bool PPCTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { function in class:PPCTargetLowering
11475 return TargetLowering::isZExtFree(Val, VT2);
/external/llvm/lib/CodeGen/SelectionDAG/
H A DTargetLowering.cpp332 /// casts are free. This uses isZExtFree and ZERO_EXTEND for the widening
364 TLI.isZExtFree(SmallVT, Op.getValueType())) {
H A DDAGCombiner.cpp2735 (!TLI.isZExtFree(VT, Op0VT) ||
6319 !TLI.isZExtFree(N0.getValueType(), VT))) {
10093 !LS.DAG->getTargetLoweringInfo().isZExtFree(LoadedType, TruncType))
13363 Op = TLI.isZExtFree(Op.getValueType(), SVT)
H A DSelectionDAG.cpp3450 Op = TLI->isZExtFree(Op.getValueType(), SVT)
H A DSelectionDAGBuilder.cpp731 if (ExtendKind == ISD::ANY_EXTEND && TLI.isZExtFree(Val, RegisterVT))
/external/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4031 if (!TLI.isZExtFree(NarrowTy, LargeTy))

Completed in 340 milliseconds