Lines Matching refs:Loc
25 void relocateOne(uint8_t *Loc, RelType Type, uint64_t Val) const override;
27 const uint8_t *Loc) const override;
38 const uint8_t *Loc) const { in getRelExpr()
51 void PPC::relocateOne(uint8_t *Loc, RelType Type, uint64_t Val) const { in relocateOne() argument
54 write16be(Loc, (Val + 0x8000) >> 16); in relocateOne()
57 write16be(Loc, Val >> 16); in relocateOne()
60 write16be(Loc, Val); in relocateOne()
64 write32be(Loc, Val); in relocateOne()
67 write32be(Loc, read32be(Loc) | (Val & 0xFFFC)); in relocateOne()
71 write32be(Loc, read32be(Loc) | (Val & 0x3FFFFFC)); in relocateOne()
74 error(getErrorLocation(Loc) + "unrecognized reloc " + Twine(Type)); in relocateOne()