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 60 const MCExpr *Subsection) const {
64 if (Subsection)
65 OS << '\t' << *Subsection;
149 if (Subsection)
150 OS << "\t.subsection\t" << *Subsection << '\n';
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttribute.h 38 // subsection in ELF attribute section should have.
75 /** \class Subsection
79 class Subsection {
81 Subsection(ELFAttribute &pParent, ELFAttributeData &pAttrData)
94 /// subsection
97 /// emit - write out this attribute subsection to the buffer.
101 // The attribute section this subsection belongs to
104 // The attribute data containing in this subsection
108 // Obtain the corresponding subsection of the specified vendor
109 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))
204 Subsection);
414 const MCExpr *Subsection = nullptr;
428 if (getParser().parseExpression(Subsection))
550 getStreamer().SwitchSection(ELFSection, Subsection);
743 const MCExpr *Subsection = nullptr;
745 if (getParser().parseExpression(Subsection))
752 getStreamer().SubSection(Subsection)
    [all...]

Completed in 160 milliseconds