HomeSort by relevance Sort by last modified time
    Searched refs:FSub (Results 1 - 25 of 44) sorted by null

1 2

  /external/llvm/lib/Target/Mips/
MipsOs16.cpp 85 case Instruction::FSub:
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 120 case Instruction::FSub: return Instruction::Sub;
217 case Instruction::FSub:
263 case Instruction::FSub:
265 assert(Ops.size() == 2 && "FSub is a binary operator!");
490 case Instruction::FSub:
Reassociate.cpp     [all...]
SCCP.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 550 // (fmul X, -1.0) --> (fsub -0.0, X)
572 FAddSub->getOpcode() == Instruction::FSub)) {
590 if (Swap && FAddSub->getOpcode() == Instruction::FSub)
631 Value *FSub = Builder->CreateFSub(FMulVal, OpX);
632 FSub->takeName(&I);
633 return ReplaceInstUsesWith(I, FSub);
    [all...]
InstCombineVectorOps.cpp 613 case Instruction::FSub:
676 case Instruction::FSub:
776 case Instruction::FSub:
    [all...]
InstCombineAddSub.cpp 10 // This file implements the visit functions for add, fadd, sub, and fsub.
154 /// FAddCombine is the class for optimizing an unsafe fadd/fsub along
359 if (Opcode == Instruction::FAdd || Opcode == Instruction::FSub) {
382 if (Opcode == Instruction::FSub)
442 I->getOpcode() == Instruction::FSub) && "Expect add/sub");
525 I->getOpcode() == Instruction::FSub) && "Expect add/sub");
718 // Iterate the addends, creating fadd/fsub using adjacent two addends.
    [all...]
InstCombineSelect.cpp     [all...]
  /external/llvm/lib/Analysis/
CostModel.cpp 399 case Instruction::FSub:
InstructionSimplify.cpp 811 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 761 case Instruction::FSub:
796 case Instruction::FSub:
811 case Instruction::FSub:
832 case Instruction::FSub:
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 199 case FSub: return "fsub";
Instructions.cpp     [all...]
Constants.cpp     [all...]
  /external/llvm/include/llvm/IR/
PatternMatch.h 452 inline BinaryOp_match<LHS, RHS, Instruction::FSub> m_FSub(const LHS &L,
454 return BinaryOp_match<LHS, RHS, Instruction::FSub>(L, R);
886 if (O->getOpcode() == Instruction::FSub)
    [all...]
  /external/llvm/lib/Transforms/ObjCARC/
ARCInstKind.cpp 268 case Instruction::FSub:
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 138 return Instruction::FSub;
139 case Instruction::FSub:
154 if (Op == Instruction::FAdd || Op == Instruction::FSub ||
161 /// alternate fadd,fsub / fsub,fadd/add,sub/sub,add sequence.
162 /// (i.e. e.g. opcodes of fadd,fsub,fadd,fsub...)
    [all...]
LoopVectorize.cpp     [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 872 case Instruction::FSub: Out << "getFSub("; break;
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 702 INSTKEYWORD(sub, Sub); INSTKEYWORD(fsub, FSub);
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 343 case 1:{Op = (isFloat?Instruction::FSub : Instruction::Sub); break; }
  /external/llvm/lib/ExecutionEngine/Interpreter/
Execution.cpp 72 dbgs() << "Unhandled type for FSub instruction: " << *Ty << "\n";
744 case Instruction::FSub: FLOAT_VECTOR_OP(-) break;
774 case Instruction::FSub: executeFSubInst(R, Src1, Src2, Ty); break;
    [all...]
  /external/llvm/lib/CodeGen/
TargetLoweringBase.cpp     [all...]
  /external/llvm/bindings/ocaml/llvm/
llvm.ml 163 | FSub
    [all...]
  /external/llvm/lib/CodeGen/SelectionDAG/
FastISel.cpp     [all...]

Completed in 2760 milliseconds

1 2