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

  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/CodeView/
DebugSubsectionRecord.h 53 DebugSubsectionRecordBuilder(std::shared_ptr<DebugSubsection> Subsection);
64 /// The subsection to build. Will be null if Contents is non-empty.
65 std::shared_ptr<DebugSubsection> Subsection;
67 /// The bytes of the subsection. Only non-empty if Subsection is null.
78 // practice this isn't super important since the subsection header describes
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCSection.h 89 /// Mapping from subsection number to insertion point for subsection numbers
96 unsigned Subsection;
97 PendingLabel(MCSymbol* Sym, unsigned Subsection = 0)
98 : Sym(Sym), Subsection(Subsection) {}
176 MCSection::iterator getSubsectionInsertionPoint(unsigned Subsection);
182 const MCExpr *Subsection) const = 0;
194 /// Add a pending label for the requested subsection. This label will be
196 void addPendingLabel(MCSymbol* label, unsigned Subsection = 0)
    [all...]
  /src/external/apache2/llvm/dist/llvm/include/llvm/ObjectYAML/
CodeViewYAMLDebugSections.h 115 std::shared_ptr<detail::YAMLSubsectionBase> Subsection;
  /src/external/apache2/llvm/dist/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 86 addDirectiveHandler<&ELFAsmParser::ParseDirectiveSubsection>(".subsection");
210 const MCExpr *Subsection = nullptr;
212 if (getParser().parseExpression(Subsection))
218 Subsection);
517 const MCExpr *Subsection = nullptr;
542 if (getParser().parseExpression(Subsection))
661 getStreamer().SwitchSection(Section, Subsection);
884 const MCExpr *Subsection = nullptr;
886 if (getParser().parseExpression(Subsection))
895 getStreamer().SubSection(Subsection)
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
CodeViewYAMLDebugSections.cpp 371 IO &IO, YAMLDebugSubsection &Subsection) {
375 Subsection.Subsection = SS;
377 Subsection.Subsection = std::make_shared<YAMLLinesSubsection>();
379 Subsection.Subsection = std::make_shared<YAMLInlineeLinesSubsection>();
381 Subsection.Subsection =
384 Subsection.Subsection
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCAsmStreamer.cpp 149 void changeSection(MCSection *Section, const MCExpr *Subsection) override;
489 const MCExpr *Subsection) {
492 TS->changeSection(getCurrentSectionOnly(), Section, Subsection, OS);
495 Subsection);
  /src/external/apache2/llvm/dist/llvm/lib/Target/Hexagon/AsmParser/
HexagonAsmParser.cpp 668 if (IDVal.lower() == ".subsection")
674 const MCExpr *Subsection = nullptr;
678 "Invalid subsection directive");
679 getParser().parseExpression(Subsection);
681 if (!Subsection->evaluateAsAbsolute(Res))
682 return Error(L, "Cannot evaluate subsection number");
692 Subsection = HexagonMCExpr::create(
695 getStreamer().SubSection(Subsection);

Completed in 61 milliseconds