| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Utils/ |
| H A D | LibCallsShrinkWrap.cpp | 321 float UpperBound; in generateOneRangeCond() local 324 UpperBound = 709.0f; in generateOneRangeCond() 327 UpperBound = 88.0f; in generateOneRangeCond() 330 UpperBound = 11356.0f; in generateOneRangeCond() 337 return createCond(CI, CmpInst::FCMP_OGT, UpperBound); in generateOneRangeCond() 343 float UpperBound, LowerBound; in generateTwoRangeCond() local 348 UpperBound = 710.0f; in generateTwoRangeCond() 353 UpperBound = 89.0f; in generateTwoRangeCond() 358 UpperBound = 11357.0f; in generateTwoRangeCond() 362 UpperBound = 709.0f; in generateTwoRangeCond() [all …]
|
| H A D | LowerSwitch.cpp | 157 ConstantInt *UpperBound, BasicBlock *OrigBlock, in NewLeafBlock() argument 175 } else if (Leaf.High == UpperBound) { in NewLeafBlock() 188 Constant *UpperBound = ConstantExpr::getAdd(NegLo, Leaf.High); in NewLeafBlock() local 189 Comp = new ICmpInst(*NewLeaf, ICmpInst::ICMP_ULE, Add, UpperBound, in NewLeafBlock() 222 ConstantInt *UpperBound, Value *Val, in SwitchConvert() argument 226 assert(LowerBound && UpperBound && "Bounds must be initialized"); in SwitchConvert() 234 if (Begin->Low == LowerBound && Begin->High == UpperBound) { in SwitchConvert() 236 NumMergedCases = UpperBound->getSExtValue() - LowerBound->getSExtValue(); in SwitchConvert() 240 return NewLeafBlock(*Begin, Val, LowerBound, UpperBound, OrigBlock, in SwitchConvert() 277 << ", " << UpperBound->getSExtValue() << "]\n"); in SwitchConvert() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/CodeGen/ |
| H A D | ScheduleDAG.cpp | 549 int UpperBound, LowerBound; in AddPred() local 551 UpperBound = Node2Index[X->NodeNum]; in AddPred() 554 if (LowerBound < UpperBound) { in AddPred() 557 DFS(Y, UpperBound, HasLoop); in AddPred() 560 Shift(Visited, LowerBound, UpperBound); in AddPred() 570 void ScheduleDAGTopologicalSort::DFS(const SUnit *SU, int UpperBound, in DFS() argument 586 if (Node2Index[s] == UpperBound) { in DFS() 591 if (!Visited.test(s) && Node2Index[s] < UpperBound) { in DFS() 603 int UpperBound = Node2Index[TargetSU.NodeNum]; in GetSubGraph() local 608 if (LowerBound > UpperBound) { in GetSubGraph() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/AMDGPU/ |
| H A D | R600FrameLowering.cpp | 31 int UpperBound = FI == -1 ? MFI.getNumObjects() : FI; in getFrameIndexReference() local 33 for (int i = MFI.getObjectIndexBegin(); i < UpperBound; ++i) { in getFrameIndexReference()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Transforms/Scalar/ |
| H A D | LoopUnrollPass.cpp | 211 UP.UpperBound = false; in gatherUnrollingPreferences() 249 UP.UpperBound = false; in gatherUnrollingPreferences() 267 UP.UpperBound = *UserUpperBound; in gatherUnrollingPreferences() 830 if (!(UP.UpperBound || MaxOrZero) || in computeUnrollCount() 849 TripMultiple = UP.UpperBound ? 1 : TripMultiple; in computeUnrollCount() 864 TripMultiple = UP.UpperBound ? 1 : TripMultiple; in computeUnrollCount() 1236 Optional<bool> UpperBound = None, in LoopUnroll() argument 1243 ProvidedRuntime(Runtime), ProvidedUpperBound(UpperBound), in LoopUnroll() 1304 int AllowPartial, int Runtime, int UpperBound, in INITIALIZE_PASS_DEPENDENCY() 1315 UpperBound == -1 ? None : Optional<bool>(UpperBound), in INITIALIZE_PASS_DEPENDENCY()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/Scalar/ |
| H A D | LoopUnrollPass.h | 106 LoopUnrollOptions &setUpperBound(bool UpperBound) { in setUpperBound() 107 AllowUpperBound = UpperBound; in setUpperBound()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/IR/ |
| H A D | LLVMContextImpl.h | 307 Metadata *UpperBound; 310 MDNodeKeyImpl(Metadata *CountNode, Metadata *LowerBound, Metadata *UpperBound, 312 : CountNode(CountNode), LowerBound(LowerBound), UpperBound(UpperBound), 316 UpperBound(N->getRawUpperBound()), Stride(N->getRawStride()) {} 336 BoundsEqual(UpperBound, RHS->getRawUpperBound()) && 344 LowerBound, UpperBound, Stride); 345 return hash_combine(CountNode, LowerBound, UpperBound, Stride); 352 Metadata *UpperBound; 355 MDNodeKeyImpl(Metadata *CountNode, Metadata *LowerBound, Metadata *UpperBound, 357 : CountNode(CountNode), LowerBound(LowerBound), UpperBound(UpperBound), [all …]
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Checkers/ |
| H A D | DynamicTypePropagation.cpp | 689 const ObjCObjectPointerType *UpperBound = OrigObjectPtrType; in checkPostStmt() local 691 std::swap(LowerBound, UpperBound); in checkPostStmt() 694 LowerBound = LowerBound->isObjCIdType() ? UpperBound : LowerBound; in checkPostStmt() 695 UpperBound = UpperBound->isObjCIdType() ? LowerBound : UpperBound; in checkPostStmt() 697 if (storeWhenMoreInformative(State, Sym, TrackedType, LowerBound, UpperBound, in checkPostStmt()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Analysis/ |
| H A D | MemorySSA.cpp | 1423 unsigned long UpperBound = VersionStack.size() - 1; in optimizeUsesInBlock() local 1425 if (UpperBound - LocInfo.LowerBound > MaxCheckLimit) { in optimizeUsesInBlock() 1429 << UpperBound - LocInfo.LowerBound in optimizeUsesInBlock() 1438 while (UpperBound > LocInfo.LowerBound) { in optimizeUsesInBlock() 1439 if (isa<MemoryPhi>(VersionStack[UpperBound])) { in optimizeUsesInBlock() 1444 while (VersionStack[UpperBound] != Result) { in optimizeUsesInBlock() 1445 assert(UpperBound != 0); in optimizeUsesInBlock() 1446 --UpperBound; in optimizeUsesInBlock() 1452 MemoryDef *MD = cast<MemoryDef>(VersionStack[UpperBound]); in optimizeUsesInBlock() 1459 --UpperBound; in optimizeUsesInBlock() [all …]
|
| H A D | DependenceAnalysis.cpp | 547 const APInt &UpperBound = CUB->getAPInt(); in intersectConstraints() local 548 LLVM_DEBUG(dbgs() << "\t\tupper bound = " << UpperBound << "\n"); in intersectConstraints() 549 if (Xq.sgt(UpperBound) || Yq.sgt(UpperBound)) { in intersectConstraints() 1165 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) { in strongSIVtest() local 1166 LLVM_DEBUG(dbgs() << "\t UpperBound = " << *UpperBound); in strongSIVtest() 1167 LLVM_DEBUG(dbgs() << ", " << *UpperBound->getType() << "\n"); in strongSIVtest() 1172 const SCEV *Product = SE->getMulExpr(UpperBound, AbsCoeff); in strongSIVtest() 1343 if (const SCEV *UpperBound = collectUpperBound(CurLoop, Delta->getType())) { in weakCrossingSIVtest() local 1344 LLVM_DEBUG(dbgs() << "\t UpperBound = " << *UpperBound << "\n"); in weakCrossingSIVtest() 1345 const SCEV *ConstantTwo = SE->getConstant(UpperBound->getType(), 2); in weakCrossingSIVtest() [all …]
|
| H A D | InlineCost.cpp | 517 void addCost(int64_t Inc, int64_t UpperBound = INT_MAX) { in addCost() argument 518 assert(UpperBound > 0 && UpperBound <= INT_MAX && "invalid upper bound"); in addCost() 519 Cost = (int)std::min(UpperBound, Cost + Inc); in addCost()
|
| /netbsd-src/external/apache2/llvm/dist/clang/utils/TableGen/ |
| H A D | NeonEmitter.cpp | 2115 std::string LowerBound, UpperBound; in genIntrinsicRangeCheckCode() local 2121 UpperBound = "63"; in genIntrinsicRangeCheckCode() 2129 UpperBound = "15"; in genIntrinsicRangeCheckCode() 2131 UpperBound = "31"; in genIntrinsicRangeCheckCode() 2133 UpperBound = "63"; in genIntrinsicRangeCheckCode() 2141 UpperBound = utostr(Def->getReturnType().getElementSizeInBits() - 1); in genIntrinsicRangeCheckCode() 2149 UpperBound = "RFT(TV, true)"; in genIntrinsicRangeCheckCode() 2154 UpperBound = "RFT(TV, false, true)"; in genIntrinsicRangeCheckCode() 2156 UpperBound = "RFT(TV, false, false)"; in genIntrinsicRangeCheckCode() 2161 UpperBound = utostr(T.getNumElements() - 1); in genIntrinsicRangeCheckCode() [all …]
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/GlobalISel/ |
| H A D | InstructionSelectorImpl.h | 185 int64_t UpperBound = MatchTable[CurrentIdx++]; in executeMatchTable() local 193 << LowerBound << ", " << UpperBound << "), Default=" << Default in executeMatchTable() 196 if (Opcode < LowerBound || UpperBound <= Opcode) { in executeMatchTable() 213 int64_t UpperBound = MatchTable[CurrentIdx++]; in executeMatchTable() local 222 << UpperBound << "), Default=" << Default in executeMatchTable() 240 if (TypeID < LowerBound || UpperBound <= TypeID) { in executeMatchTable()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/StaticAnalyzer/Core/ |
| H A D | ProgramState.cpp | 322 DefinedOrUnknownSVal UpperBound, in assumeInBound() argument 325 if (Idx.isUnknown() || UpperBound.isUnknown()) in assumeInBound() 349 svalBuilder.evalBinOpNN(this, BO_Add, UpperBound.castAs<NonLoc>(), in assumeInBound()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Target/WebAssembly/ |
| H A D | WebAssemblyTargetTransformInfo.cpp | 130 UP.Partial = UP.Runtime = UP.UpperBound = true; in getUnrollingPreferences()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/Transforms/ |
| H A D | Scalar.h | 191 int Runtime = -1, int UpperBound = -1,
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/CodeGen/ |
| H A D | ScheduleDAG.h | 715 void DFS(const SUnit *SU, int UpperBound, bool& HasLoop); 719 void Shift(BitVector& Visited, int LowerBound, int UpperBound);
|
| /netbsd-src/external/apache2/llvm/dist/llvm/include/llvm/IR/ |
| H A D | DIBuilder.h | 611 Metadata *UpperBound, Metadata *Stride); 616 DIGenericSubrange::BoundType UpperBound,
|
| H A D | DebugInfoMetadata.h | 314 Metadata *LowerBound, Metadata *UpperBound, 332 Metadata *UpperBound, Metadata *Stride), 333 (CountNode, LowerBound, UpperBound, Stride)) 374 Metadata *LowerBound, Metadata *UpperBound, 386 Metadata *UpperBound, Metadata *Stride), 387 (CountNode, LowerBound, UpperBound, Stride))
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/Frontend/OpenMP/ |
| H A D | OMPIRBuilder.cpp | 1294 Value *UpperBound = Builder.CreateSub(CLI->getTripCount(), One); in createStaticWorkshareLoop() local 1295 Builder.CreateStore(UpperBound, PUpperBound); in createStaticWorkshareLoop() 1417 Value *UpperBound = CLI->getTripCount(); in createDynamicWorkshareLoop() local 1418 Builder.CreateStore(UpperBound, PUpperBound); in createDynamicWorkshareLoop() 1442 UpperBound, /* step */ One, Chunk}); in createDynamicWorkshareLoop() 1475 UpperBound = Builder.CreateLoad(IVTy, PUpperBound, "ub"); in createDynamicWorkshareLoop() 1478 CI->setOperand(1, UpperBound); in createDynamicWorkshareLoop()
|
| /netbsd-src/external/apache2/llvm/dist/libcxx/benchmarks/ |
| H A D | map.bench.cpp | 954 struct UpperBound : Base { struct 1034 makeCartesianProductBenchmark<UpperBound, AllModes, AllOrders>(MapSize); in main()
|
| /netbsd-src/external/apache2/llvm/dist/llvm/lib/DebugInfo/DWARF/ |
| H A D | DWARFContext.cpp | 1113 if (Optional<int64_t> UpperBound = in getTypeSize() local 1118 Size *= *UpperBound - LowerBound + 1; in getTypeSize()
|
| /netbsd-src/external/gpl3/gcc/dist/libphobos/libdruntime/core/sys/windows/ |
| H A D | wininet.d | 976 INT UpperBound;
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/Sema/ |
| H A D | SemaLookup.cpp | 4263 unsigned UpperBound = (TypoStr.size() + 2) / 3; in addName() local 4264 unsigned ED = TypoStr.edit_distance(Name, true, UpperBound); in addName() 4265 if (ED > UpperBound) return; in addName()
|
| /netbsd-src/external/apache2/llvm/dist/clang/lib/CodeGen/ |
| H A D | CGDebugInfo.cpp | 745 auto *UpperBound = DBuilder.createExpression(Expr); in CreateType() local 748 /*count*/ nullptr, LowerBound, UpperBound, /*stride*/ nullptr); in CreateType() 805 auto *UpperBound = DBuilder.createExpression(Expr); in CreateType() local 807 /*count*/ nullptr, LowerBound, UpperBound, /*stride*/ nullptr); in CreateType()
|