OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:dyn_castNegVal
(Results
1 - 5
of
5
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineAddSub.cpp
1004
if (Value *LHSV =
dyn_castNegVal
(LHS)) {
1006
if (Value *RHSV =
dyn_castNegVal
(RHS)) {
1016
if (Value *V =
dyn_castNegVal
(RHS))
[
all
...]
InstCombine.h
213
Value *
dyn_castNegVal
(Value *V) const;
InstCombineMulDivRem.cpp
206
if (Value *Op0v =
dyn_castNegVal
(Op0)) // -X * -Y = X*Y
207
if (Value *Op1v =
dyn_castNegVal
(Op1))
221
Value *Neg =
dyn_castNegVal
(Op1C);
[
all
...]
InstCombineCompares.cpp
[
all
...]
InstructionCombining.cpp
512
//
dyn_castNegVal
- Given a 'sub' instruction, return the RHS of the instruction
515
Value *InstCombiner::
dyn_castNegVal
(Value *V) const {
[
all
...]
Completed in 269 milliseconds