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

/external/llvm/lib/Analysis/
H A DBasicAliasAnalysis.cpp439 static bool notDifferentParent(const Value *O1, const Value *O2) { argument
442 const Function *F2 = getParent(O2);
1216 const Value *O2 = GetUnderlyingObject(V2, DL, MaxLookupSearchDepth); local
1223 if (const ConstantPointerNull *CPN = dyn_cast<ConstantPointerNull>(O2))
1227 if (O1 != O2) {
1229 if (isIdentifiedObject(O1) && isIdentifiedObject(O2))
1233 if ((isa<Constant>(O1) && isIdentifiedObject(O2) && !isa<Constant>(O2)) ||
1234 (isa<Constant>(O2) && isIdentifiedObject(O1) && !isa<Constant>(O1)))
1239 if ((isa<Argument>(O1) && isIdentifiedFunctionLocal(O2)) ||
[all...]
/external/llvm/lib/Transforms/Vectorize/
H A DBBVectorize.cpp2046 Value *O1 = S1->getOperand(o), *O2 = S2->getOperand(o); local
2050 if (isa<Constant>(O1) && isa<Constant>(O2))
2054 std::swap(O1, O2);
2056 ValuePair VP = ValuePair(O1, O2);
2057 ValuePair VPR = ValuePair(O2, O1);
2064 *Ty2 = O2->getType();
2072 *IEO2 = dyn_cast<InsertElementInst>(O2);
2078 *EIO2 = dyn_cast<ExtractElementInst>(O2);
2087 *SIO2 = dyn_cast<ShuffleVectorInst>(O2);
2118 // O1 needs to be inserted into a vector of size O2, an
[all...]

Completed in 2410 milliseconds