OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:AndCst
(Results
1 - 3
of
3
) sorted by null
/external/llvm/lib/Transforms/InstCombine/
InstCombine.h
150
ConstantInt *
AndCst
= 0);
InstCombineAndOrXor.cpp
749
ConstantInt *
AndCst
, *SmallCst = 0, *BigCst = 0;
754
match(Val, m_And(m_Specific(V), m_ConstantInt(
AndCst
)))) {
758
match(Val2, m_And(m_Specific(V), m_ConstantInt(
AndCst
)))) {
769
if ((Low &
AndCst
->getValue()) == 0 && (Low & BigCst->getValue()) == 0) {
770
Value *NewAnd = Builder->CreateAnd(V, Low |
AndCst
->getValue());
772
Value *NewVal = ConstantInt::get(
AndCst
->getType()->getContext(), N);
[
all
...]
InstCombineCompares.cpp
224
/// If
AndCst
is non-null, then the loaded value is masked with that constant
228
CmpInst &ICI, ConstantInt *
AndCst
) {
314
if (
AndCst
) Elt = ConstantExpr::getAnd(Elt,
AndCst
);
[
all
...]
Completed in 602 milliseconds