OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AdjustedRHS
(Results
1 - 2
of
2
) sorted by null
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
InstCombineSelect.cpp
376
Constant *
AdjustedRHS
;
378
AdjustedRHS
= ConstantInt::get(CI->getContext(), CI->getValue() + 1);
380
AdjustedRHS
= ConstantInt::get(CI->getContext(), CI->getValue() - 1);
384
if ((CmpLHS == TrueVal &&
AdjustedRHS
== FalseVal) ||
385
(CmpLHS == FalseVal &&
AdjustedRHS
== TrueVal))
393
Constant *sextRHS = ConstantExpr::getSExt(
AdjustedRHS
, SelectTy);
402
AdjustedRHS
= sextRHS;
406
AdjustedRHS
= sextRHS;
408
Constant *zextRHS = ConstantExpr::getZExt(
AdjustedRHS
, SelectTy);
416
AdjustedRHS
= zextRHS
[
all
...]
/external/llvm/lib/Transforms/InstCombine/
InstCombineSelect.cpp
440
Constant *
AdjustedRHS
;
442
AdjustedRHS
= ConstantInt::get(CI->getContext(), CI->getValue() + 1);
444
AdjustedRHS
= ConstantInt::get(CI->getContext(), CI->getValue() - 1);
448
if ((CmpLHS == TrueVal &&
AdjustedRHS
== FalseVal) ||
449
(CmpLHS == FalseVal &&
AdjustedRHS
== TrueVal))
457
Constant *sextRHS = ConstantExpr::getSExt(
AdjustedRHS
, SelectTy);
466
AdjustedRHS
= sextRHS;
470
AdjustedRHS
= sextRHS;
472
Constant *zextRHS = ConstantExpr::getZExt(
AdjustedRHS
, SelectTy);
480
AdjustedRHS
= zextRHS
[
all
...]
Completed in 197 milliseconds