Searched refs:Subsection (Results 1 - 25 of 28) sorted by relevance

12

/freebsd-11.0-release/contrib/llvm/lib/MC/
H A DMCSection.cpp57 MCSection::getSubsectionInsertionPoint(unsigned Subsection) { argument
58 if (Subsection == 0 && SubsectionFragmentMap.empty())
64 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));
H A DMCSectionELF.cpp58 const MCExpr *Subsection) const {
62 if (Subsection) {
64 Subsection->print(OS, &MAI);
155 if (Subsection) {
157 Subsection->print(OS, &MAI);
H A DMCSectionCOFF.cpp42 const MCExpr *Subsection) const {
H A DMCObjectStreamer.cpp195 const MCExpr *Subsection) {
196 changeSectionImpl(Section, Subsection);
200 const MCExpr *Subsection) {
207 if (Subsection &&
208 !Subsection->evaluateAsAbsolute(IntSubsection, getAssembler()))
211 report_fatal_error("Subsection number out of range");
194 ChangeSection(MCSection *Section, const MCExpr *Subsection) argument
199 changeSectionImpl(MCSection *Section, const MCExpr *Subsection) argument
H A DMCSectionMachO.cpp94 const MCExpr *Subsection) const {
H A DMCMachOStreamer.cpp150 const MCExpr *Subsection) {
152 bool Created = MCObjectStreamer::changeSectionImpl(Section, Subsection);
149 ChangeSection(MCSection *Section, const MCExpr *Subsection) argument
H A DMCStreamer.cpp706 void MCStreamer::SwitchSection(MCSection *Section, const MCExpr *Subsection) { argument
710 if (MCSectionSubPair(Section, Subsection) != curSection) {
711 ChangeSection(Section, Subsection);
712 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
H A DMCELFStreamer.cpp136 const MCExpr *Subsection) {
149 this->MCObjectStreamer::ChangeSection(Section, Subsection);
135 ChangeSection(MCSection *Section, const MCExpr *Subsection) argument
H A DMCAsmStreamer.cpp123 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override;
303 const MCExpr *Subsection) {
305 Section->PrintSwitchToSection(*MAI, OS, Subsection);
302 ChangeSection(MCSection *Section, const MCExpr *Subsection) argument
/freebsd-11.0-release/contrib/llvm/lib/Target/NVPTX/
H A DNVPTXSection.h35 const MCExpr *Subsection) const override {}
/freebsd-11.0-release/contrib/llvm/lib/Target/Mips/MCTargetDesc/
H A DMipsELFStreamer.cpp60 const MCExpr *Subsection) {
61 MCELFStreamer::SwitchSection(Section, Subsection);
59 SwitchSection(MCSection *Section, const MCExpr *Subsection) argument
H A DMipsELFStreamer.h59 const MCExpr *Subsection = nullptr) override;
/freebsd-11.0-release/contrib/llvm/include/llvm/MC/
H A DMCSectionCOFF.h70 const MCExpr *Subsection) const override;
H A DMCSectionELF.h81 const MCExpr *Subsection) const override;
H A DMCSectionMachO.h80 const MCExpr *Subsection) const override;
H A DMCStreamer.h329 bool SubSection(const MCExpr *Subsection) { argument
333 SwitchSection(SectionStack.back().first.first, Subsection);
342 const MCExpr *Subsection = nullptr);
348 const MCExpr *Subsection = nullptr) {
352 if (MCSectionSubPair(Section, Subsection) != curSection)
353 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
H A DMCObjectStreamer.h76 bool changeSectionImpl(MCSection *Section, const MCExpr *Subsection);
99 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override;
H A DMCSection.h185 MCSection::iterator getSubsectionInsertionPoint(unsigned Subsection);
190 const MCExpr *Subsection) const = 0;
H A DMCELFStreamer.h47 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override;
/freebsd-11.0-release/contrib/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp186 const MCExpr *Subsection = nullptr; local
188 if (getParser().parseExpression(Subsection))
193 Subsection);
369 const MCExpr *Subsection = nullptr; local
385 if (getParser().parseExpression(Subsection))
522 getStreamer().SwitchSection(ELFSection, Subsection);
719 const MCExpr *Subsection = nullptr; local
721 if (getParser().parseExpression(Subsection))
728 getStreamer().SubSection(Subsection);
/freebsd-11.0-release/contrib/llvm/lib/Target/AArch64/MCTargetDesc/
H A DAArch64ELFStreamer.cpp96 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override {
103 MCELFStreamer::ChangeSection(Section, Subsection);
/freebsd-11.0-release/contrib/llvm/tools/llvm-readobj/
H A DCOFFDumper.cpp77 void printCodeViewSymbolsSubsection(StringRef Subsection,
512 ListScope S(W, "Subsection");
679 void COFFDumper::printCodeViewSymbolsSubsection(StringRef Subsection, argument
682 if (Subsection.size() == 0) {
686 DataExtractor DE(Subsection, true, 4);
/freebsd-11.0-release/contrib/llvm/lib/Target/Hexagon/AsmParser/
H A DHexagonAsmParser.cpp901 const MCExpr *Subsection = 0;
906 getParser().parseExpression(Subsection);
908 if (!Subsection->evaluateAsAbsolute(Res))
919 Subsection = MCConstantExpr::create(8192 + Res, this->getContext());
921 getStreamer().SubSection(Subsection);
/freebsd-11.0-release/contrib/llvm/lib/Target/ARM/MCTargetDesc/
H A DARMELFStreamer.cpp441 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override {
448 MCELFStreamer::ChangeSection(Section, Subsection);
/freebsd-11.0-release/crypto/openssl/util/
H A Dpod2man.pl523 .\" Sh Subsection
878 push(@Indices, qq{.IX Subsection "$_"\n});

Completed in 219 milliseconds

12