Home
last modified time | relevance | path

Searched refs:FNeg (Results 1 – 25 of 34) sorted by relevance

12

/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/
DFloat2Int.cpp215 case Instruction::FNeg: in walkBackwards()
256 case Instruction::FNeg: in walkForwards()
491 case Instruction::FNeg: in convert()
DSpeculativeExecution.cpp244 case Instruction::FNeg: in ComputeSpeculationCost()
DGVNSink.cpp445 case Instruction::FNeg: in lookupOrAdd()
DSCCP.cpp1531 case Instruction::FNeg: in ResolvedUndefsIn()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/
DInstCombineSelect.cpp343 if (TI->getOpcode() != Instruction::FNeg) in foldSelectOpOp()
2491 Instruction *FNeg; in visitSelectInst() local
2494 match(TrueVal, m_Instruction(FNeg)) && in visitSelectInst()
2495 FNeg->hasNoNaNs() && FNeg->hasNoSignedZeros() && in visitSelectInst()
2498 Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, FalseVal, FNeg); in visitSelectInst()
2506 match(FalseVal, m_Instruction(FNeg)) && in visitSelectInst()
2507 FNeg->hasNoNaNs() && FNeg->hasNoSignedZeros() && in visitSelectInst()
2510 Value *Fabs = Builder.CreateUnaryIntrinsic(Intrinsic::fabs, TrueVal, FNeg); in visitSelectInst()
DInstCombineAddSub.cpp2140 Value *FNeg; in hoistFNegAboveFMulFDiv() local
2141 if (!match(&I, m_FNeg(m_Value(FNeg)))) in hoistFNegAboveFMulFDiv()
2145 if (match(FNeg, m_OneUse(m_FMul(m_Value(X), m_Value(Y))))) in hoistFNegAboveFMulFDiv()
2148 if (match(FNeg, m_OneUse(m_FDiv(m_Value(X), m_Value(Y))))) in hoistFNegAboveFMulFDiv()
DInstCombineCalls.cpp2192 Instruction *FNeg = BinaryOperator::CreateFNeg(NewCall); in visitCallInst() local
2193 FNeg->copyIRFlags(II); in visitCallInst()
2194 return FNeg; in visitCallInst()
2360 Instruction *FNeg = BinaryOperator::CreateFNeg(NewSin); in visitCallInst() local
2361 FNeg->copyFastMathFlags(II); in visitCallInst()
2362 return FNeg; in visitCallInst()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/IR/
DInstruction.def142 HANDLE_UNARY_INST(12, FNeg , UnaryOperator)
DOperator.h383 case Instruction::FNeg: in classof()
DInstrTypes.h168 return CreateWithCopiedFlags(Instruction::FNeg, Op, FMFSource, Name);
DPatternMatch.h815 if (FPMO->getOpcode() == Instruction::FNeg) in match()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCFLGraph.h587 case Instruction::FNeg: { in visitConstantExpr()
DInstructionSimplify.cpp4536 if (Constant *C = foldConstant(Instruction::FNeg, Op, Q)) in simplifyFNegInst()
4814 case Instruction::FNeg: in simplifyUnOp()
4828 case Instruction::FNeg: in simplifyFPUnOp()
5347 case Instruction::FNeg: in SimplifyInstruction()
DTargetTransformInfo.cpp1190 case Instruction::FNeg: { in getInstructionThroughput()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/
DInstruction.cpp309 case FNeg: return "fneg"; in getOpcodeName()
DConstants.cpp1913 case Instruction::FNeg: in get()
2309 return get(Instruction::FNeg, C); in getFNeg()
3098 case Instruction::FNeg: in getAsInstruction()
DConstantFold.cpp961 case Instruction::FNeg: in ConstantFoldUnaryInstruction()
978 case Instruction::FNeg: in ConstantFoldUnaryInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AMDGPU/
DAMDGPUTargetTransformInfo.cpp859 case Instruction::FNeg: { in getUserCost()
DR600ISelLowering.cpp1864 SDValue FNeg = N->getOperand(0); in PerformDAGCombine() local
1865 if (FNeg.getOpcode() != ISD::FNEG) { in PerformDAGCombine()
1868 SDValue SelectCC = FNeg.getOperand(0); in PerformDAGCombine()
DAMDGPULegalizerInfo.cpp1973 auto FNeg = B.buildFNeg(ResTy, RHS, Flags); in legalizeFastUnsafeFDIV() local
1975 .addUse(FNeg.getReg(0)) in legalizeFastUnsafeFDIV()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/AsmParser/
DLLLexer.cpp841 INSTKEYWORD(fneg, FNeg); in LexIdentifier()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/
DExecution.cpp76 case Instruction::FNeg: in visitUnaryOperator()
93 case Instruction::FNeg: executeFNegInst(R, Src, Ty); break; in visitUnaryOperator()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Bitcode/Writer/
DBitcodeWriter.cpp524 case Instruction::FNeg: return bitc::UNOP_FNEG; in getEncodedUnaryOpcode()
2449 case Instruction::FNeg: { in writeConstants()
2631 case Instruction::FNeg: { in writeInstruction()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DTargetLoweringBase.cpp1594 case FNeg: return ISD::FNEG; in InstructionOpcodeToISD()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/
DSLPVectorizer.cpp2818 case Instruction::FNeg: in buildTree_rec()
3389 case Instruction::FNeg: in getEntryCost()
4261 case Instruction::FNeg: { in vectorizeTree()

12