Searched refs:LHSI (Results 1 - 5 of 5) sorted by relevance

/freebsd-11.0-release/contrib/llvm/lib/Transforms/InstCombine/
H A DInstCombineCompares.cpp1214 Instruction *LHSI,
1218 switch (LHSI->getOpcode()) {
1224 match(LHSI->getOperand(0), m_Signum(m_Value(V))))
1228 if (ICI.isEquality() && LHSI->hasOneUse()) {
1231 unsigned DstBits = LHSI->getType()->getPrimitiveSizeInBits(),
1232 SrcBits = LHSI->getOperand(0)->getType()->getPrimitiveSizeInBits();
1234 computeKnownBits(LHSI->getOperand(0), KnownZero, KnownOne, 0, &ICI);
1241 return new ICmpInst(ICI.getPredicate(), LHSI->getOperand(0),
1248 if (ConstantInt *XorCst = dyn_cast<ConstantInt>(LHSI->getOperand(1))) {
1253 Value *CompareVal = LHSI
1213 visitICmpInstWithInstAndIntCst(ICmpInst &ICI, Instruction *LHSI, ConstantInt *RHS) argument
3838 FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI, Constant *RHSC) argument
[all...]
H A DInstCombineAndOrXor.cpp372 Instruction *LHSI = dyn_cast<Instruction>(LHS); local
373 if (!LHSI || LHSI->getNumOperands() != 2 ||
374 !isa<ConstantInt>(LHSI->getOperand(1))) return nullptr;
376 ConstantInt *N = cast<ConstantInt>(LHSI->getOperand(1));
378 switch (LHSI->getOpcode()) {
411 return Builder->CreateSub(LHSI->getOperand(0), RHS, "fold");
412 return Builder->CreateAdd(LHSI->getOperand(0), RHS, "fold");
H A DInstCombineInternal.h262 Instruction *FoldFCmp_IntToFP_Cst(FCmpInst &I, Instruction *LHSI,
/freebsd-11.0-release/contrib/llvm/lib/Transforms/Scalar/
H A DEarlyCSE.cpp148 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; local
151 return LHSI == RHSI;
153 if (LHSI->getOpcode() != RHSI->getOpcode())
155 if (LHSI->isIdenticalTo(RHSI))
159 if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) {
180 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) {
247 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst; local
249 return LHSI == RHSI;
250 return LHSI->isIdenticalTo(RHSI);
/freebsd-11.0-release/contrib/llvm/tools/clang/lib/Format/
H A DFormat.cpp1755 std::sort(Indices.begin(), Indices.end(), [&](unsigned LHSI, unsigned RHSI) {
1756 return std::tie(Includes[LHSI].Category, Includes[LHSI].Filename) <

Completed in 179 milliseconds