OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:RHSI
(Results
1 - 2
of
2
) sorted by null
/external/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp
147
Instruction *LHSI = LHS.Inst, *
RHSI
= RHS.Inst;
150
return LHSI ==
RHSI
;
152
if (LHSI->getOpcode() !=
RHSI
->getOpcode()) return false;
153
if (LHSI->isIdenticalTo(
RHSI
)) return true;
160
assert(isa<BinaryOperator>(
RHSI
)
162
BinaryOperator *RHSBinOp = cast<BinaryOperator>(
RHSI
);
178
assert(isa<CmpInst>(
RHSI
)
180
CmpInst *RHSCmp = cast<CmpInst>(
RHSI
);
254
Instruction *LHSI = LHS.Inst, *
RHSI
= RHS.Inst;
256
return LHSI ==
RHSI
;
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineCalls.cpp
487
if (ConstantInt *
RHSI
= dyn_cast<ConstantInt>(II->getArgOperand(1))) {
489
if (
RHSI
->isZero())
493
if (
RHSI
->equalsInt(1)) {
[
all
...]
Completed in 133 milliseconds