reference, declarationdefinition
definition → references, declarations, derived classes, virtual overrides
reference to multiple definitions → definitions
unreferenced

References

tools/llvm-jitlink/llvm-jitlink.cpp
  675   auto TripleName = S.TT.str();
  677   const Target *TheTarget = TargetRegistry::lookupTarget("", S.TT, ErrorStr);
  719   auto IsSymbolValid = [&S](StringRef Symbol) {
  720     return S.isSymbolRegistered(Symbol);
  723   auto GetSymbolInfo = [&S](StringRef Symbol) {
  724     return S.findSymbolInfo(Symbol, "Can not get symbol info");
  727   auto GetSectionInfo = [&S](StringRef FileName, StringRef SectionName) {
  728     return S.findSectionInfo(FileName, SectionName);
  731   auto GetStubInfo = [&S](StringRef FileName, StringRef SectionName) {
  732     return S.findStubInfo(FileName, SectionName);
  735   auto GetGOTInfo = [&S](StringRef FileName, StringRef SectionName) {
  736     return S.findGOTEntryInfo(FileName, SectionName);
  741       S.TT.isLittleEndian() ? support::little : support::big,