HomeSort by: relevance | last modified time | path
    Searched defs:FPMO (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/IR/
PatternMatch.h 1036 auto *FPMO = dyn_cast<FPMathOperator>(V);
1037 if (!FPMO) return false;
1039 if (FPMO->getOpcode() == Instruction::FNeg)
1040 return X.match(FPMO->getOperand(0));
1042 if (FPMO->getOpcode() == Instruction::FSub) {
1043 if (FPMO->hasNoSignedZeros()) {
1045 if (!cstfp_pred_ty<is_any_zero_fp>().match(FPMO->getOperand(0)))
1049 if (!cstfp_pred_ty<is_neg_zero_fp>().match(FPMO->getOperand(0)))
1053 return X.match(FPMO->getOperand(1));
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstructionCombining.cpp 295 FPMathOperator *FPMO = dyn_cast<FPMathOperator>(&I);
296 if (!FPMO) {
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/SelectionDAG/
SelectionDAGBuilder.cpp 3222 auto *FPMO = cast<FPMathOperator>(&I);
3223 if (FPMO->hasNoNaNs() || TM.Options.NoNaNsFPMath)
3227 Flags.copyFMF(*FPMO);
4817 if (auto *FPMO = dyn_cast<FPMathOperator>(&I))
4818 Flags.copyFMF(*FPMO);
9270 if (auto *FPMO = dyn_cast<FPMathOperator>(&I))
9271 SDFlags.copyFMF(*FPMO);

Completed in 70 milliseconds