Home
last modified time | relevance | path

Searched refs:IsSExt (Results 1 – 14 of 14) sorted by relevance

/freebsd-13.1/contrib/llvm-project/llvm/include/llvm/CodeGen/
H A DTargetCallingConv.h30 unsigned IsSExt : 1; ///< Sign extended member
62 : IsZExt(0), IsSExt(0), IsInReg(0), IsSRet(0), IsByVal(0), IsByRef(0), in ArgFlagsTy()
76 bool isSExt() const { return IsSExt; } in isSExt()
77 void setSExt() { IsSExt = 1; } in setSExt()
H A DMachineFrameInfo.h518 void setObjectSExt(int ObjectIdx, bool IsSExt) { in setObjectSExt() argument
521 Objects[ObjectIdx+NumFixedObjects].isSExt = IsSExt; in setObjectSExt()
H A DTargetLowering.h278 bool IsSExt : 1; variable
296 : IsSExt(false), IsZExt(false), IsInReg(false), IsSRet(false), in ArgListEntry()
3893 bool IsSExt : 1; member
3900 : IsSExt(false), DoesNotReturn(false), IsReturnValueUsed(true), in MakeLibCallOptions()
3904 IsSExt = Value;
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/
H A DCodeGenPrepare.cpp4027 bool IsSExt) { in addPromotedInst() argument
4050 bool IsSExt) { in getOrigType() argument
4170 if (IsSExt && isa<SExtInst>(Inst)) in canGetThrough()
4177 ((!IsSExt && BinOp->hasNoUnsignedWrap()) || in canGetThrough()
4178 (IsSExt && BinOp->hasNoSignedWrap()))) in canGetThrough()
4247 else if ((IsSExt && isa<SExtInst>(Opnd)) || (!IsSExt && isa<ZExtInst>(Opnd))) in canGetThrough()
4264 bool IsSExt = isa<SExtInst>(Ext); in getAction() local
4343 bool IsSExt) { in promoteOperandForOther() argument
5659 bool IsSExt = isa<SExtInst>(FirstUser); in hasSameExtUse() local
5663 if ((IsSExt && !isa<SExtInst>(UI)) || (!IsSExt && !isa<ZExtInst>(UI))) in hasSameExtUse()
[all …]
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/ARM/
H A DARMSelectionDAGInfo.cpp112 Entry.IsSExt = false; in EmitSpecializedLibcall()
H A DARMISelLowering.cpp9594 Entry.IsSExt = false; in LowerFSINCOS()
9604 Entry.IsSExt = false; in LowerFSINCOS()
19426 Entry.IsSExt = isSigned; in getDivRemArgList()
/freebsd-13.1/contrib/llvm-project/llvm/lib/CodeGen/SelectionDAG/
H A DLegalizeDAG.cpp1994 Entry.IsSExt = TLI.shouldSignExtendTypeInLibCall(ArgVT, isSigned); in ExpandLibCall()
2146 Entry.IsSExt = isSigned; in ExpandDivRemLibCall()
2155 Entry.IsSExt = isSigned; in ExpandDivRemLibCall()
2240 Entry.IsSExt = false; in ExpandSinCosLibCall()
2248 Entry.IsSExt = false; in ExpandSinCosLibCall()
2256 Entry.IsSExt = false; in ExpandSinCosLibCall()
H A DTargetLowering.cpp109 IsSExt = Call->paramHasAttr(ArgIdx, Attribute::SExt); in setAttributes()
155 Entry.IsSExt = shouldSignExtendTypeInLibCall(NewOp.getValueType(), in makeLibCall()
156 CallOptions.IsSExt); in makeLibCall()
157 Entry.IsZExt = !Entry.IsSExt; in makeLibCall()
161 Entry.IsSExt = Entry.IsZExt = false; in makeLibCall()
173 bool signExtend = shouldSignExtendTypeInLibCall(RetVT, CallOptions.IsSExt); in makeLibCall()
H A DFastISel.cpp1043 if (Arg.IsSExt) in lowerCallTo()
H A DSelectionDAGBuilder.cpp9460 Entry.IsSExt = false; in LowerCallTo()
9564 if (Args[i].IsSExt) in LowerCallTo()
9639 if (Args[i].IsSExt) in LowerCallTo()
9664 (ExtendKind != ISD::ANY_EXTEND && CLI.RetSExt == Args[i].IsSExt && in LowerCallTo()
H A DLegalizeIntegerTypes.cpp4056 Entry.IsSExt = true; in ExpandIntRes_XMULO()
4064 Entry.IsSExt = true; in ExpandIntRes_XMULO()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AVR/
H A DAVRISelLowering.cpp458 Entry.IsSExt = IsSigned; in LowerDivRem()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/AArch64/
H A DAArch64ISelLowering.cpp3506 Entry.IsSExt = false; in LowerFSINCOS()
12543 bool IsSExt = ExtendOpcode == ISD::SIGN_EXTEND || in performCommonVectorExtendCombine() local
12546 if (!IsSExt && ExtendOpcode != ISD::ZERO_EXTEND && in performCommonVectorExtendCombine()
12584 SDValue ExtendNode = DAG.getNode(IsSExt ? ISD::SIGN_EXTEND : ISD::ZERO_EXTEND, in performCommonVectorExtendCombine()
/freebsd-13.1/contrib/llvm-project/llvm/lib/Target/X86/
H A DX86ISelLowering.cpp28095 Entry.IsSExt = false; in LowerWin64_i128OP()
30067 Entry.IsSExt = false; in LowerFSINCOS()