Home
last modified time | relevance | path

Searched refs:EdgeTable (Results 1 – 2 of 2) sorted by relevance

/external/swiftshader/third_party/LLVM/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp491 GlobalVariable *EdgeTable = in emitProfileArcs() local
507 Builder.CreateConstInBoundsGEP2_64(EdgeTable, 0, in emitProfileArcs()
537 Constant **EdgeTable = new Constant*[Succs.size() * Preds.size()]; in buildEdgeLookupTable() local
540 EdgeTable[i] = NullValue; in buildEdgeLookupTable()
552 EdgeTable[((Succs.idFor(Succ)-1) * Preds.size()) + in buildEdgeLookupTable()
559 ArrayRef<Constant*> V(&EdgeTable[0], Succs.size() * Preds.size()); in buildEdgeLookupTable()
/external/llvm/lib/Transforms/Instrumentation/
DGCOVProfiling.cpp652 GlobalVariable *EdgeTable = in emitProfileArcs() local
666 Builder.CreateConstInBoundsGEP2_64(EdgeTable, 0, in emitProfileArcs()
733 std::unique_ptr<Constant * []> EdgeTable(new Constant *[TableSize]); in buildEdgeLookupTable() local
736 EdgeTable[i] = NullValue; in buildEdgeLookupTable()
748 EdgeTable[((Succs.idFor(Succ) - 1) * Preds.size()) + in buildEdgeLookupTable()
759 makeArrayRef(&EdgeTable[0],TableSize)), in buildEdgeLookupTable()