Searched defs:O2 (Results 1 - 4 of 4) sorted by relevance
/external/llvm/include/llvm/Passes/ |
H A D | PassBuilder.h | 84 O2, enumerator in enum:llvm::PassBuilder::OptimizationLevel 102 /// Similar to \c O2 but tries to optimize for small code size instead of 106 /// The logic here is exactly the same as \c O2, but with code size and 171 /// levels \c O1, \c O2 and \c O3 resp.
|
/external/swiftshader/third_party/LLVM/lib/Analysis/ |
H A D | BasicAliasAnalysis.cpp | 443 static bool notDifferentParent(const Value *O1, const Value *O2) { argument 446 const Function *F2 = getParent(O2); 1126 const Value *O2 = GetUnderlyingObject(V2, TD); local 1133 if (const ConstantPointerNull *CPN = dyn_cast<ConstantPointerNull>(O2)) 1137 if (O1 != O2) { 1139 if (isIdentifiedObject(O1) && isIdentifiedObject(O2)) 1143 if ((isa<Constant>(O1) && isIdentifiedObject(O2) && !isa<Constant>(O2)) || 1144 (isa<Constant>(O2) && isIdentifiedObject(O1) && !isa<Constant>(O1))) 1149 if (((isa<Argument>(O1) && (isa<AllocaInst>(O2) || isNoAliasCal [all...] |
/external/llvm/lib/Analysis/ |
H A D | BasicAliasAnalysis.cpp | 667 static bool notDifferentParent(const Value *O1, const Value *O2) { argument 670 const Function *F2 = getParent(O2); 1420 const Value *O2 = GetUnderlyingObject(V2, DL, MaxLookupSearchDepth); local 1427 if (const ConstantPointerNull *CPN = dyn_cast<ConstantPointerNull>(O2)) 1431 if (O1 != O2) { 1433 if (isIdentifiedObject(O1) && isIdentifiedObject(O2)) 1437 if ((isa<Constant>(O1) && isIdentifiedObject(O2) && !isa<Constant>(O2)) || 1438 (isa<Constant>(O2) && isIdentifiedObject(O1) && !isa<Constant>(O1))) 1443 if ((isa<Argument>(O1) && isIdentifiedFunctionLocal(O2)) || [all...] |
/external/llvm/lib/Transforms/Vectorize/ |
H A D | BBVectorize.cpp | 2074 Value *O1 = S1->getOperand(o), *O2 = S2->getOperand(o); local 2078 if (isa<Constant>(O1) && isa<Constant>(O2)) 2082 std::swap(O1, O2); 2084 ValuePair VP = ValuePair(O1, O2); 2085 ValuePair VPR = ValuePair(O2, O1); 2092 *Ty2 = O2->getType(); 2100 *IEO2 = dyn_cast<InsertElementInst>(O2); 2106 *EIO2 = dyn_cast<ExtractElementInst>(O2); 2115 *SIO2 = dyn_cast<ShuffleVectorInst>(O2); 2146 // O1 needs to be inserted into a vector of size O2, an [all...] |
Completed in 200 milliseconds