HomeSort by: relevance | last modified time | path
    Searched defs:Counters (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/external/bsd/compiler_rt/dist/lib/fuzzer/
FuzzerTracePC.cpp 25 // The coverage counters and PCs.
41 uint8_t *TracePC::Counters() const {
73 // Initializes unstable counters by copying Inline8bitCounters to unstable
74 // counters.
81 // Compares the current counters with counters from previous runs
99 // Updates and applies unstable counters to ModuleCounters in single iteration
159 Printf("INFO: Loaded %zd modules (%zd inline 8-bit counters): ",
186 Printf("INFO: %zd Extra Counters\n", NumExtraCounters);
258 if (Counters()[GuardIdx]
    [all...]
FuzzerTracePC.h 98 memset(Counters(), 0, GetNumPCs());
182 uint8_t *Counters() const;
227 // Returns a feature number by placing Counters into buckets as illustrated
254 uint8_t *Counters = this->Counters();
267 ForEachNonZeroByte(Counters, Counters + N, FirstFeature, Handle8bitCounter);
  /src/external/apache2/llvm/dist/llvm/include/llvm/Support/
DebugCounter.h 9 /// This file provides an implementation of debug counters. Debug
10 /// counters are a tool that let you narrow down a miscompilation to a specific
69 // line option parsing. The main reason to register counters is to produce a
79 auto Result = Us.Counters.find(CounterName);
80 if (Result != Us.Counters.end()) {
86 // Negative counters always execute.
103 return instance().Counters[ID].IsSet;
106 // Return the Count for a counter. This only works for set counters.
109 auto Result = Us.Counters.find(ID);
110 assert(Result != Us.Counters.end() && "Asking about a non-set counter")
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Transforms/Instrumentation/
InstrProfiling.cpp 69 cl::desc("Enable relocating counters at runtime."),
78 "vp-counters-per-site",
79 cl::desc("The average number of profile counters allocated "
95 " for promoted counters only"),
245 // able to have counters promoted.
315 LLVM_DEBUG(dbgs() << Promoted << " counters promoted for loop (depth="
546 // Emit the runtime hook even if no counters are present.
675 GlobalVariable *Counters = getOrCreateRegionCounters(Inc);
679 Value *Addr = Builder.CreateConstInBoundsGEP2_64(Counters->getValueType(),
680 Counters, 0, Index)
    [all...]
GCOVProfiling.cpp 1 //===- GCOVProfiling.cpp - Insert edge counters for gcov profiling --------===//
144 // Add the function to write out all our counters to the global destructor
710 // We've a fork so just reset the counters in the child process
736 // No need to reset the counters since they'll be lost after the exec**
744 // If the exec** fails we must reset the counters since they've been
957 GlobalVariable *Counters = new GlobalVariable(
960 CountersBySP.emplace_back(Counters, SP);
966 Counters->getValueType(), Counters, 0, I);
1099 Type::getInt64PtrTy(*Ctx), // uint64_t *counters
    [all...]
  /src/external/apache2/llvm/dist/clang/include/clang/AST/
StmtOpenMP.h 98 /// logical iteration counters used by the OpenMPIRBuilder which is
782 /// Counters Loop counters.
783 SmallVector<Expr *, 4> Counters;
784 /// PrivateCounters Loop counters.
786 /// Expressions for loop counters inits for CodeGen.
788 /// Expressions for loop counters update for CodeGen.
792 /// List of counters required for the generation of the non-rectangular
817 /// counters/finals/updates/dependent_counters/dependent_inits/finals_conditions
839 Counters.resize(Size)
1379 ArrayRef<Expr *> counters() { return getCounters(); } function in class:clang::OMPLoopDirective
1381 ArrayRef<Expr *> counters() const { function in class:clang::OMPLoopDirective
    [all...]

Completed in 34 milliseconds