/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Scalar/ |
D | Float2Int.cpp | 215 case Instruction::FNeg: in walkBackwards() 256 case Instruction::FNeg: in walkForwards() 491 case Instruction::FNeg: in convert()
|
D | SpeculativeExecution.cpp | 244 case Instruction::FNeg: in ComputeSpeculationCost()
|
D | GVNSink.cpp | 445 case Instruction::FNeg: in lookupOrAdd()
|
D | SCCP.cpp | 1531 case Instruction::FNeg: in ResolvedUndefsIn()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/InstCombine/ |
D | InstCombineSelect.cpp | 343 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()
|
D | InstCombineAddSub.cpp | 2140 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()
|
D | InstCombineCalls.cpp | 2192 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/ |
D | Instruction.def | 142 HANDLE_UNARY_INST(12, FNeg , UnaryOperator)
|
D | Operator.h | 383 case Instruction::FNeg: in classof()
|
D | InstrTypes.h | 168 return CreateWithCopiedFlags(Instruction::FNeg, Op, FMFSource, Name);
|
D | PatternMatch.h | 815 if (FPMO->getOpcode() == Instruction::FNeg) in match()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/ |
D | CFLGraph.h | 587 case Instruction::FNeg: { in visitConstantExpr()
|
D | InstructionSimplify.cpp | 4536 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()
|
D | TargetTransformInfo.cpp | 1190 case Instruction::FNeg: { in getInstructionThroughput()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/IR/ |
D | Instruction.cpp | 309 case FNeg: return "fneg"; in getOpcodeName()
|
D | Constants.cpp | 1913 case Instruction::FNeg: in get() 2309 return get(Instruction::FNeg, C); in getFNeg() 3098 case Instruction::FNeg: in getAsInstruction()
|
D | ConstantFold.cpp | 961 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/ |
D | AMDGPUTargetTransformInfo.cpp | 859 case Instruction::FNeg: { in getUserCost()
|
D | R600ISelLowering.cpp | 1864 SDValue FNeg = N->getOperand(0); in PerformDAGCombine() local 1865 if (FNeg.getOpcode() != ISD::FNEG) { in PerformDAGCombine() 1868 SDValue SelectCC = FNeg.getOperand(0); in PerformDAGCombine()
|
D | AMDGPULegalizerInfo.cpp | 1973 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/ |
D | LLLexer.cpp | 841 INSTKEYWORD(fneg, FNeg); in LexIdentifier()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/Interpreter/ |
D | Execution.cpp | 76 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/ |
D | BitcodeWriter.cpp | 524 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/ |
D | TargetLoweringBase.cpp | 1594 case FNeg: return ISD::FNEG; in InstructionOpcodeToISD()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Vectorize/ |
D | SLPVectorizer.cpp | 2818 case Instruction::FNeg: in buildTree_rec() 3389 case Instruction::FNeg: in getEntryCost() 4261 case Instruction::FNeg: { in vectorizeTree()
|