HomeSort by relevance Sort by last modified time
    Searched defs:Subsection (Results 1 - 3 of 3) sorted by null

  /external/llvm/lib/MC/
MCSectionELF.cpp 63 const MCExpr *Subsection) const {
67 if (Subsection)
68 OS << '\t' << *Subsection;
156 if (Subsection)
157 OS << "\t.subsection\t" << *Subsection << '\n';
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttribute.h 37 // subsection in ELF attribute section should have.
74 /** \class Subsection
78 class Subsection {
80 Subsection(ELFAttribute& pParent, ELFAttributeData& pAttrData)
92 /// subsection
95 /// emit - write out this attribute subsection to the buffer.
99 // The attribute section this subsection belongs to
102 // The attribute data containing in this subsection
106 // Obtain the corresponding subsection of the specified vendor
107 Subsection* getSubsection(llvm::StringRef pVendorName) const
    [all...]
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 77 addDirectiveHandler<&ELFAsmParser::ParseDirectiveSubsection>(".subsection");
196 const MCExpr *Subsection = nullptr;
198 if (getParser().parseExpression(Subsection))
203 Subsection);
379 const MCExpr *Subsection = nullptr;
395 if (getParser().parseExpression(Subsection))
532 getStreamer().SwitchSection(ELFSection, Subsection);
723 const MCExpr *Subsection = nullptr;
725 if (getParser().parseExpression(Subsection))
732 getStreamer().SubSection(Subsection)
    [all...]

Completed in 212 milliseconds