Searched refs:IsSExt (Results 1 – 4 of 4) sorted by relevance
/external/llvm/include/llvm/CodeGen/ |
D | MachineFrameInfo.h | 455 void setObjectSExt(int ObjectIdx, bool IsSExt) { in setObjectSExt() argument 458 Objects[ObjectIdx+NumFixedObjects].isSExt = IsSExt; in setObjectSExt()
|
D | FastISel.h | 36 bool IsSExt : 1; member 49 : Val(nullptr), Ty(nullptr), IsSExt(false), IsZExt(false), in ArgListEntry()
|
/external/llvm/lib/CodeGen/ |
D | CodeGenPrepare.cpp | 2779 const InstrToOrigTy &PromotedInsts, bool IsSExt); 2817 const TargetLowering &TLI, bool IsSExt); 2864 bool IsSExt) { in canGetThrough() argument 2876 if (IsSExt && isa<SExtInst>(Inst)) in canGetThrough() 2883 ((!IsSExt && BinOp->hasNoUnsignedWrap()) || in canGetThrough() 2884 (IsSExt && BinOp->hasNoSignedWrap()))) in canGetThrough() 2913 if (It != PromotedInsts.end() && It->second.getInt() == IsSExt) in canGetThrough() 2915 else if ((IsSExt && isa<SExtInst>(Opnd)) || (!IsSExt && isa<ZExtInst>(Opnd))) in canGetThrough() 2932 bool IsSExt = isa<SExtInst>(Ext); in getAction() local 2936 if (!ExtOpnd || !canGetThrough(ExtOpnd, ExtTy, PromotedInsts, IsSExt)) in getAction() [all …]
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 83 IsSExt = CS->paramHasAttr(AttrIdx, Attribute::SExt); in setAttributes() 956 if (Arg.IsSExt) in lowerCallTo()
|