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

1 2

  /external/llvm/lib/Target/Mips/
MipsOs16.cpp 85 case Instruction::FSub:
  /external/llvm/lib/Transforms/Scalar/
Float2Int.cpp 125 case Instruction::FSub: return Instruction::Sub;
224 case Instruction::FSub:
270 case Instruction::FSub:
272 assert(Ops.size() == 2 && "FSub is a binary operator!");
497 case Instruction::FSub:
Reassociate.cpp     [all...]
SCCP.cpp     [all...]
  /external/llvm/lib/Transforms/InstCombine/
InstCombineMulDivRem.cpp 561 // (fmul X, -1.0) --> (fsub -0.0, X)
583 FAddSub->getOpcode() == Instruction::FSub)) {
601 if (Swap && FAddSub->getOpcode() == Instruction::FSub)
642 Value *FSub = Builder->CreateFSub(FMulVal, OpX);
643 FSub->takeName(&I);
644 return ReplaceInstUsesWith(I, FSub);
    [all...]
InstCombineVectorOps.cpp 564 case Instruction::FSub:
627 case Instruction::FSub:
727 case Instruction::FSub:
    [all...]
InstCombineAddSub.cpp 10 // This file implements the visit functions for add, fadd, sub, and fsub.
155 /// FAddCombine is the class for optimizing an unsafe fadd/fsub along
360 if (Opcode == Instruction::FAdd || Opcode == Instruction::FSub) {
383 if (Opcode == Instruction::FSub)
443 I->getOpcode() == Instruction::FSub) && "Expect add/sub");
526 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 394 case Instruction::FSub:
ObjCARCInstKind.cpp 270 case Instruction::FSub:
InstructionSimplify.cpp 810 // fadd [nnan ninf] X, (fsub [nnan ninf] 0, X) ==> 0
    [all...]
  /external/llvm/lib/ExecutionEngine/
ExecutionEngine.cpp 784 case Instruction::FSub:
819 case Instruction::FSub:
834 case Instruction::FSub:
855 case Instruction::FSub:
    [all...]
  /external/llvm/lib/IR/
Instruction.cpp 214 case FSub: return "fsub";
Instructions.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/Utils/
LoopUtils.cpp 440 case Instruction::FSub:
  /external/vulkan-validation-layers/demos/smoke/android/src/main/jni/
Smoke.push_constant.vert.h 138 73: 7(fvec3) FSub 71 72
Smoke.vert.h 139 73: 7(fvec3) FSub 71 72
  /external/llvm/lib/Transforms/Vectorize/
SLPVectorizer.cpp 156 return Instruction::FSub;
157 case Instruction::FSub:
172 return Op == Instruction::FAdd || Op == Instruction::FSub ||
177 /// alternate fadd,fsub / fsub,fadd/add,sub/sub,add sequence.
178 /// (i.e. e.g. opcodes of fadd,fsub,fadd,fsub...)
    [all...]
  /external/llvm/lib/Target/CppBackend/
CPPBackend.cpp 871 case Instruction::FSub: Out << "getFSub("; break;
    [all...]
  /external/llvm/lib/AsmParser/
LLLexer.cpp 718 INSTKEYWORD(sub, Sub); INSTKEYWORD(fsub, FSub);
  /external/llvm/tools/llvm-stress/
llvm-stress.cpp 351 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...]

Completed in 2630 milliseconds

1 2