Home
last modified time | relevance | path

Searched refs:thunkVec (Results 1 – 1 of 1) sorted by relevance

/freebsd/contrib/llvm-project/lld/ELF/
H A DRelocations.cpp2346 SmallVector<std::unique_ptr<Thunk>, 0> *thunkVec = nullptr; in getThunk() local
2361 thunkVec = &thunkedSymbolsBySectionAndAddend[{{d->section, d->value}, in getThunk()
2363 if (!thunkVec) in getThunk()
2364 thunkVec = &thunkedSymbols[{rel.sym, keyAddend}]; in getThunk()
2367 for (auto &t : *thunkVec) in getThunk()
2375 thunkVec->push_back(addThunk(ctx, *isec, rel)); in getThunk()
2376 return std::make_pair(thunkVec->back().get(), true); in getThunk()