Searched defs:Subsection (Results 1 - 8 of 8) sorted by relevance

/external/llvm/lib/MC/
H A DMCSectionELF.cpp60 const MCExpr *Subsection) const {
64 if (Subsection)
65 OS << '\t' << *Subsection; local
149 if (Subsection)
150 OS << "\t.subsection\t" << *Subsection << '\n'; local
H A DMCMachOStreamer.cpp117 const MCExpr *Subsection) {
119 MCObjectStreamer::ChangeSection(Section, Subsection);
116 ChangeSection(const MCSection *Section, const MCExpr *Subsection) argument
H A DMCELFStreamer.cpp86 const MCExpr *Subsection) {
93 this->MCObjectStreamer::ChangeSection(Section, Subsection);
85 ChangeSection(const MCSection *Section, const MCExpr *Subsection) argument
H A DMCObjectStreamer.cpp167 const MCExpr *Subsection) {
173 if (Subsection &&
174 !Subsection->EvaluateAsAbsolute(IntSubsection, getAssembler()))
177 report_fatal_error("Subsection number out of range");
166 ChangeSection(const MCSection *Section, const MCExpr *Subsection) argument
H A DMCAssembler.cpp302 MCSectionData::getSubsectionInsertionPoint(unsigned Subsection) { argument
303 if (Subsection == 0 && SubsectionFragmentMap.empty())
308 std::make_pair(Subsection, (MCFragment *)nullptr));
311 ExactMatch = MI->first == Subsection;
320 if (!ExactMatch && Subsection != 0) {
324 SubsectionFragmentMap.insert(MI, std::make_pair(Subsection, F));
H A DMCAsmStreamer.cpp119 const MCExpr *Subsection) override;
302 const MCExpr *Subsection) {
304 Section->PrintSwitchToSection(*MAI, OS, Subsection);
301 ChangeSection(const MCSection *Section, const MCExpr *Subsection) argument
/external/llvm/include/llvm/MC/
H A DMCStreamer.h345 bool SubSection(const MCExpr *Subsection) { argument
349 SwitchSection(SectionStack.back().first.first, Subsection);
358 const MCExpr *Subsection = nullptr) {
362 if (MCSectionSubPair(Section, Subsection) != curSection) {
363 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
364 ChangeSection(Section, Subsection);
372 const MCExpr *Subsection = nullptr) {
376 if (MCSectionSubPair(Section, Subsection) != curSection)
377 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
/external/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp196 const MCExpr *Subsection = nullptr; local
198 if (getParser().parseExpression(Subsection))
204 Subsection);
414 const MCExpr *Subsection = nullptr; local
428 if (getParser().parseExpression(Subsection))
550 getStreamer().SwitchSection(ELFSection, Subsection);
743 const MCExpr *Subsection = nullptr; local
745 if (getParser().parseExpression(Subsection))
752 getStreamer().SubSection(Subsection);

Completed in 2388 milliseconds