Searched defs:O2 (Results 1 - 2 of 2) sorted by relevance

/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp458 static bool notDifferentParent(const Value *O1, const Value *O2) { argument
461 const Function *F2 = getParent(O2);
1198 const Value *O2 = GetUnderlyingObject(V2, TD); local
1205 if (const ConstantPointerNull *CPN = dyn_cast<ConstantPointerNull>(O2))
1209 if (O1 != O2) {
1211 if (isIdentifiedObject(O1) && isIdentifiedObject(O2))
1215 if ((isa<Constant>(O1) && isIdentifiedObject(O2) && !isa<Constant>(O2)) ||
1216 (isa<Constant>(O2) && isIdentifiedObject(O1) && !isa<Constant>(O1)))
1221 if ((isa<Argument>(O1) && isIdentifiedFunctionLocal(O2)) ||
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp1969 Value *O1 = S1->getOperand(o), *O2 = S2->getOperand(o); local
1973 if (isa<Constant>(O1) && isa<Constant>(O2))
1977 std::swap(O1, O2);
1979 ValuePair VP = ValuePair(O1, O2);
1980 ValuePair VPR = ValuePair(O2, O1);
1987 *Ty2 = O2->getType();
1995 *IEO2 = dyn_cast<InsertElementInst>(O2);
2001 *EIO2 = dyn_cast<ExtractElementInst>(O2);
2010 *SIO2 = dyn_cast<ShuffleVectorInst>(O2);
2041 // O1 needs to be inserted into a vector of size O2, an
[all...]

Completed in 2805 milliseconds