HomeSort by: relevance | last modified time | path
    Searched defs:LinkedToSym (Results 1 - 4 of 4) sorted by relevancy

  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSectionELF.h 47 /// section header index of the section where LinkedToSym is defined.
48 const MCSymbol *LinkedToSym;
57 const MCSymbolELF *LinkedToSym)
60 LinkedToSym(LinkedToSym) {
92 return &LinkedToSym->getSection();
94 const MCSymbol *getLinkedToSymbol() const { return LinkedToSym; }
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 161 bool parseLinkedToSym(MCSymbolELF *&LinkedToSym);
458 bool ELFAsmParser::parseLinkedToSym(MCSymbolELF *&LinkedToSym) {
468 LinkedToSym = nullptr;
473 LinkedToSym = dyn_cast_or_null<MCSymbolELF>(getContext().lookupSymbol(Name));
474 if (!LinkedToSym || !LinkedToSym->isInSection())
519 MCSymbolELF *LinkedToSym = nullptr;
590 if (parseLinkedToSym(LinkedToSym))
660 IsComdat, UniqueID, LinkedToSym);
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/
TargetLoweringObjectFileImpl.cpp 700 const MCSymbolELF *LinkedToSym = getLinkedToSymbol(GO, TM);
761 Group, IsComdat, UniqueID, LinkedToSym);
764 assert(Section->getLinkedToSymbol() == LinkedToSym &&
835 const MCSymbolELF *LinkedToSym = getLinkedToSymbol(GO, TM);
836 if (LinkedToSym) {
848 NextUniqueID, LinkedToSym);
849 assert(Section->getLinkedToSymbol() == LinkedToSym);
912 const MCSymbolELF *LinkedToSym = nullptr;
926 LinkedToSym = cast<MCSymbolELF>(&FnSym);
935 LinkedToSym);
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/CodeGen/AsmPrinter/
AsmPrinter.cpp 3456 auto LinkedToSym = cast<MCSymbolELF>(CurrentFnSym);
3465 MCSection::NonUniqueID, LinkedToSym);
3470 GroupName, F.hasComdat(), MCSection::NonUniqueID, LinkedToSym);
3551 const MCSymbolELF *LinkedToSym = nullptr;
3562 LinkedToSym = cast<MCSymbolELF>(CurrentFnSym);
3566 F.hasComdat(), MCSection::NonUniqueID, LinkedToSym));

Completed in 25 milliseconds