Home | History | Annotate | Download | only in LD

Lines Matching refs:Stub

17 #include "mcld/Fragment/Stub.h"
28 class Stub;
89 /// findStub - return true if there is a stub built from the given prototype
91 Stub* findStub(const Stub* pPrototype, const Relocation& pReloc);
93 /// addStub - add a stub into the island
94 bool addStub(const Stub* pPrototype, const Relocation& pReloc, Stub& pStub);
96 void addStub(Stub& pStub);
103 * \brief Key to recognize a stub in the island.
108 Key(const Stub* pPrototype, const LDSymbol* pSymbol, Stub::SWord pAddend)
113 const Stub* prototype() const { return m_pPrototype; }
117 Stub::SWord addend() const { return m_Addend; }
136 // Folded symbols may use the existing stub.
152 const Stub* m_pPrototype;
154 Stub::SWord m_Addend;
157 typedef HashEntry<Key, Stub*, Key::Compare> StubEntryType;