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

  /src/external/apache2/llvm/dist/llvm/lib/ObjectYAML/
WasmEmitter.cpp 174 SubSectionWriter SubSection(OS);
176 // SYMBOL_TABLE subsection
180 encodeULEB128(Section.SymbolTable.size(), SubSection.getStream());
186 writeUint8(SubSection.getStream(), Info.Kind);
187 encodeULEB128(Info.Flags, SubSection.getStream());
193 encodeULEB128(Info.ElementIndex, SubSection.getStream());
196 writeStringRef(Info.Name, SubSection.getStream());
199 writeStringRef(Info.Name, SubSection.getStream());
201 encodeULEB128(Info.DataRef.Segment, SubSection.getStream());
202 encodeULEB128(Info.DataRef.Offset, SubSection.getStream())
    [all...]
  /src/external/apache2/llvm/dist/llvm/lib/Target/NVPTX/MCTargetDesc/
NVPTXTargetStreamer.h 46 const MCExpr *SubSection, raw_ostream &OS) override;
NVPTXTargetStreamer.cpp 85 const MCExpr *SubSection,
87 assert(!SubSection && "SubSection is not null!");
98 OS, SubSection);
  /src/external/apache2/llvm/dist/llvm/lib/MC/
WasmObjectWriter.cpp 1096 SectionBookkeeping SubSection;
1098 startSection(SubSection, wasm::WASM_SYMBOL_TABLE);
1131 endSection(SubSection);
1135 startSection(SubSection, wasm::WASM_SEGMENT_INFO);
1142 endSection(SubSection);
1146 startSection(SubSection, wasm::WASM_INIT_FUNCS);
1152 endSection(SubSection);
1156 startSection(SubSection, wasm::WASM_COMDAT_INFO);
1167 endSection(SubSection);
  /src/external/apache2/llvm/dist/llvm/include/llvm/MC/
MCStreamer.h 117 const MCExpr *SubSection, raw_ostream &OS);
420 bool SubSection(const MCExpr *Subsection) {
424 SwitchSection(SectionStack.back().first.first, Subsection);
433 const MCExpr *Subsection = nullptr);
439 const MCExpr *Subsection = nullptr) {
443 if (MCSectionSubPair(Section, Subsection) != curSection)
444 SectionStack.back().first = MCSectionSubPair(Section, 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/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 118 milliseconds