HomeSort by: relevance | last modified time | path
    Searched refs:Subsection (Results 1 - 25 of 58) sorted by relevancy

1 2 3

  /src/external/apache2/llvm/dist/llvm/lib/DebugInfo/CodeView/
DebugSubsectionRecord.cpp 53 std::shared_ptr<DebugSubsection> Subsection)
54 : Subsection(std::move(Subsection)) {}
61 uint32_t DataSize = Subsection ? Subsection->calculateSerializedSize()
63 // The length of the entire subsection is always padded to 4 bytes,
71 "Debug Subsection not properly aligned");
74 Header.Kind = uint32_t(Subsection ? Subsection->kind() : Contents.kind());
77 uint32_t DataSize = Subsection ? Subsection->calculateSerializedSize(
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/MC/
MCSection.cpp 59 MCSection::getSubsectionInsertionPoint(unsigned Subsection) {
60 if (Subsection == 0 && SubsectionFragmentMap.empty())
64 SubsectionFragmentMap, std::make_pair(Subsection, (MCFragment *)nullptr));
67 ExactMatch = MI->first == Subsection;
76 if (!ExactMatch && Subsection != 0) {
80 SubsectionFragmentMap.insert(MI, std::make_pair(Subsection, F));
83 F->setSubsectionNumber(Subsection);
91 void MCSection::addPendingLabel(MCSymbol *label, unsigned Subsection) {
92 PendingLabels.push_back(PendingLabel(label, Subsection));
96 unsigned Subsection) {
    [all...]
MCSectionWasm.cpp 50 const MCExpr *Subsection) const {
54 if (Subsection) {
56 Subsection->print(OS, &MAI);
98 if (Subsection) {
99 OS << "\t.subsection\t";
100 Subsection->print(OS, &MAI);
MCSectionELF.cpp 55 const MCExpr *Subsection) const {
58 if (Subsection) {
60 Subsection->print(OS, &MAI);
192 if (Subsection) {
193 OS << "\t.subsection\t";
194 Subsection->print(OS, &MAI);
MCSectionCOFF.cpp 39 const MCExpr *Subsection) const {
MCSectionXCOFF.cpp 27 const MCExpr *Subsection) const {
MCWasmStreamer.cpp 61 const MCExpr *Subsection) {
68 this->MCObjectStreamer::changeSection(Section, Subsection);
  /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...]
MCSectionCOFF.h 74 const MCExpr *Subsection) const override;
MCSectionELF.h 83 const MCExpr *Subsection) const override;
MCSectionMachO.h 73 const MCExpr *Subsection) const override;
MCSectionWasm.h 63 const MCExpr *Subsection) const override;
MCWasmStreamer.h 43 void changeSection(MCSection *Section, const MCExpr *Subsection) override;
MCELFStreamer.h 42 void changeSection(MCSection *Section, const MCExpr *Subsection) override;
MCSectionXCOFF.h 106 const MCExpr *Subsection) const override;
MCObjectStreamer.h 92 bool changeSectionImpl(MCSection *Section, const MCExpr *Subsection);
94 /// Assign a label to the current Section and Subsection even though a
100 /// Section and Subsection, ensure that they get assigned, either to fragment
126 void changeSection(MCSection *Section, const MCExpr *Subsection) override;
  /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/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/lib/Target/Mips/MCTargetDesc/
MipsELFStreamer.cpp 94 const MCExpr *Subsection) {
95 MCELFStreamer::SwitchSection(Section, Subsection);
MipsELFStreamer.h 54 const MCExpr *Subsection = nullptr) override;
  /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/DebugInfo/PDB/Native/
DbiModuleDescriptorBuilder.cpp 210 std::shared_ptr<DebugSubsection> Subsection) {
211 assert(Subsection);
212 C13Builders.push_back(DebugSubsectionRecordBuilder(std::move(Subsection)));
  /src/external/apache2/llvm/dist/llvm/include/llvm/DebugInfo/PDB/Native/
DbiModuleDescriptorBuilder.h 102 addDebugSubsection(std::shared_ptr<codeview::DebugSubsection> 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/Target/AArch64/MCTargetDesc/
AArch64ELFStreamer.cpp 145 void changeSection(MCSection *Section, const MCExpr *Subsection) override {
152 MCELFStreamer::changeSection(Section, Subsection);

Completed in 40 milliseconds

1 2 3