OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:OpcodeToExpand
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/third_party/LLVM/lib/Analysis/
InstructionSimplify.cpp
93
/// given by
OpcodeToExpand
, while "A" corresponds to LHS and "B op' C" to RHS.
99
Instruction::BinaryOps
OpcodeToExpand
= (Instruction::BinaryOps)OpcToExpand;
106
if (Op0->getOpcode() ==
OpcodeToExpand
) {
114
if ((L == A && R == B) || (Instruction::isCommutative(
OpcodeToExpand
)
120
if (Value *V = SimplifyBinOp(
OpcodeToExpand
, L, R, TD, DT,
130
if (Op1->getOpcode() ==
OpcodeToExpand
) {
138
if ((L == B && R == C) || (Instruction::isCommutative(
OpcodeToExpand
)
144
if (Value *V = SimplifyBinOp(
OpcodeToExpand
, L, R, TD, DT,
[
all
...]
/external/llvm/lib/Analysis/
InstructionSimplify.cpp
137
/// given by
OpcodeToExpand
, while "A" corresponds to LHS and "B op' C" to RHS.
143
Instruction::BinaryOps
OpcodeToExpand
= (Instruction::BinaryOps)OpcToExpand;
150
if (Op0->getOpcode() ==
OpcodeToExpand
) {
158
if ((L == A && R == B) || (Instruction::isCommutative(
OpcodeToExpand
)
164
if (Value *V = SimplifyBinOp(
OpcodeToExpand
, L, R, Q, MaxRecurse)) {
173
if (Op1->getOpcode() ==
OpcodeToExpand
) {
181
if ((L == B && R == C) || (Instruction::isCommutative(
OpcodeToExpand
)
187
if (Value *V = SimplifyBinOp(
OpcodeToExpand
, L, R, Q, MaxRecurse)) {
[
all
...]
Completed in 523 milliseconds