HomeSort by relevance Sort by last modified time
    Searched defs:FSub (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/Analysis/
InstructionSimplify.cpp 801 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
810 Instruction *FSub = cast<Instruction>(SubOp);
811 if ((FMF.noNaNs() || FSub->hasNoNaNs()) &&
812 (FMF.noInfs() || FSub->hasNoInfs()))
819 /// Given operands for an FSub, see if we can fold the result. If not, this
    [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 459 // (fmul X, -1.0) --> (fsub -0.0, X)
481 FAddSub->getOpcode() == Instruction::FSub)) {
499 if (Swap && FAddSub->getOpcode() == Instruction::FSub)
535 Value *FSub = Builder->CreateFSub(FMulVal, OpX);
536 FSub->takeName(&I);
537 return ReplaceInstUsesWith(I, FSub);
    [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 156 | FSub
    [all...]

Completed in 232 milliseconds