Lines Matching defs:G
32 std::unique_ptr<LinkGraph> G, PassConfiguration Passes)
33 : Ctx(std::move(Ctx)), G(std::move(G)), Passes(std::move(Passes)) {
35 assert(this->G && "G can not be null");
46 LinkGraph &getGraph() { return *G; }
94 virtual Error fixUpBlocks(LinkGraph &G) const = 0;
101 std::unique_ptr<LinkGraph> G;
132 Error fixUpBlocks(LinkGraph &G) const override {
135 for (auto &Sec : G.sections()) {
154 (void)B->getMutableContent(G);
171 if (auto Err = impl().applyFixup(G, *B, E))
186 void prune(LinkGraph &G);