Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions llvm/include/llvm/Analysis/FloatingPointPredicateUtils.h
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,18 @@ namespace llvm {
using FloatingPointPredicateUtils =
GenericFloatingPointPredicateUtils<SSAContext>;

template <>
DenormalMode FloatingPointPredicateUtils::queryDenormalMode(const Function &F,
Value *Val);

template <>
bool FloatingPointPredicateUtils::lookThroughFAbs(const Function &F, Value *LHS,
Value *&Src);

template <>
std::optional<APFloat>
FloatingPointPredicateUtils::matchConstantFloat(const Function &F, Value *Val);

/// Returns a pair of values, which if passed to llvm.is.fpclass, returns the
/// same result as an fcmp with the given operands.
///
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,19 @@ namespace llvm {
using MachineFloatingPointPredicateUtils =
GenericFloatingPointPredicateUtils<MachineSSAContext>;

template <>
DenormalMode
MachineFloatingPointPredicateUtils::queryDenormalMode(const MachineFunction &MF,
Register Val);

template <>
bool MachineFloatingPointPredicateUtils::lookThroughFAbs(
const MachineFunction &MF, Register LHS, Register &Src);

template <>
std::optional<APFloat> MachineFloatingPointPredicateUtils::matchConstantFloat(
const MachineFunction &MF, Register Val);

/// Compute the possible floating-point classes that \p LHS could be based on
/// fcmp \Pred \p LHS, \p RHS.
///
Expand Down