Searched refs:IsZExt (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Target/AArch64/ |
D | AArch64FastISel.cpp | 160 bool WantResult = true, bool IsZExt = false); 180 bool emitCmp(const Value *LHS, const Value *RHS, bool IsZExt); 181 bool emitICmp(MVT RetVT, const Value *LHS, const Value *RHS, bool IsZExt); 192 bool IsZExt = false); 196 bool IsZExt = false); 220 uint64_t Imm, bool IsZExt = true); 224 uint64_t Imm, bool IsZExt = true); 228 uint64_t Imm, bool IsZExt = false); 270 bool IsZExt = isa<ZExtInst>(I); in isIntExtFree() local 277 if ((IsZExt && Arg->hasZExtAttr()) || (!IsZExt && Arg->hasSExtAttr())) in isIntExtFree() [all …]
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCFastISel.cpp | 153 const TargetRegisterClass *RC, bool IsZExt = true, 160 unsigned DestReg, bool IsZExt); 434 bool IsZExt, unsigned FP64LoadOpc) { in PPCEmitLoad() argument 462 Opc = (IsZExt ? in PPCEmitLoad() 467 Opc = (IsZExt ? in PPCEmitLoad() 778 bool IsZExt, unsigned DestReg) { in PPCEmitCmp() argument 801 Imm = (IsZExt) ? (long)CIVal.getZExtValue() : (long)CIVal.getSExtValue(); in PPCEmitCmp() 802 if ((IsZExt && isUInt<16>(Imm)) || (!IsZExt && isInt<16>(Imm))) in PPCEmitCmp() 824 CmpOpc = IsZExt ? PPC::CMPLW : PPC::CMPW; in PPCEmitCmp() 826 CmpOpc = IsZExt ? PPC::CMPLWI : PPC::CMPWI; in PPCEmitCmp() [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | FastISel.h | 36 bool IsZExt : 1; member 46 : Val(nullptr), Ty(nullptr), IsSExt(false), IsZExt(false), in ArgListEntry()
|
/external/llvm/lib/Target/Mips/ |
D | MipsFastISel.cpp | 123 bool IsZExt); 1245 bool IsZExt = Outs[0].Flags.isZExt(); in selectRet() local 1246 SrcReg = emitIntExt(RVVT, SrcReg, DestVT, IsZExt); in selectRet() 1376 unsigned DestReg, bool IsZExt) { in emitIntExt() argument 1377 if (IsZExt) in emitIntExt()
|
/external/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 1201 bool IsZExt = GEP1VariableIndices[i].Extension == EK_ZeroExt; in aliasGEP() local 1202 SignKnownZero |= IsZExt; in aliasGEP() 1203 SignKnownOne &= !IsZExt; in aliasGEP()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 83 IsZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt); in setAttributes() 931 if (Arg.IsZExt) in lowerCallTo()
|