Home | History | Annotate | Download | only in LD

Lines Matching full:islands

49     // find the islands for the input relocation
50 std::pair<BranchIsland*, BranchIsland*> islands =
52 if (islands.first == NULL) {
58 if (islands.second != NULL) {
59 stub = islands.second->findStub(prototype, pReloc);
64 stub = islands.first->findStub(prototype, pReloc);
70 stub->applyFixup(pReloc, pBuilder, *islands.first);
73 islands.first->addStub(prototype, pReloc, *stub);
87 std::pair<BranchIsland*, BranchIsland*> islands =
90 if (islands.first == NULL) {
97 stub->applyFixup(pFragRef, pBuilder, *islands.first);
100 islands.first->addStub(*stub);
103 } // (islands.first == NULL)