Home
last modified time | relevance | path

Searched refs:isNormal (Results 1 – 10 of 10) sorted by relevance

/openbsd-src/gnu/llvm/clang/include/clang/Lex/
H A DModuleLoader.h64 bool isNormal() const { return Storage.getInt() == Normal; } in isNormal() function
/openbsd-src/gnu/llvm/clang/lib/CodeGen/
H A DCGCleanup.h286 EHCleanupScope(bool isNormal, bool isEH, unsigned cleanupSize, in EHCleanupScope() argument
294 CleanupBits.IsNormalCleanup = isNormal; in EHCleanupScope()
/openbsd-src/gnu/llvm/llvm/include/llvm/ADT/
H A DAPFloat.h356 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
1233 bool isNormal() const { return !isDenormal() && isFiniteNonZero(); } in isNormal() function
/openbsd-src/gnu/llvm/llvm/lib/Target/AMDGPU/
H A DAMDGPUInstCombineIntrinsic.cpp496 ((Mask & fcNegNormal) && Val.isNormal() && Val.isNegative()) || in instCombineIntrinsic()
501 ((Mask & fcPosNormal) && Val.isNormal() && !Val.isNegative()) || in instCombineIntrinsic()
/openbsd-src/gnu/llvm/llvm/lib/Analysis/
H A DConstantFolding.cpp1963 if (Src.isNormal() || Src.isInfinity()) in constantFoldCanonicalize()
2641 ((Mask & fcNegNormal) && Op1V.isNormal() && Op1V.isNegative()) || in ConstantFoldScalarCall2()
2646 ((Mask & fcPosNormal) && Op1V.isNormal() && !Op1V.isNegative()) || in ConstantFoldScalarCall2()
/openbsd-src/gnu/llvm/lldb/source/Plugins/Instruction/RISCV/
H A DEmulateInstructionRISCV.cpp1424 if (rs1.isNormal() && rs1.isNegative()) in FCLASS()
1434 if (rs1.isNormal() && !rs1.isNegative()) in FCLASS()
/openbsd-src/gnu/llvm/llvm/lib/IR/
H A DConstants.cpp223 return CFP->getValueAPF().isNormal(); in isNormalFP()
228 if (!CFP || !CFP->getValueAPF().isNormal()) in isNormalFP()
/openbsd-src/gnu/llvm/clang/lib/Frontend/
H A DCompilerInstance.cpp1991 if (!Result.isNormal()) in loadModule()
/openbsd-src/gnu/llvm/llvm/lib/Transforms/InstCombine/
H A DInstCombineAddSub.cpp1636 if (match(XY, m_APFloat(C)) && !C->isNormal()) in factorizeFAddFSub()
/openbsd-src/gnu/llvm/clang/lib/AST/
H A DExprConstant.cpp12132 Success(Val.isNormal() ? 1 : 0, E); in VisitBuiltinCallExpr()