|
reference, declaration → definition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced
|
Declarations
include/llvm/IR/Constants.h 946 static Constant *getAnd(Constant *C1, Constant *C2);
References
include/llvm/Analysis/TargetFolder.h 98 return Fold(ConstantExpr::getAnd(LHS, RHS));
include/llvm/IR/ConstantFolder.h 104 return ConstantExpr::getAnd(LHS, RHS);
lib/Analysis/ConstantFolding.cpp 1325 Input = ConstantExpr::getAnd(Input, Mask);
lib/IR/ConstantFold.cpp 265 return ConstantExpr::getAnd(LHS, RHS);
1352 return ConstantExpr::getAnd(C1, C2);
lib/IR/Core.cpp 1597 return wrap(ConstantExpr::getAnd(unwrap<Constant>(LHSConstant),
lib/Transforms/InstCombine/InstCombineAndOrXor.cpp 258 } else if (ACst && CCst && ConstantExpr::getAnd(ACst, CCst) == CCst) {
268 } else if (BCst && CCst && ConstantExpr::getAnd(BCst, CCst) == CCst) {
1861 C3 = ConstantExpr::getAnd(C3, AndRHS);
lib/Transforms/InstCombine/InstCombineCompares.cpp 232 if (AndCst) Elt = ConstantExpr::getAnd(Elt, AndCst);
unittests/IR/ConstantsTest.cpp 250 CHECK(ConstantExpr::getAnd(P0, P0), "and i32 " P0STR ", " P0STR);