/external/tensorflow/tensorflow/compiler/xla/service/llvm_ir/ |
D | math_ops.cc | 42 numerator = b->CreateFAdd(b->CreateFMul(input_squared, numerator), in EmitFastTanh() 51 b->CreateFAdd(b->CreateFMul(input_squared, denominator), in EmitFastTanh()
|
/external/swiftshader/third_party/llvm-7.0/llvm/unittests/IR/ |
D | IRBuilderTest.cpp | 158 F = Builder.CreateFAdd(F, F); in TEST_F() 169 F = Builder.CreateFAdd(F, F); in TEST_F() 195 F = Builder.CreateFAdd(F, F); in TEST_F() 258 FC = Builder.CreateFAdd(F, F); in TEST_F() 267 FC = Builder.CreateFAdd(F, F); in TEST_F()
|
/external/swiftshader/third_party/LLVM/include/llvm/Support/ |
D | NoFolder.h | 53 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() function 54 return BinaryOperator::CreateFAdd(LHS, RHS); in CreateFAdd()
|
D | ConstantFolder.h | 38 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() function
|
D | TargetFolder.h | 54 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() function
|
/external/tensorflow/tensorflow/compiler/xla/service/cpu/ |
D | dot_op_emitter.cc | 502 b_->CreateFAdd(b_->CreateFMul(real(lhs_element), imag(rhs_element)), in EmitNaiveLlvmIrGemm() 505 accum, b_->CreateFAdd(real(accum), product_real), {0}); in EmitNaiveLlvmIrGemm() 507 updated_accum, b_->CreateFAdd(imag(accum), product_imag), {1}); in EmitNaiveLlvmIrGemm() 510 updated_accum = b_->CreateFAdd(accum, product); in EmitNaiveLlvmIrGemm() 568 llvm::Value* imag = b_->CreateFAdd( in EmitScalarDot()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/IR/ |
D | NoFolder.h | 58 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() function 59 return BinaryOperator::CreateFAdd(LHS, RHS); in CreateFAdd()
|
D | ConstantFolder.h | 41 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() function
|
/external/llvm/include/llvm/IR/ |
D | NoFolder.h | 53 Instruction *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() function 54 return BinaryOperator::CreateFAdd(LHS, RHS); in CreateFAdd()
|
D | ConstantFolder.h | 38 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() function
|
/external/llvm/unittests/IR/ |
D | IRBuilderTest.cpp | 137 F = Builder.CreateFAdd(F, F); in TEST_F() 147 F = Builder.CreateFAdd(F, F); in TEST_F() 153 F = Builder.CreateFAdd(F, F); in TEST_F()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 479 case '+': return Builder.CreateFAdd(L, R, "addtmp"); in Codegen() 619 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in Codegen()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 575 case '+': return Builder.CreateFAdd(L, R, "addtmp"); in Codegen() 723 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 573 return Builder.CreateFAdd(L, R, "addtmp"); in codegen() 719 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter5/ |
D | toy.cpp | 587 return Builder.CreateFAdd(L, R, "addtmp"); in codegen() 733 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in codegen()
|
/external/llvm/lib/Transforms/InstCombine/ |
D | InstCombineAddSub.cpp | 752 Value *V = Builder->CreateFAdd(Opnd0, Opnd1); in createFAdd() 1697 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, V); in visitFSub() 1704 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, NewTrunc); in visitFSub() 1711 Instruction *NewI = BinaryOperator::CreateFAdd(Op0, NewExt); in visitFSub()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 677 case '+': return Builder.CreateFAdd(L, R, "addtmp"); in Codegen() 839 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/lazy/ |
D | toy-jit.cpp | 677 case '+': return Builder.CreateFAdd(L, R, "addtmp"); in Codegen() 839 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); in Codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 691 return Builder.CreateFAdd(L, R, "addtmp"); in codegen() 845 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in codegen()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter7/ |
D | toy.cpp | 671 case '+': return Builder.CreateFAdd(L, R, "addtmp"); in Codegen() 832 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); in Codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 695 case '+': return Builder.CreateFAdd(L, R, "addtmp"); in Codegen() 857 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/MCJIT/cached/ |
D | toy-jit.cpp | 695 case '+': return Builder.CreateFAdd(L, R, "addtmp"); in Codegen() 857 Value *NextVar = Builder.CreateFAdd(CurVar, StepVal, "nextvar"); in Codegen()
|
/external/llvm/examples/Kaleidoscope/Chapter6/ |
D | toy.cpp | 676 return Builder.CreateFAdd(L, R, "addtmp"); in codegen() 830 Value *NextVar = Builder.CreateFAdd(Variable, StepVal, "nextvar"); in codegen()
|
/external/swiftshader/third_party/LLVM/examples/Kaleidoscope/Chapter3/ |
D | toy.cpp | 370 case '+': return Builder.CreateFAdd(L, R, "addtmp"); in Codegen()
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/Analysis/ |
D | TargetFolder.h | 53 Constant *CreateFAdd(Constant *LHS, Constant *RHS) const { in CreateFAdd() function
|