Home
last modified time | relevance | path

Searched refs:addEdge (Results 1 – 25 of 29) sorted by relevance

12

/third_party/flutter/skia/tests/
DIncrTopoSortTest.cpp103 void addEdge(Node* dependedOn, Node* dependent) { in addEdge() function in Graph
334 g.addEdge(nodeD, nodeR); in test_1()
335 g.addEdge(nodeZ, nodeW); in test_1()
336 g.addEdge(nodeA, nodeB); in test_1()
337 g.addEdge(nodeY, nodeZ); in test_1()
338 g.addEdge(nodeQ, nodeA); in test_1()
348 g.addEdge(nodeX, nodeY); in test_1()
374 g.addEdge(nodeU, nodeX); in test_2()
375 g.addEdge(nodeW, nodeU); in test_2()
376 g.addEdge(nodeW, nodeZ); in test_2()
[all …]
/third_party/skia/tests/
DIncrTopoSortTest.cpp103 void addEdge(Node* dependedOn, Node* dependent) { in addEdge() function in Graph
334 g.addEdge(nodeD, nodeR); in test_1()
335 g.addEdge(nodeZ, nodeW); in test_1()
336 g.addEdge(nodeA, nodeB); in test_1()
337 g.addEdge(nodeY, nodeZ); in test_1()
338 g.addEdge(nodeQ, nodeA); in test_1()
348 g.addEdge(nodeX, nodeY); in test_1()
374 g.addEdge(nodeU, nodeX); in test_2()
375 g.addEdge(nodeW, nodeU); in test_2()
376 g.addEdge(nodeW, nodeZ); in test_2()
[all …]
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/CodeGen/
DMacroFusion.cpp71 if (!DAG.addEdge(&SecondSU, SDep(&FirstSU, SDep::Cluster))) in fuseInstructionPair()
107 DAG.addEdge(SU, SDep(&SecondSU, SDep::Artificial)); in fuseInstructionPair()
119 DAG.addEdge(&FirstSU, SDep(SU, SDep::Artificial)); in fuseInstructionPair()
127 DAG.addEdge(&FirstSU, SDep(&SU, SDep::Artificial)); in fuseInstructionPair()
DRegAllocPBQP.cpp429 PBQPRAGraph::EdgeId EId = G.addEdge(NId, MId, std::move(M)); in createInterferenceEdge()
488 G.addEdge(N1Id, N2Id, std::move(Costs)); in apply()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Transforms/Instrumentation/
DCFGMST.h108 EntryIncoming = &addEdge(nullptr, Entry, EntryWeight); in buildEdges()
114 addEdge(Entry, nullptr, EntryWeight); in buildEdges()
138 auto *E = &addEdge(&*BB, TargetBB, Weight); in buildEdges()
161 Edge *ExitO = &addEdge(&*BB, nullptr, BBWeight); in buildEdges()
253 Edge &addEdge(const BasicBlock *Src, const BasicBlock *Dest, uint64_t W) { in addEdge() function
DGCOVProfiling.cpp291 void addEdge(GCOVBlock &Successor) { in addEdge() function in __anon224a4f130311::GCOVBlock
727 Block.addEdge(Func.getBlock(TI->getSuccessor(i))); in emitProfileNotes()
730 Block.addEdge(Func.getReturnBlock()); in emitProfileNotes()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Analysis/
DCFLGraph.h126 void addEdge(Node From, Node To, int64_t Offset = 0) {
226 Graph.addEdge(InstantiatedValue{From, 0}, InstantiatedValue{To, 0},
244 Graph.addEdge(InstantiatedValue{From, 1}, InstantiatedValue{To, 0}); in addDerefEdge()
247 Graph.addEdge(InstantiatedValue{From, 0}, InstantiatedValue{To, 1}); in addDerefEdge()
402 Graph.addEdge(IRelation->From, IRelation->To); in tryInterproceduralAnalysis()
DLazyCallGraph.cpp62 static void addEdge(SmallVectorImpl<LazyCallGraph::Edge> &Edges, in addEdge() function
107 addEdge(Edges->Edges, Edges->EdgeIndexMap, G->get(*Callee), in populateSlow()
121 addEdge(Edges->Edges, Edges->EdgeIndexMap, G->get(F), in populateSlow()
129 addEdge(Edges->Edges, Edges->EdgeIndexMap, G->get(*F), in populateSlow()
173 addEdge(EntryEdges.Edges, EntryEdges.EdgeIndexMap, get(F), Edge::Ref); in LazyCallGraph()
185 addEdge(EntryEdges.Edges, EntryEdges.EdgeIndexMap, get(*F), Edge::Ref); in LazyCallGraph()
201 addEdge(EntryEdges.Edges, EntryEdges.EdgeIndexMap, get(F), in LazyCallGraph()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ExecutionEngine/JITLink/
DEHFrameSupport.cpp420 B.addEdge(FDEToCIE, RecordOffset + CIEDeltaFieldOffset, in processFDE()
460 B.addEdge(FDEToPCBegin, RecordOffset + PCBeginFieldOffset, *PCBeginSym, in processFDE()
489 PCBeginBlock->addEdge(Edge::KeepAlive, 0, FDESymbol, 0); in processFDE()
522 B.addEdge(FDEToLSDA, RecordOffset + LSDAFieldOffset, *LSDASym, 0); in processFDE()
DMachO_x86_64.cpp342 BlockToFix->addEdge(*Kind, FixupAddress - BlockToFix->getAddress(), in addRelocations()
363 GOTEntryBlock.addEdge(Pointer64, 0, Target, 0); in createGOTEntry()
384 StubContentBlock.addEdge(PCRel32, 2, GOTEntrySymbol, 0); in createStub()
DMachO_arm64.cpp373 BlockToFix->addEdge(*Kind, FixupAddress - BlockToFix->getAddress(), in addRelocations()
397 GOTEntryBlock.addEdge(Pointer64, 0, Target, 0); in createGOTEntry()
421 StubContentBlock.addEdge(LDRLiteral19, 0, GOTEntrySymbol, 0); in createStub()
DJITLink.cpp185 NewBlock.addEdge(*I); in splitBlock()
/third_party/skia/src/gpu/geometry/
DGrTriangulator.cpp299 void GrTriangulator::MonotonePoly::addEdge(Edge* edge) { in addEdge() function in GrTriangulator::MonotonePoly
392 Poly* GrTriangulator::Poly::addEdge(Edge* e, Side side, SkArenaAlloc* alloc) { in addEdge() function in GrTriangulator::Poly
415 fTail->addEdge(e); in addEdge()
419 fTail->addEdge(e); in addEdge()
422 partner->addEdge(e, side, alloc); in addEdge()
1394 leftPoly = leftPoly->addEdge(v->fFirstEdgeAbove, kRight_Side, fAlloc); in tessellate()
1397 rightPoly = rightPoly->addEdge(v->fLastEdgeAbove, kLeft_Side, fAlloc); in tessellate()
1403 e->fRightPoly->addEdge(e, kLeft_Side, fAlloc); in tessellate()
1406 rightEdge->fLeftPoly->addEdge(e, kRight_Side, fAlloc); in tessellate()
1434 leftPoly = leftPoly->addEdge(join, kRight_Side, fAlloc); in tessellate()
[all …]
DGrTriangulator.h465 this->addEdge(edge); in MonotonePoly()
473 void addEdge(Edge*);
479 Poly* addEdge(Edge* e, Side side, SkArenaAlloc* alloc);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ADT/
DDirectedGraph.h120 bool addEdge(EdgeType &E) { return Edges.insert(&E); } in addEdge() function
263 return Src.addEdge(E); in connect()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/
DHexagonSubtarget.cpp211 DAG->addEdge(&DAG->SUnits[su], SDep(LastSequentialCall, SDep::Barrier)); in apply()
215 DAG->addEdge(&DAG->SUnits[su], SDep(&DAG->SUnits[su-1], SDep::Barrier)); in apply()
252 DAG->addEdge(&DAG->SUnits[su], SDep(LastVRegUse[*AI], SDep::Barrier)); in apply()
/third_party/flutter/skia/src/gpu/
DGrTessellator.cpp584 this->addEdge(edge); in MonotonePoly()
591 void addEdge(Edge* edge) { in addEdge() function
651 Poly* addEdge(Edge* e, Side side, SkArenaAlloc& alloc) { in addEdge() function
674 fTail->addEdge(e); in addEdge()
678 fTail->addEdge(e); in addEdge()
681 partner->addEdge(e, side, alloc); in addEdge()
1621 leftPoly = leftPoly->addEdge(v->fFirstEdgeAbove, Poly::kRight_Side, alloc); in tessellate()
1624 rightPoly = rightPoly->addEdge(v->fLastEdgeAbove, Poly::kLeft_Side, alloc); in tessellate()
1630 e->fRightPoly->addEdge(e, Poly::kLeft_Side, alloc); in tessellate()
1633 rightEdge->fLeftPoly->addEdge(e, Poly::kRight_Side, alloc); in tessellate()
[all …]
/third_party/skia/src/utils/
DSkShadowTessellator.cpp58 void addEdge(const SkVector& nextPoint, const SkVector& nextNormal, SkColor umbraColor,
334 this->addEdge(fPathPolygon[0], fFirstOutset, umbraColor, umbraPolygon, false, doClip); in computeConvexShadow()
343 this->addEdge(fPathPolygon[i], normal, umbraColor, umbraPolygon, in computeConvexShadow()
399 void SkBaseShadowTessellator::addEdge(const SkPoint& nextPoint, const SkVector& nextNormal, in addEdge() function in SkBaseShadowTessellator
/third_party/flutter/skia/src/utils/
DSkShadowTessellator.cpp57 void addEdge(const SkVector& nextPoint, const SkVector& nextNormal, SkColor umbraColor,
337 this->addEdge(fPathPolygon[0], fFirstOutset, umbraColor, umbraPolygon, false, doClip); in computeConvexShadow()
346 this->addEdge(fPathPolygon[i], normal, umbraColor, umbraPolygon, in computeConvexShadow()
402 void SkBaseShadowTessellator::addEdge(const SkPoint& nextPoint, const SkVector& nextNormal, in addEdge() function in SkBaseShadowTessellator
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/
DScheduleDAGInstrs.h356 bool addEdge(SUnit *SuccSU, const SDep &PredDep);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/CodeGen/PBQP/
DReductionRules.h132 YZEId = G.addEdge(YNId, ZNId, Delta); in applyR2()
DGraph.h409 EdgeId addEdge(NodeId N1Id, NodeId N2Id, OtherVectorT Costs) { in addEdge() function
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/Analysis/
DBlockFrequencyInfoImpl.h649 void addEdge(IrrNode &Irr, const BlockNode &Succ,
680 addEdge(Irr, I.first, OuterLoop);
1273 G.addEdge(Irr, BFI.getNode(Succ), OuterLoop);
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/
DAArch64PBQPRegAlloc.cpp202 G.addEdge(node1, node2, std::move(costs)); in addIntraChainConstraint()
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/ExecutionEngine/JITLink/
DJITLink.h224 void addEdge(Edge::Kind K, Edge::OffsetT Offset, Symbol &Target, in addEdge() function
231 void addEdge(const Edge &E) { Edges.push_back(E); } in addEdge() function

12