Searched refs:UpperBound (Results 1 - 11 of 11) sorted by relevance

/external/llvm/lib/Target/AMDGPU/
H A DAMDGPUFrameLowering.cpp87 int UpperBound = FI == -1 ? MFI->getNumObjects() : FI; local
89 for (int i = MFI->getObjectIndexBegin(); i < UpperBound; ++i) {
/external/llvm/lib/CodeGen/
H A DScheduleDAG.cpp519 int UpperBound, LowerBound;
521 UpperBound = Node2Index[X->NodeNum];
524 if (LowerBound < UpperBound) {
527 DFS(Y, UpperBound, HasLoop);
530 Shift(Visited, LowerBound, UpperBound);
544 void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound,
559 if (Node2Index[s] == UpperBound) {
564 if (!Visited.test(s) && Node2Index[s] < UpperBound) {
574 int UpperBound) {
579 for (i = LowerBound; i <= UpperBound;
[all...]
/external/llvm/lib/Transforms/Utils/
H A DLowerSwitch.cpp83 ConstantInt *LowerBound, ConstantInt *UpperBound,
201 /// The function recursively builds this tree. LowerBound and UpperBound are
207 ConstantInt *UpperBound, Value *Val,
218 if (Begin->Low == LowerBound && Begin->High == UpperBound) {
220 if (LowerBound && UpperBound)
222 UpperBound->getSExtValue() - LowerBound->getSExtValue();
269 if (UpperBound) {
270 dbgs() << UpperBound->getSExtValue() << "\n";
287 UpperBound, Val, NewNode, OrigBlock,
331 Constant *UpperBound local
206 switchConvert(CaseItr Begin, CaseItr End, ConstantInt *LowerBound, ConstantInt *UpperBound, Value *Val, BasicBlock *Predecessor, BasicBlock *OrigBlock, BasicBlock *Default, const std::vector<IntRange> &UnreachableRanges) argument
428 ConstantInt *UpperBound = nullptr; local
[all...]
/external/clang/lib/StaticAnalyzer/Checkers/
H A DDynamicTypePropagation.cpp573 const ObjCObjectPointerType *UpperBound = OrigObjectPtrType; local
575 std::swap(LowerBound, UpperBound);
578 LowerBound = LowerBound->isObjCIdType() ? UpperBound : LowerBound;
579 UpperBound = UpperBound->isObjCIdType() ? LowerBound : UpperBound;
581 if (storeWhenMoreInformative(State, Sym, TrackedType, LowerBound, UpperBound,
/external/llvm/lib/Analysis/
H A DDependenceAnalysis.cpp531 APInt UpperBound = CUB->getAPInt(); local
532 DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n");
533 if (Xq.sgt(UpperBound) || Yq.sgt(UpperBound)) {
1100 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) {
1101 DEBUG(dbgs() << "\t UpperBound = " << *UpperBound);
1102 DEBUG(dbgs() << ", " << *UpperBound->getType() << "\n");
1107 const SCEV *Product = SE->getMulExpr(UpperBound, AbsCoeff);
1282 if (const SCEV *UpperBound
[all...]
H A DScalarEvolution.cpp5774 const SCEV *UpperBound =
5776 return ExitLimit(getCouldNotCompute(), UpperBound);
/external/clang/utils/TableGen/
H A DNeonEmitter.cpp2110 std::string LowerBound, UpperBound; local
2118 UpperBound = "31";
2120 UpperBound = "63";
2128 UpperBound = utostr(Def->getReturnType().getElementSizeInBits() - 1);
2136 UpperBound = "RFT(TV, true)";
2141 UpperBound = "RFT(TV, false, true)";
2143 UpperBound = "RFT(TV, false, false)";
2148 UpperBound = utostr(T.getNumElements() - 1);
2160 if (UpperBound.size())
2161 OS << " u = " << UpperBound << ";"; local
[all...]
/external/llvm/include/llvm/CodeGen/
H A DScheduleDAG.h706 void DFS(const SUnit *SU, int UpperBound, bool& HasLoop);
710 void Shift(BitVector& Visited, int LowerBound, int 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/clang/lib/Sema/
H A DSemaLookup.cpp3813 unsigned UpperBound = (TypoStr.size() + 2) / 3 + 1;
3814 unsigned ED = TypoStr.edit_distance(Name, true, UpperBound);
3815 if (ED >= UpperBound) return;
/external/llvm/lib/Transforms/InstCombine/
H A DInstCombineAndOrXor.cpp320 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi); local
321 return Builder->CreateICmpULT(Add, UpperBound);

Completed in 1207 milliseconds