/external/llvm/lib/Target/MSP430/ |
H A D | MSP430ISelLowering.h | 112 /// 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 D | MSP430ISelLowering.cpp | 1174 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 D | AMDGPUISelLowering.h | 121 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 D | AMDGPUISelLowering.cpp | 529 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 D | XCoreISelLowering.h | 99 using TargetLowering::isZExtFree; 100 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
H A D | XCoreISelLowering.cpp | 185 bool XCoreTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { function in class:XCoreTargetLowering
|
/external/llvm/lib/Target/AArch64/ |
H A D | AArch64ISelLowering.h | 290 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 D | AArch64ISelLowering.cpp | 6890 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 D | ARMISelLowering.h | 279 using TargetLowering::isZExtFree; 280 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
H A D | ARMISelLowering.cpp | 10709 bool ARMTargetLowering::isZExtFree(SDValue Val, EVT VT2) const { function in class:ARMTargetLowering
|
/external/llvm/lib/Target/X86/ |
H A D | X86ISelLowering.h | 824 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 D | X86ISelLowering.cpp | 20758 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 D | TargetLowering.h | 1560 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 D | BasicTTIImpl.h | 210 if (TLI->isZExtFree(OpTy, Ty)) 359 TLI->isZExtFree(SrcLT.second, DstLT.second))
|
/external/llvm/lib/Target/PowerPC/ |
H A D | PPCISelLowering.h | 595 bool isZExtFree(SDValue Val, EVT VT2) const override;
|
H A D | PPCISelLowering.cpp | 11458 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 D | TargetLowering.cpp | 332 /// casts are free. This uses isZExtFree and ZERO_EXTEND for the widening 364 TLI.isZExtFree(SmallVT, Op.getValueType())) {
|
H A D | DAGCombiner.cpp | 2735 (!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 D | SelectionDAG.cpp | 3450 Op = TLI->isZExtFree(Op.getValueType(), SVT)
|
H A D | SelectionDAGBuilder.cpp | 731 if (ExtendKind == ISD::ANY_EXTEND && TLI.isZExtFree(Val, RegisterVT))
|
/external/llvm/lib/CodeGen/ |
H A D | CodeGenPrepare.cpp | 4031 if (!TLI.isZExtFree(NarrowTy, LargeTy))
|