HomeSort by: relevance | last modified time | path
    Searched defs:LHSI (Results 1 - 3 of 3) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/utils/TableGen/
SearchableTableEmitter.cpp 225 Init *LHSI = LHS->getValueInit(Field.Name);
229 int64_t LHSi = getAsInt(LHSI);
231 if (LHSi < RHSi)
233 if (LHSi > RHSi)
236 CodeGenIntrinsic &LHSi = getIntrinsic(LHSI);
238 if (std::tie(LHSi.TargetPrefix, LHSi.Name) <
241 if (std::tie(LHSi.TargetPrefix, LHSi.Name)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/
EarlyCSE.cpp 329 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst;
332 return LHSI == RHSI;
334 if (LHSI->getOpcode() != RHSI->getOpcode())
336 if (LHSI->isIdenticalToWhenDefined(RHSI))
340 if (BinaryOperator *LHSBinOp = dyn_cast<BinaryOperator>(LHSI)) {
352 if (CmpInst *LHSCmp = dyn_cast<CmpInst>(LHSI)) {
363 auto *LII = dyn_cast<IntrinsicInst>(LHSI);
372 if (const GCRelocateInst *GCR1 = dyn_cast<GCRelocateInst>(LHSI))
383 if (matchSelectWithOptionalNotCond(LHSI, CondL, LHSA, LHSB, LSPF) &&
498 Instruction *LHSI = LHS.Inst, *RHSI = RHS.Inst
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/InstCombine/
InstCombineCompares.cpp 3243 Instruction *LHSI = dyn_cast<Instruction>(Op0);
3244 if (!RHSC || !LHSI)
3247 switch (LHSI->getOpcode()) {
3251 cast<GetElementPtrInst>(LHSI)->hasAllZeroIndices())
3253 I.getPredicate(), LHSI->getOperand(0),
3254 Constant::getNullValue(LHSI->getOperand(0)->getType()));
3260 if (LHSI->getParent() == I.getParent())
3261 if (Instruction *NV = foldOpIntoPhi(I, cast<PHINode>(LHSI)))
3270 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(1))) {
3274 if (Constant *C = dyn_cast<Constant>(LHSI->getOperand(2)))
    [all...]

Completed in 52 milliseconds