Lines Matching refs:GOT
1058 std::size_t getGOTTotal(ArrayRef<uint8_t> GOT) const;
1059 GOTIter makeGOTIter(ArrayRef<uint8_t> GOT, std::size_t EntryNum);
1074 ErrorOr<ArrayRef<uint8_t>> GOT = Obj->getSectionContents(&GOTShdr); in parseGOT() local
1075 if (!GOT) { in parseGOT()
1085 if (DtLocalGotNum > getGOTTotal(*GOT)) { in parseGOT()
1101 if (DtLocalGotNum + GlobalGotNum > getGOTTotal(*GOT)) { in parseGOT()
1106 GOTIter GotBegin = makeGOTIter(*GOT, 0); in parseGOT()
1107 GOTIter GotLocalEnd = makeGOTIter(*GOT, DtLocalGotNum); in parseGOT()
1138 GOTIter GotGlobalEnd = makeGOTIter(*GOT, DtLocalGotNum + GlobalGotNum); in parseGOT()
1146 std::size_t SpecGotNum = getGOTTotal(*GOT) - DtLocalGotNum - GlobalGotNum; in parseGOT()
1151 std::size_t MipsGOTParser<ELFT>::getGOTTotal(ArrayRef<uint8_t> GOT) const { in getGOTTotal()
1152 return GOT.size() / sizeof(GOTEntry); in getGOTTotal()
1157 MipsGOTParser<ELFT>::makeGOTIter(ArrayRef<uint8_t> GOT, std::size_t EntryNum) { in makeGOTIter() argument
1158 const char *Data = reinterpret_cast<const char *>(GOT.data()); in makeGOTIter()