Searched defs:UpperBound (Results 1 - 10 of 10) sorted by relevance

/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUFrameLowering.cpp89 int UpperBound = FI == -1 ? MFI->getNumObjects() : FI; local
91 for (int i = MFI->getObjectIndexBegin(); i < UpperBound; ++i) {
/external/llvm/unittests/ADT/
H A DSparseSetTest.cpp189 const unsigned UpperBound = 300; local
190 Set.setUniverse(UpperBound);
191 for (unsigned i = 0; i < UpperBound; ++i)
196 unsigned Expected = UpperBound;
203 for (unsigned i = 0; i < UpperBound; ++i)
/external/swiftshader/third_party/LLVM/lib/Transforms/Utils/
H A DLowerSwitch.cpp206 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High); local
207 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound,
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp77 ConstantInt *LowerBound, ConstantInt *UpperBound,
195 /// The function recursively builds this tree. LowerBound and UpperBound are
201 ConstantInt *UpperBound, Value *Val,
212 if (Begin->Low == LowerBound && Begin->High == UpperBound) {
214 if (LowerBound && UpperBound)
216 UpperBound->getSExtValue() - LowerBound->getSExtValue();
263 if (UpperBound) {
264 dbgs() << UpperBound->getSExtValue() << "\n";
281 UpperBound, Val, NewNode, OrigBlock,
325 Constant *UpperBound local
200 switchConvert(CaseItr Begin, CaseItr End, ConstantInt *LowerBound, ConstantInt *UpperBound, Value *Val, BasicBlock *Predecessor, BasicBlock *OrigBlock, BasicBlock *Default, const std::vector<IntRange> &UnreachableRanges) argument
422 ConstantInt *UpperBound = nullptr; local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp598 const ObjCObjectPointerType *UpperBound = OrigObjectPtrType; local
600 std::swap(LowerBound, UpperBound);
603 LowerBound = LowerBound->isObjCIdType() ? UpperBound : LowerBound;
604 UpperBound = UpperBound->isObjCIdType() ? LowerBound : UpperBound;
606 if (storeWhenMoreInformative(State, Sym, TrackedType, LowerBound, UpperBound,
/external/clang/lib/StaticAnalyzer/Core/
H A DProgramState.cpp305 DefinedOrUnknownSVal UpperBound,
308 if (Idx.isUnknown() || UpperBound.isUnknown())
311 // Build an expression for 0 <= Idx < UpperBound.
312 // This is the same as Idx + MIN < UpperBound + MIN, if overflow is allowed.
333 svalBuilder.evalBinOpNN(this, BO_Add, UpperBound.castAs<NonLoc>(),
304 assumeInBound(DefinedOrUnknownSVal Idx, DefinedOrUnknownSVal UpperBound, bool Assumption, QualType indexTy) const argument
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp310 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi); local
311 return Builder->CreateICmpULT(Add, UpperBound);
/external/swiftshader/third_party/LLVM/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp358 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi); local
359 return Builder->CreateICmpULT(Add, UpperBound);
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp2112 std::string LowerBound, UpperBound; local
2120 UpperBound = "31";
2122 UpperBound = "63";
2130 UpperBound = utostr(Def->getReturnType().getElementSizeInBits() - 1);
2138 UpperBound = "RFT(TV, true)";
2143 UpperBound = "RFT(TV, false, true)";
2145 UpperBound = "RFT(TV, false, false)";
2150 UpperBound = utostr(T.getNumElements() - 1);
2162 if (UpperBound.size())
2163 OS << " u = " << UpperBound << ";"; local
[all...]
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp526 const APInt &UpperBound = CUB->getAPInt(); local
527 DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n");
528 if (Xq.sgt(UpperBound) || Yq.sgt(UpperBound)) {
1086 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) {
1087 DEBUG(dbgs() << "\t UpperBound = " << *UpperBound);
1088 DEBUG(dbgs() << ", " << *UpperBound->getType() << "\n");
1093 const SCEV *Product = SE->getMulExpr(UpperBound, AbsCoeff);
1264 if (const SCEV *UpperBound
[all...]

Completed in 807 milliseconds