Searched refs:IsZExt (Results 1 – 6 of 6) sorted by relevance
/external/llvm/lib/Target/AArch64/ |
D | AArch64FastISel.cpp | 161 bool WantResult = true, bool IsZExt = false); 181 bool emitCmp(const Value *LHS, const Value *RHS, bool IsZExt); 182 bool emitICmp(MVT RetVT, const Value *LHS, const Value *RHS, bool IsZExt); 193 bool IsZExt = false); 197 bool IsZExt = false); 221 uint64_t Imm, bool IsZExt = true); 225 uint64_t Imm, bool IsZExt = true); 229 uint64_t Imm, bool IsZExt = false); 271 bool IsZExt = isa<ZExtInst>(I); in isIntExtFree() local 278 if ((IsZExt && Arg->hasZExtAttr()) || (!IsZExt && Arg->hasSExtAttr())) in isIntExtFree() [all …]
|
/external/llvm/lib/Target/PowerPC/ |
D | PPCFastISel.cpp | 157 const TargetRegisterClass *RC, bool IsZExt = true, 164 unsigned DestReg, bool IsZExt); 451 bool IsZExt, unsigned FP64LoadOpc) { in PPCEmitLoad() argument 479 Opc = (IsZExt ? in PPCEmitLoad() 484 Opc = (IsZExt ? in PPCEmitLoad() 801 bool IsZExt, unsigned DestReg) { in PPCEmitCmp() argument 824 Imm = (IsZExt) ? (long)CIVal.getZExtValue() : (long)CIVal.getSExtValue(); in PPCEmitCmp() 825 if ((IsZExt && isUInt<16>(Imm)) || (!IsZExt && isInt<16>(Imm))) in PPCEmitCmp() 847 CmpOpc = IsZExt ? PPC::CMPLW : PPC::CMPW; in PPCEmitCmp() 849 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 | 129 bool IsZExt); 1492 bool IsZExt = Outs[0].Flags.isZExt(); in selectRet() local 1493 SrcReg = emitIntExt(RVVT, SrcReg, DestVT, IsZExt); in selectRet() 1628 unsigned DestReg, bool IsZExt) { in emitIntExt() argument 1636 if (IsZExt) in emitIntExt() 1715 bool IsZExt = Opcode == Instruction::LShr; in selectShift() local 1716 if (!emitIntExt(Op0MVT, Op0Reg, MVT::i32, TempReg, IsZExt)) in selectShift()
|
/external/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 1085 bool IsZExt = GEP1VariableIndices[i].ZExtBits > 0 || isa<ZExtInst>(V); in aliasGEP() local 1086 SignKnownZero |= IsZExt; in aliasGEP() 1087 SignKnownOne &= !IsZExt; in aliasGEP()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 84 IsZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt); in setAttributes() 955 if (Arg.IsZExt) in lowerCallTo()
|