Lines Matching defs:Gsym
352 GsymCreator Gsym(Quiet);
359 Gsym.setBaseAddress(*ImageBaseAddr);
390 DwarfTransformer DT(*DICtx, Gsym, LoadDwarfCallSites);
392 Gsym.SetValidTextRanges(TextRanges);
403 Gsym.prepareMergedFunctions(Out);
406 if (auto Err = ObjectFileTransformer::convert(Obj, Out, Gsym))
411 if (auto Err = Gsym.loadCallSitesFromYAML(CallSiteYamlPath))
417 if (auto Err = Gsym.finalize(Out))
428 if (auto Err = Gsym.save(OutFile, Endian, OptSegmentSize))
529 static void doLookup(GsymReader &Gsym, uint64_t Addr, raw_ostream &OS) {
531 if (auto Results = Gsym.lookupAll(Addr)) {
576 if (auto Result = Gsym.lookup(Addr)) {
579 if (auto FI = Gsym.getFunctionInfo(Addr)) {
581 Gsym.dump(OS, *FI);
700 auto Gsym = GsymReader::openFile(GSYMPath);
701 if (!Gsym)
702 error(GSYMPath, Gsym.takeError());
705 Gsym->dump(outs());
712 doLookup(*Gsym, Addr, OS);