Home
last modified time | relevance | path

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

/external/llvm/lib/Transforms/Utils/
DLowerSwitch.cpp69 ConstantInt *LowerBound, ConstantInt *UpperBound,
141 ConstantInt *UpperBound, Value *Val, in switchConvert() argument
151 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in switchConvert()
197 if (UpperBound) { in switchConvert()
198 dbgs() << cast<ConstantInt>(UpperBound)->getSExtValue() << "\n"; in switchConvert()
206 UpperBound, Val, OrigBlock, Default); in switchConvert()
259 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High); in newLeafBlock() local
260 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in newLeafBlock()
375 ConstantInt *UpperBound = nullptr; in processSwitchInst() local
384 UpperBound = cast<ConstantInt>(LastCase->High); in processSwitchInst()
[all …]
/external/llvm/lib/CodeGen/
DScheduleDAG.cpp521 int UpperBound, LowerBound; in AddPred() local
523 UpperBound = Node2Index[X->NodeNum]; in AddPred()
526 if (LowerBound < UpperBound) { in AddPred()
529 DFS(Y, UpperBound, HasLoop); in AddPred()
532 Shift(Visited, LowerBound, UpperBound); in AddPred()
546 void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound, in DFS() argument
561 if (Node2Index[s] == UpperBound) { in DFS()
566 if (!Visited.test(s) && Node2Index[s] < UpperBound) { in DFS()
576 int UpperBound) { in Shift() argument
581 for (i = LowerBound; i <= UpperBound; ++i) { in Shift()
[all …]
/external/llvm/lib/Target/R600/
DAMDGPUFrameLowering.cpp81 int UpperBound = FI == -1 ? MFI->getNumObjects() : FI; in getFrameIndexOffset() local
83 for (int i = MFI->getObjectIndexBegin(); i < UpperBound; ++i) { in getFrameIndexOffset()
/external/llvm/lib/Analysis/
DDependenceAnalysis.cpp531 APInt UpperBound = CUB->getValue()->getValue(); in intersectConstraints() local
532 DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n"); in intersectConstraints()
533 if (Xq.sgt(UpperBound) || Yq.sgt(UpperBound)) { in intersectConstraints()
1031 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) { in strongSIVtest() local
1032 DEBUG(dbgs() << "\t UpperBound = " << *UpperBound); in strongSIVtest()
1033 DEBUG(dbgs() << ", " << *UpperBound->getType() << "\n"); in strongSIVtest()
1038 const SCEV *Product = SE->getMulExpr(UpperBound, AbsCoeff); in strongSIVtest()
1215 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) { in weakCrossingSIVtest() local
1216 DEBUG(dbgs() << "\t UpperBound = " << *UpperBound << "\n"); in weakCrossingSIVtest()
1217 const SCEV *ConstantTwo = SE->getConstant(UpperBound->getType(), 2); in weakCrossingSIVtest()
[all …]
/external/clang/utils/TableGen/
DNeonEmitter.cpp2104 std::string LowerBound, UpperBound; in genIntrinsicRangeCheckCode() local
2112 UpperBound = "31"; in genIntrinsicRangeCheckCode()
2114 UpperBound = "63"; in genIntrinsicRangeCheckCode()
2122 UpperBound = utostr(Def->getReturnType().getElementSizeInBits() - 1); in genIntrinsicRangeCheckCode()
2130 UpperBound = "RFT(TV, true)"; in genIntrinsicRangeCheckCode()
2135 UpperBound = "RFT(TV, false, true)"; in genIntrinsicRangeCheckCode()
2137 UpperBound = "RFT(TV, false, false)"; in genIntrinsicRangeCheckCode()
2142 UpperBound = utostr(T.getNumElements() - 1); in genIntrinsicRangeCheckCode()
2154 if (UpperBound.size()) in genIntrinsicRangeCheckCode()
2155 OS << " u = " << UpperBound << ";"; in genIntrinsicRangeCheckCode()
/external/clang/lib/StaticAnalyzer/Core/
DProgramState.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()
/external/llvm/include/llvm/CodeGen/
DScheduleDAG.h706 void DFS(const SUnit *SU, int UpperBound, bool& HasLoop);
710 void Shift(BitVector& Visited, int LowerBound, int UpperBound);
/external/clang/lib/Sema/
DSemaLookup.cpp3520 unsigned UpperBound = (TypoStr.size() + 2) / 3 + 1; in addName() local
3521 unsigned ED = TypoStr.edit_distance(Name, true, UpperBound); in addName()
3522 if (ED >= UpperBound) return; in addName()
/external/llvm/lib/Transforms/InstCombine/
DInstCombineAndOrXor.cpp283 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Hi); in InsertRangeTest() local
284 return Builder->CreateICmpULT(Add, UpperBound); in InsertRangeTest()