Home
last modified time | relevance | path

Searched refs:UpperBound (Results 1 – 9 of 9) sorted by relevance

/NextBSD/contrib/llvm/lib/CodeGen/
HDScheduleDAG.cpp520 int UpperBound, LowerBound; in AddPred() local
522 UpperBound = Node2Index[X->NodeNum]; in AddPred()
525 if (LowerBound < UpperBound) { in AddPred()
528 DFS(Y, UpperBound, HasLoop); in AddPred()
531 Shift(Visited, LowerBound, UpperBound); in AddPred()
545 void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound, in DFS() argument
560 if (Node2Index[s] == UpperBound) { in DFS()
565 if (!Visited.test(s) && Node2Index[s] < UpperBound) { in DFS()
575 int UpperBound) { in Shift() argument
580 for (i = LowerBound; i <= UpperBound; ++i) { in Shift()
[all …]
/NextBSD/contrib/llvm/lib/Transforms/Utils/
HDLowerSwitch.cpp84 ConstantInt *LowerBound, ConstantInt *UpperBound,
198 ConstantInt *UpperBound, Value *Val, in switchConvert() argument
209 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
211 if (LowerBound && UpperBound) in switchConvert()
213 UpperBound->getSExtValue() - LowerBound->getSExtValue(); in switchConvert()
260 if (UpperBound) { in switchConvert()
261 dbgs() << UpperBound->getSExtValue() << "\n"; in switchConvert()
278 UpperBound, Val, NewNode, OrigBlock, in switchConvert()
326 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High); in newLeafBlock() local
327 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
[all …]
/NextBSD/contrib/llvm/lib/Target/AMDGPU/
HDAMDGPUFrameLowering.cpp81 int UpperBound = FI == -1 ? MFI->getNumObjects() : FI; in getFrameIndexOffset() local
83 for (int i = MFI->getObjectIndexBegin(); i < UpperBound; ++i) { in getFrameIndexOffset()
/NextBSD/contrib/llvm/lib/Analysis/
HDDependenceAnalysis.cpp530 APInt UpperBound = CUB->getValue()->getValue(); in intersectConstraints() local
531 DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n"); in intersectConstraints()
532 if (Xq.sgt(UpperBound) || Yq.sgt(UpperBound)) { in intersectConstraints()
1099 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) { in strongSIVtest() local
1100 DEBUG(dbgs() << "\t UpperBound = " << *UpperBound); in strongSIVtest()
1101 DEBUG(dbgs() << ", " << *UpperBound->getType() << "\n"); in strongSIVtest()
1106 const SCEV *Product = SE->getMulExpr(UpperBound, AbsCoeff); in strongSIVtest()
1283 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) { in weakCrossingSIVtest() local
1284 DEBUG(dbgs() << "\t UpperBound = " << *UpperBound << "\n"); in weakCrossingSIVtest()
1285 const SCEV *ConstantTwo = SE->getConstant(UpperBound->getType(), 2); in weakCrossingSIVtest()
[all …]
/NextBSD/contrib/llvm/tools/clang/utils/TableGen/
HDNeonEmitter.cpp2111 std::string LowerBound, UpperBound; in genIntrinsicRangeCheckCode() local
2119 UpperBound = "31"; in genIntrinsicRangeCheckCode()
2121 UpperBound = "63"; in genIntrinsicRangeCheckCode()
2129 UpperBound = utostr(Def->getReturnType().getElementSizeInBits() - 1); in genIntrinsicRangeCheckCode()
2137 UpperBound = "RFT(TV, true)"; in genIntrinsicRangeCheckCode()
2142 UpperBound = "RFT(TV, false, true)"; in genIntrinsicRangeCheckCode()
2144 UpperBound = "RFT(TV, false, false)"; in genIntrinsicRangeCheckCode()
2149 UpperBound = utostr(T.getNumElements() - 1); in genIntrinsicRangeCheckCode()
2161 if (UpperBound.size()) in genIntrinsicRangeCheckCode()
2162 OS << " u = " << UpperBound << ";"; in genIntrinsicRangeCheckCode()
/NextBSD/contrib/llvm/tools/clang/lib/StaticAnalyzer/Core/
HDProgramState.cpp305 DefinedOrUnknownSVal UpperBound, in assumeInBound() argument
308 if (Idx.isUnknown() || UpperBound.isUnknown()) in assumeInBound()
333 svalBuilder.evalBinOpNN(this, BO_Add, UpperBound.castAs<NonLoc>(), in assumeInBound()
/NextBSD/contrib/llvm/include/llvm/CodeGen/
HDScheduleDAG.h706 void DFS(const SUnit *SU, int UpperBound, bool& HasLoop);
710 void Shift(BitVector& Visited, int LowerBound, int UpperBound);
/NextBSD/contrib/llvm/tools/clang/lib/Sema/
HDSemaLookup.cpp3637 unsigned UpperBound = (TypoStr.size() + 2) / 3 + 1; in addName() local
3638 unsigned ED = TypoStr.edit_distance(Name, true, UpperBound); in addName()
3639 if (ED >= UpperBound) return; in addName()
/NextBSD/contrib/llvm/lib/Transforms/InstCombine/
HDInstCombineAndOrXor.cpp321 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi); in InsertRangeTest() local
322 return Builder->CreateICmpULT(Add, UpperBound); in InsertRangeTest()