Searched defs:Checks (Results 1 - 12 of 12) sorted by relevance

/external/mockito/src/main/java/org/mockito/internal/util/
H A DChecks.java11 public class Checks { class
/external/llvm/lib/Transforms/Utils/
H A DLoopVersioning.cpp47 SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks) {
48 AliasChecks = std::move(Checks);
46 setAliasChecks( SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks) argument
/external/llvm/lib/Transforms/Scalar/
H A DGuardWidening.cpp173 /// append them to \p Checks. Returns true on success, may clobber \c Checks
175 bool parseRangeChecks(Value *CheckCond, SmallVectorImpl<RangeCheck> &Checks) { argument
177 return parseRangeChecks(CheckCond, Checks, Visited);
180 bool parseRangeChecks(Value *CheckCond, SmallVectorImpl<RangeCheck> &Checks,
183 /// Combine the checks in \p Checks into a smaller set of checks and append
185 /// in \p Checks were combined into \p CombinedChecks). Clobbers \p Checks
187 bool combineRangeChecks(SmallVectorImpl<RangeCheck> &Checks,
447 SmallVector<GuardWideningImpl::RangeCheck, 4> Checks, CombinedCheck
[all...]
H A DLoopLoadElimination.cpp356 SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks; local
358 std::copy_if(AllChecks.begin(), AllChecks.end(), std::back_inserter(Checks),
368 DEBUG(dbgs() << "\nPointer Checks (count: " << Checks.size() << "):\n");
369 DEBUG(LAI.getRuntimePointerChecking()->printChecks(dbgs(), Checks));
371 return Checks;
480 SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks =
484 if (Checks.size() > Candidates.size() * CheckPerElim) {
495 if (!Checks.empty() || !LAI.getPSE().getUnionPredicate().isAlwaysTrue()) {
506 LV.setAliasChecks(std::move(Checks));
[all...]
H A DLoopDistribute.cpp717 auto Checks = includeOnlyCrossPartitionChecks(AllChecks, PtrToPartition, local
720 if (!Pred.isAlwaysTrue() || !Checks.empty()) {
722 DEBUG(LAI->getRuntimePointerChecking()->printChecks(dbgs(), Checks));
724 LVer.setAliasChecks(std::move(Checks));
800 SmallVector<RuntimePointerChecking::PointerCheck, 4> Checks; local
802 std::copy_if(AllChecks.begin(), AllChecks.end(), std::back_inserter(Checks),
826 return Checks;
H A DInductiveRangeCheckElimination.cpp130 SmallVectorImpl<InductiveRangeCheck> &Checks,
191 /// Checks.
194 /// checks, and hence don't end up in \p Checks.
198 SmallVectorImpl<InductiveRangeCheck> &Checks);
320 SmallVectorImpl<InductiveRangeCheck> &Checks,
357 Checks.insert(Checks.end(), SubChecks.begin(), SubChecks.end());
383 Checks.push_back(IRC);
388 SmallVectorImpl<InductiveRangeCheck> &Checks) {
400 Checks, Visite
318 extractRangeChecksFromCond( Loop *L, ScalarEvolution &SE, Use &ConditionUse, SmallVectorImpl<InductiveRangeCheck> &Checks, SmallPtrSetImpl<Value *> &Visited) argument
386 extractRangeChecksFromBranch( BranchInst *BI, Loop *L, ScalarEvolution &SE, BranchProbabilityInfo &BPI, SmallVectorImpl<InductiveRangeCheck> &Checks) argument
[all...]
/external/llvm/include/llvm/Analysis/
H A DLoopAccessAnalysis.h90 /// \brief Checks memory dependences among accesses to the same underlying
365 Checks.clear();
427 const SmallVector<PointerCheck, 4> &getChecks() const { return Checks; }
436 unsigned getNumberOfChecks() const { return Checks.size(); }
441 /// Print \p Checks.
442 void printChecks(raw_ostream &OS, const SmallVectorImpl<PointerCheck> &Checks,
488 SmallVector<PointerCheck, 4> Checks; member in class:llvm::RuntimePointerChecking
510 /// Checks for both memory dependences and the SCEV predicates contained in the
618 /// \brief Checks existence of store to invariant address inside loop.
/external/llvm/lib/Analysis/
H A DLoopAccessAnalysis.cpp192 SmallVector<PointerCheck, 4> Checks; local
200 Checks.push_back(std::make_pair(&CGI, &CGJ));
203 return Checks;
208 assert(Checks.empty() && "Checks is not empty");
210 Checks = generateChecks();
410 raw_ostream &OS, const SmallVectorImpl<PointerCheck> &Checks,
413 for (const auto &Check : Checks) {
431 printChecks(OS, Checks, Depth);
450 /// Checks whethe
409 printChecks( raw_ostream &OS, const SmallVectorImpl<PointerCheck> &Checks, unsigned Depth) const argument
[all...]
/external/clang/lib/CodeGen/
H A DCGExprScalar.cpp89 void EmitBinOpCheck(ArrayRef<std::pair<Value *, SanitizerMask>> Checks,
925 /// operation). The check passes if all values in \p Checks (which are \c i1),
928 ArrayRef<std::pair<Value *, SanitizerMask>> Checks, const BinOpInfo &Info) {
971 CGF.EmitCheck(Checks, CheckName, StaticData, DynamicData);
2231 SmallVector<std::pair<llvm::Value *, SanitizerMask>, 2> Checks; local
2234 Checks.push_back(std::make_pair(Builder.CreateICmpNE(Ops.RHS, Zero),
2249 Checks.push_back(
2253 if (Checks.size() > 0)
2254 EmitBinOpCheck(Checks, Ops);
2534 // Checks tha
927 EmitBinOpCheck( ArrayRef<std::pair<Value *, SanitizerMask>> Checks, const BinOpInfo &Info) argument
2718 SmallVector<std::pair<Value *, SanitizerMask>, 2> Checks; local
[all...]
H A DCGExpr.cpp546 SmallVector<std::pair<llvm::Value *, SanitizerMask>, 3> Checks; local
564 Checks.push_back(std::make_pair(IsNonNull, SanitizerKind::Null));
582 Checks.push_back(std::make_pair(LargeEnough, SanitizerKind::ObjectSize));
599 Checks.push_back(std::make_pair(Aligned, SanitizerKind::Alignment));
603 if (Checks.size() > 0) {
610 EmitCheck(Checks, "type_mismatch", StaticData, Ptr);
2713 SmallVector<std::pair<llvm::Value *, SanitizerMask>, 5> Checks; local
/external/testng/ant/
H A Divy-2.1.0.jarMETA-INF/ META-INF/MANIFEST.MF META-INF/LICENSE META-INF/NOTICE fr/ fr/ ...
/external/kotlinc/lib/
H A Dkotlin-reflect.jarMETA-INF/MANIFEST.MF kotlin/reflect/jvm/internal/ReflectProperties$LazyVal.class ReflectProperties.java package ...

Completed in 363 milliseconds