HomeSort by relevance Sort by last modified time
    Searched refs:Subsection (Results 1 - 25 of 28) sorted by null

1 2

  /external/llvm/lib/Target/NVPTX/
NVPTXSection.h 36 const MCExpr *Subsection) const override {}
  /frameworks/compile/mclinker/include/mcld/Target/
ELFAttribute.h 37 // subsection in ELF attribute section should have.
74 /** \class Subsection
78 class Subsection {
80 Subsection(ELFAttribute& pParent, ELFAttributeData& pAttrData)
92 /// subsection
95 /// emit - write out this attribute subsection to the buffer.
99 // The attribute section this subsection belongs to
102 // The attribute data containing in this subsection
106 // Obtain the corresponding subsection of the specified vendor
107 Subsection* getSubsection(llvm::StringRef pVendorName) const
    [all...]
  /external/llvm/lib/MC/
MCSectionELF.cpp 63 const MCExpr *Subsection) const {
67 if (Subsection)
68 OS << '\t' << *Subsection;
156 if (Subsection)
157 OS << "\t.subsection\t" << *Subsection << '\n';
MCSectionCOFF.cpp 41 const MCExpr *Subsection) const {
MCObjectStreamer.cpp 182 const MCExpr *Subsection) {
183 changeSectionImpl(Section, Subsection);
187 const MCExpr *Subsection) {
195 if (Subsection &&
196 !Subsection->EvaluateAsAbsolute(IntSubsection, getAssembler()))
197 report_fatal_error("Cannot evaluate subsection number");
199 report_fatal_error("Subsection number out of range");
MCSectionMachO.cpp 94 const MCExpr *Subsection) const {
MCAssembler.cpp 310 MCSectionData::getSubsectionInsertionPoint(unsigned Subsection) {
311 if (Subsection == 0 && SubsectionFragmentMap.empty())
316 std::make_pair(Subsection, (MCFragment *)nullptr));
319 ExactMatch = MI->first == Subsection;
328 if (!ExactMatch && Subsection != 0) {
332 SubsectionFragmentMap.insert(MI, std::make_pair(Subsection, F));
    [all...]
MCMachOStreamer.cpp 153 const MCExpr *Subsection) {
155 bool Created = MCObjectStreamer::changeSectionImpl(Section, Subsection);
MCStreamer.cpp 667 const MCExpr *Subsection) {
671 if (MCSectionSubPair(Section, Subsection) != curSection) {
672 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
674 ChangeSection(Section, Subsection);
682 // TODO: keep track of the last subsection so that this symbol appears in the
MCELFStreamer.cpp 135 const MCExpr *Subsection) {
146 this->MCObjectStreamer::ChangeSection(Section, Subsection);
MCAsmStreamer.cpp 118 const MCExpr *Subsection) override;
301 const MCExpr *Subsection) {
303 Section->PrintSwitchToSection(*MAI, OS, Subsection);
    [all...]
  /frameworks/compile/mclinker/lib/Target/
ELFAttribute.cpp 39 // Skip corrupt subsection
61 // [ <uint32: subsection-length> NTBS: vendor-name
79 // subsection-length
95 // Select the attribute subsection.
96 Subsection* subsection = getSubsection(vendor_name);
99 if (subsection == NULL) {
112 // Merge the vendor data in the subsection.
113 if (!subsection->merge(pInput, vendor_data, vendor_data_size))
127 for (llvm::SmallVectorImpl<Subsection*>::const_iterato
173 Subsection* const subsection = *subsec_it; local
    [all...]
  /external/llvm/lib/Target/Mips/MCTargetDesc/
MipsELFStreamer.cpp 62 const MCExpr *Subsection) {
63 MCELFStreamer::SwitchSection(Section, Subsection);
MipsELFStreamer.h 59 const MCExpr *Subsection = nullptr) override;
  /external/llvm/include/llvm/MC/
MCSection.h 59 const MCExpr *Subsection) const = 0;
MCSectionCOFF.h 71 const MCExpr *Subsection) const override;
MCSectionELF.h 79 const MCExpr *Subsection) const override;
MCSectionMachO.h 81 const MCExpr *Subsection) const override;
MCStreamer.h 339 bool SubSection(const MCExpr *Subsection) {
343 SwitchSection(SectionStack.back().first.first, Subsection);
352 const MCExpr *Subsection = nullptr);
358 const MCExpr *Subsection = nullptr) {
362 if (MCSectionSubPair(Section, Subsection) != curSection)
363 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
MCObjectStreamer.h 83 bool changeSectionImpl(const MCSection *Section, const MCExpr *Subsection);
107 const MCExpr *Subsection) override;
MCELFStreamer.h 52 const MCExpr *Subsection) override;
  /external/llvm/lib/MC/MCParser/
ELFAsmParser.cpp 77 addDirectiveHandler<&ELFAsmParser::ParseDirectiveSubsection>(".subsection");
196 const MCExpr *Subsection = nullptr;
198 if (getParser().parseExpression(Subsection))
203 Subsection);
379 const MCExpr *Subsection = nullptr;
395 if (getParser().parseExpression(Subsection))
532 getStreamer().SwitchSection(ELFSection, Subsection);
723 const MCExpr *Subsection = nullptr;
725 if (getParser().parseExpression(Subsection))
732 getStreamer().SubSection(Subsection)
    [all...]
  /external/llvm/lib/Target/AArch64/MCTargetDesc/
AArch64ELFStreamer.cpp 100 const MCExpr *Subsection) override {
107 MCELFStreamer::ChangeSection(Section, Subsection);
  /external/libvorbis/doc/
Vorbis_I_spec.tex 30 \def\subsectionautorefname{Subsection} % Write subsection with capital 'S'
  /external/llvm/tools/llvm-readobj/
COFFDumper.cpp 76 void printCodeViewSymbolsSubsection(StringRef Subsection,
494 // The section consists of a number of subsection in the following format:
498 ListScope S(W, "Subsection");
519 // Holds a PC to file:line table. Some data to parse this subsection is
548 // Empty or duplicate or non-null-terminated subsection.
560 // Empty or duplicate subsection.
588 // indirection to the string table subsection using the index subsection.
610 // Each string in an F3 subsection should be preceded by a null
637 void COFFDumper::printCodeViewSymbolsSubsection(StringRef Subsection,
    [all...]

Completed in 478 milliseconds

1 2