Searched defs:LOp (Results 1 - 3 of 3) sorted by relevance

/external/llvm/lib/TableGen/
H A DRecord.cpp897 DefInit *LOp = dyn_cast<DefInit>(LHSs->getOperator()); local
899 if (!LOp || !ROp || LOp->getDef() != ROp->getDef())
/external/llvm/lib/Transforms/InstCombine/
H A DInstructionCombining.cpp348 /// LeftDistributesOverRight - Whether "X LOp (Y ROp Z)" is always equal to
349 /// "(X LOp Y) ROp (X LOp Z)".
350 static bool LeftDistributesOverRight(Instruction::BinaryOps LOp, argument
352 switch (LOp) {
387 /// RightDistributesOverLeft - Whether "(X LOp Y) ROp Z" is always equal to
388 /// "(X ROp Z) LOp (Y ROp Z)".
389 static bool RightDistributesOverLeft(Instruction::BinaryOps LOp, argument
392 return LeftDistributesOverRight(ROp, LOp);
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp357 unsigned o, Value *&LOp, unsigned numElemL,
2381 Instruction *J, unsigned o, Value *&LOp,
2386 if (InsertElementInst *LIE = dyn_cast<InsertElementInst>(LOp)) {
2413 LOp = LIENext ? (Value*) LIENext : UndefValue::get(ArgTypeH);
2445 Value *LOp = L->getOperand(o); local
2451 ExtractElementInst *LEE = dyn_cast<ExtractElementInst>(LOp);
2453 ShuffleVectorInst *LSV = dyn_cast<ShuffleVectorInst>(LOp);
2463 (LOp->getType() != L->getType() || HOp->getType() != H->getType());
2504 cast<Instruction>(LOp)->getOperand(0)->getType()
2661 Instruction *S = InsertElementInst::Create(HOp, LOp, CV
2380 expandIEChain(LLVMContext& Context, Instruction *I, Instruction *J, unsigned o, Value *&LOp, unsigned numElemL, Type *ArgTypeL, Type *ArgTypeH, bool IBeforeJ, unsigned IdxOff) argument
[all...]

Completed in 524 milliseconds