OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dyn_castFNegVal
(Results
1 - 8
of
8
) sorted by null
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
343
if (Value *LHSV =
dyn_castFNegVal
(LHS))
348
if (Value *V =
dyn_castFNegVal
(RHS))
693
if (Value *V =
dyn_castFNegVal
(Op1))
InstCombine.h
204
Value *
dyn_castFNegVal
(Value *V) const;
InstCombineMulDivRem.cpp
287
if (Value *Op0v =
dyn_castFNegVal
(Op0)) // -X * -Y = X*Y
288
if (Value *Op1v =
dyn_castFNegVal
(Op1))
InstructionCombining.cpp
500
//
dyn_castFNegVal
- Given a 'fsub' instruction, return the RHS of the
504
Value *InstCombiner::
dyn_castFNegVal
(Value *V) const {
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
[
all
...]
InstCombineInternal.h
353
Value *
dyn_castFNegVal
(Value *V, bool NoSignedZero = false) const;
InstCombineMulDivRem.cpp
671
Value *N0 =
dyn_castFNegVal
(Opnd0, IgnoreZeroSign);
672
Value *N1 =
dyn_castFNegVal
(Opnd1, IgnoreZeroSign);
[
all
...]
InstructionCombining.cpp
680
Value *InstCombiner::
dyn_castFNegVal
(Value *V, bool IgnoreZeroSign) const {
[
all
...]
Completed in 4197 milliseconds