Searched defs:GCOVBlock (Results 1 - 5 of 5) sorted by relevance

/external/llvm/lib/IR/
H A DGCOV.cpp163 Blocks.push_back(make_unique<GCOVBlock>(*this, i));
209 GCOVBlock &Block = *Blocks[BlockNo];
317 GCOVBlock &Block = *Blocks[BlockNo];
369 // GCOVBlock implementation.
371 /// ~GCOVBlock - Delete GCOVBlock and its content.
372 GCOVBlock::~GCOVBlock() {
380 void GCOVBlock::addCount(size_t DstEdgeNo, uint64_t N) {
390 void GCOVBlock
[all...]
/external/swiftshader/third_party/LLVM/include/llvm/Support/
H A DGCOV.h26 class GCOVBlock;
181 SmallVector<GCOVBlock *, 16> Blocks;
184 /// GCOVBlock - Collects block information.
185 class GCOVBlock { class in namespace:llvm
187 GCOVBlock(uint32_t N) : Number(N), Counter(0) {} function in class:llvm::GCOVBlock
188 ~GCOVBlock();
/external/llvm/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp213 class GCOVBlock;
215 // Constructed only by requesting it from a GCOVBlock, this object stores a
251 class GCOVBlock : public GCOVRecord { class in namespace:__anon13437
261 void addEdge(GCOVBlock &Successor) {
288 ~GCOVBlock() {
292 GCOVBlock(const GCOVBlock &RHS) : GCOVRecord(RHS), Number(RHS.Number) { function in class:__anon13437::GCOVBlock
303 GCOVBlock(uint32_t Number, raw_ostream *os) function in class:__anon13437::GCOVBlock
310 SmallVector<GCOVBlock *, 4> OutEdges;
331 Blocks.insert(std::make_pair(&BB, GCOVBlock(
[all...]
/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
H A DGCOVProfiling.cpp158 class GCOVBlock;
160 // Constructed only by requesting it from a GCOVBlock, this object stores a
194 class GCOVBlock : public GCOVRecord { class in namespace:__anon20201
204 void addEdge(GCOVBlock &Successor) {
225 ~GCOVBlock() {
232 GCOVBlock(uint32_t Number, raw_ostream *os) function in class:__anon20201::GCOVBlock
239 SmallVector<GCOVBlock *, 4> OutEdges;
253 Blocks[BB] = new GCOVBlock(i++, os);
255 ReturnBlock = new GCOVBlock(i++, os);
278 GCOVBlock
[all...]
/external/llvm/include/llvm/Support/
H A DGCOV.h29 class GCOVBlock;
254 GCOVEdge(GCOVBlock &S, GCOVBlock &D) : Src(S), Dst(D), Count(0) {}
256 GCOVBlock &Src;
257 GCOVBlock &Dst;
265 std::unique_ptr<GCOVBlock>>::const_iterator> BlockIterator;
292 SmallVector<std::unique_ptr<GCOVBlock>, 16> Blocks;
296 /// GCOVBlock - Collects block information.
297 class GCOVBlock { class in namespace:llvm
299 EdgeWeight(GCOVBlock *
314 GCOVBlock(GCOVFunction &P, uint32_t N) function in class:llvm::GCOVBlock
[all...]

Completed in 92 milliseconds