OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:Op1C
(Results
1 - 8
of
8
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombineShifts.cpp
686
if (ConstantInt *
Op1C
= dyn_cast<ConstantInt>(I.getOperand(1))) {
687
unsigned ShAmt =
Op1C
->getZExtValue();
692
APInt::getHighBitsSet(
Op1C
->getBitWidth(), ShAmt))) {
725
if (ConstantInt *
Op1C
= dyn_cast<ConstantInt>(Op1)) {
726
unsigned ShAmt =
Op1C
->getZExtValue();
746
MaskedValueIsZero(Op0,APInt::getLowBitsSet(
Op1C
->getBitWidth(),ShAmt))){
765
if (ConstantInt *
Op1C
= dyn_cast<ConstantInt>(Op1)) {
766
unsigned ShAmt =
Op1C
->getZExtValue();
785
if (
Op1C
->getZExtValue() == DestBits-SrcBits)
792
MaskedValueIsZero(Op0,APInt::getLowBitsSet(
Op1C
->getBitWidth(),ShAmt)))
[
all
...]
InstCombineCasts.cpp
515
if (ConstantInt *
Op1C
= dyn_cast<ConstantInt>(ICI->getOperand(1))) {
516
const APInt &Op1CV =
Op1C
->getValue();
550
// If
Op1C
some other power of two, convert:
551
uint32_t BitWidth =
Op1C
->getType()->getBitWidth();
[
all
...]
InstCombineMulDivRem.cpp
213
Value *
Op1C
= Op1;
218
Op1C
= Op0;
221
Value *Neg = dyn_castNegVal(
Op1C
);
223
(BO->getOperand(1) ==
Op1C
|| BO->getOperand(1) == Neg) &&
231
if (Op1BO ==
Op1C
)
243
if (Op1BO ==
Op1C
)
[
all
...]
InstCombineAndOrXor.cpp
[
all
...]
InstCombineCompares.cpp
[
all
...]
/external/llvm/lib/Analysis/
ValueTracking.cpp
[
all
...]
/external/llvm/lib/Transforms/Utils/
SimplifyLibCalls.cpp
[
all
...]
/external/llvm/lib/Target/X86/
X86FastISel.cpp
920
if (const ConstantInt *
Op1C
= dyn_cast<ConstantInt>(Op1)) {
921
if (unsigned CompareImmOpc = X86ChooseCmpImmediateOpcode(VT,
Op1C
)) {
924
.addImm(
Op1C
->getSExtValue());
[
all
...]
Completed in 947 milliseconds