Home
last modified time | relevance | path

Searched refs:IsInf (Results 1 – 8 of 8) sorted by relevance

/freebsd/contrib/llvm-project/llvm/include/llvm/IR/
H A DGenericFloatingPointPredicateUtils.h182 const bool IsInf = (OrigClass & fcInf) == OrigClass; in fcmpImpliesClass() local
183 if (IsInf) { in fcmpImpliesClass()
/freebsd/contrib/llvm-project/llvm/lib/Target/DirectX/
H A DDXILOpLowering.cpp791 OpCode = dxil::OpCode::IsInf; in lowerIsFPClass()
H A DDXIL.td434 def IsInf : DXILOp<9, isSpecialFloat> {
/freebsd/contrib/llvm-project/clang/lib/AST/ByteCode/
H A DInterpBuiltin.cpp463 bool IsInf = Arg.isInf(); in interp__builtin_isinf() local
466 pushInteger(S, IsInf ? (Arg.isNegative() ? -1 : 1) : 0, Call->getType()); in interp__builtin_isinf()
/freebsd/contrib/llvm-project/clang/lib/CodeGen/
H A DCGBuiltin.cpp4227 Value *IsInf = Builder.CreateFCmpOEQ( in EmitBuiltinExpr() local
4236 Value *Result = Builder.CreateSelect(IsInf, SignResult, Zero); in EmitBuiltinExpr()
4293 Value *IsInf = in EmitBuiltinExpr() local
4298 Builder.CreateCondBr(IsInf, End, NotInf); in EmitBuiltinExpr()
/freebsd/contrib/llvm-project/llvm/lib/Target/NVPTX/
H A DNVPTXISelLowering.cpp2839 SDValue IsInf = DAG.getSetCC(DL, MVT::i1, AbsY, Inf, ISD::SETEQ); in lowerFREM() local
2840 return DAG.getSelect(DL, Ty, IsInf, X, Sub); in lowerFREM()
/freebsd/contrib/llvm-project/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5657 bool IsInf = match(V, m_Inf()); in simplifyFPOp() local
5665 if (FMF.noInfs() && (IsInf || IsUndef)) in simplifyFPOp()
/freebsd/contrib/llvm-project/clang/include/clang/Basic/
H A DBuiltins.td608 def IsInf : Builtin {