Lines Matching defs:MIPS
1 //===- MIPS.cpp -----------------------------------------------------------===//
24 template <class ELFT> class MIPS final : public TargetInfo {
26 MIPS();
45 template <class ELFT> MIPS<ELFT>::MIPS() {
72 template <class ELFT> uint32_t MIPS<ELFT>::calcEFlags() const {
77 RelExpr MIPS<ELFT>::getRelExpr(RelType type, const Symbol &s,
200 template <class ELFT> RelType MIPS<ELFT>::getDynRel(RelType type) const {
207 void MIPS<ELFT>::writeGotPlt(uint8_t *buf, const Symbol &) const {
258 template <class ELFT> void MIPS<ELFT>::writePltHeader(uint8_t *buf) const {
320 void MIPS<ELFT>::writePlt(uint8_t *buf, const Symbol &sym,
358 bool MIPS<ELFT>::needsThunk(RelExpr expr, RelType type, const InputFile *file,
361 // Any MIPS PIC code function is invoked with its address in register $t9.
382 int64_t MIPS<ELFT>::getImplicitAddend(const uint8_t *buf, RelType type) const {
483 // MIPS N64 ABI packs multiple relocations into the single relocation
520 // Here we need to detect jump/branch from regular MIPS code
568 void MIPS<ELFT>::relocate(uint8_t *loc, const Relocation &rel,
758 template <class ELFT> bool MIPS<ELFT>::usesOnlyLowPageBits(RelType type) const {
782 static MIPS<ELFT> target;