Searched refs:IsZExt (Results 1 – 7 of 7) 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 | 158 const TargetRegisterClass *RC, bool IsZExt = true, 165 unsigned DestReg, bool IsZExt); 464 bool IsZExt, unsigned FP64LoadOpc) { in PPCEmitLoad() argument 492 Opc = (IsZExt ? in PPCEmitLoad() 497 Opc = (IsZExt ? in PPCEmitLoad() 814 bool IsZExt, unsigned DestReg) { in PPCEmitCmp() argument 837 Imm = (IsZExt) ? (long)CIVal.getZExtValue() : (long)CIVal.getSExtValue(); in PPCEmitCmp() 838 if ((IsZExt && isUInt<16>(Imm)) || (!IsZExt && isInt<16>(Imm))) in PPCEmitCmp() 860 CmpOpc = IsZExt ? PPC::CMPLW : PPC::CMPW; in PPCEmitCmp() 862 CmpOpc = IsZExt ? PPC::CMPLWI : PPC::CMPWI; in PPCEmitCmp() [all …]
|
/external/llvm/include/llvm/CodeGen/ |
D | MachineFrameInfo.h | 443 void setObjectZExt(int ObjectIdx, bool IsZExt) { in setObjectZExt() argument 446 Objects[ObjectIdx+NumFixedObjects].isZExt = IsZExt; in setObjectZExt()
|
D | FastISel.h | 37 bool IsZExt : 1; member 49 : Val(nullptr), Ty(nullptr), IsSExt(false), IsZExt(false), in ArgListEntry()
|
/external/llvm/lib/Target/Mips/ |
D | MipsFastISel.cpp | 142 bool IsZExt); 1505 bool IsZExt = Outs[0].Flags.isZExt(); in selectRet() local 1506 SrcReg = emitIntExt(RVVT, SrcReg, DestVT, IsZExt); in selectRet() 1641 unsigned DestReg, bool IsZExt) { in emitIntExt() argument 1649 if (IsZExt) in emitIntExt() 1728 bool IsZExt = Opcode == Instruction::LShr; in selectShift() local 1729 if (!emitIntExt(Op0MVT, Op0Reg, MVT::i32, TempReg, IsZExt)) in selectShift()
|
/external/llvm/lib/Analysis/ |
D | BasicAliasAnalysis.cpp | 1192 bool IsZExt = DecompGEP1.VarIndices[i].ZExtBits > 0 || isa<ZExtInst>(V); in aliasGEP() local 1193 SignKnownZero |= IsZExt; in aliasGEP() 1194 SignKnownOne &= !IsZExt; in aliasGEP()
|
/external/llvm/lib/CodeGen/SelectionDAG/ |
D | FastISel.cpp | 84 IsZExt = CS->paramHasAttr(AttrIdx, Attribute::ZExt); in setAttributes() 954 if (Arg.IsZExt) in lowerCallTo()
|