Searched defs:island (Results 1 - 3 of 3) sorted by relevance

/frameworks/compile/mclinker/lib/LD/
H A DBranchIslandFactory.cpp24 /// @param pMaxIslandSize - the predefined value for the max size of a island
65 /// produce - produce a island for the given fragment
66 /// @param pFragment - the fragment needs a branch island
69 BranchIsland *island = allocate(); local
70 new (island) BranchIsland(pFragment, // entry fragment to the island
71 m_MaxIslandSize, // the max size of the island
72 size() - 1u); // index in the island factory
73 return island;
77 /// @param pFragment - the fragment needs a branch island
[all...]
/frameworks/compile/mclinker/lib/Object/
H A DObjectLinker.cpp777 BranchIsland& island = *facIter; local
778 BranchIsland::reloc_iterator iter, iterEnd = island.reloc_end();
779 for (iter = island.reloc_begin(); iter != iterEnd; ++iter)
851 BranchIsland& island = *facIter; local
852 BranchIsland::reloc_iterator iter, iterEnd = island.reloc_end();
853 for (iter = island.reloc_begin(); iter != iterEnd; ++iter) {
/frameworks/compile/mclinker/lib/Target/Mips/
H A DMipsLDBackend.cpp751 BranchIsland& island = *ii; local
752 if (island.end() == textData->end())
755 Fragment* exit = island.end();
756 if ((island.offset() + island.size()) > exit->getOffset()) {

Completed in 920 milliseconds