Home
last modified time | relevance | path

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

/llvm-project-15.0.7/mlir/test/Dialect/SPIRV/IR/
H A Dlogical-ops.mlir36 // spv.IsInf
40 // CHECK: spv.IsInf {{.*}} : f32
41 %0 = spv.IsInf %arg0 : f32
46 // CHECK: spv.IsInf {{.*}} : vector<2xf32>
47 %0 = spv.IsInf %arg0 : vector<2xf32>
/llvm-project-15.0.7/mlir/test/Target/SPIRV/
H A Dlogical-ops.mlir85 // CHCK: spv.IsInf
86 %16 = spv.IsInf %arg1 : f32
/llvm-project-15.0.7/mlir/include/mlir/Dialect/SPIRV/IR/
H A DSPIRVLogicalOps.td523 def SPV_IsInfOp : SPV_LogicalUnaryOp<"IsInf", SPV_Float, []> {
539 isinf-op ::= ssa-id `=` `spv.IsInf` ssa-use
546 %2 = spv.IsInf %0: f32
547 %3 = spv.IsInf %1: vector<4xi32>
/llvm-project-15.0.7/llvm/lib/Analysis/
H A DInstructionSimplify.cpp5112 bool IsInf = match(V, m_Inf()); in simplifyFPOp() local
5120 if (FMF.noInfs() && (IsInf || IsUndef)) in simplifyFPOp()
/llvm-project-15.0.7/clang/lib/CodeGen/
H A DCGBuiltin.cpp3263 Value *IsInf = Builder.CreateFCmpOEQ( in EmitBuiltinExpr() local
3272 Value *Result = Builder.CreateSelect(IsInf, SignResult, Zero); in EmitBuiltinExpr()
3341 Value *IsInf = in EmitBuiltinExpr() local
3346 Builder.CreateCondBr(IsInf, End, NotInf); in EmitBuiltinExpr()