/external/llvm/test/tools/llvm-readobj/ |
D | codeview-linetables.test | 32 MFUN32-NEXT: Subsection [ 36 MFUN32-NEXT: Subsection [ 40 MFUN32-NEXT: Subsection [ 50 MFUN32-NEXT: Subsection [ 55 MFUN32-NEXT: Subsection [ 59 MFUN32-NEXT: Subsection [ 69 MFUN32-NEXT: Subsection [ 74 MFUN32-NEXT: Subsection [ 78 MFUN32-NEXT: Subsection [ 88 MFUN32-NEXT: Subsection [ [all …]
|
/external/llvm/lib/MC/ |
D | MCSectionELF.cpp | 63 const MCExpr *Subsection) const { in PrintSwitchToSection() 67 if (Subsection) in PrintSwitchToSection() 68 OS << '\t' << *Subsection; in PrintSwitchToSection() 156 if (Subsection) in PrintSwitchToSection() 157 OS << "\t.subsection\t" << *Subsection << '\n'; in PrintSwitchToSection()
|
D | MCObjectStreamer.cpp | 182 const MCExpr *Subsection) { in ChangeSection() argument 183 changeSectionImpl(Section, Subsection); in ChangeSection() 187 const MCExpr *Subsection) { in changeSectionImpl() argument 195 if (Subsection && in changeSectionImpl() 196 !Subsection->EvaluateAsAbsolute(IntSubsection, getAssembler())) in changeSectionImpl()
|
D | MCSectionCOFF.cpp | 41 const MCExpr *Subsection) const { in PrintSwitchToSection()
|
D | MCAssembler.cpp | 310 MCSectionData::getSubsectionInsertionPoint(unsigned Subsection) { in getSubsectionInsertionPoint() argument 311 if (Subsection == 0 && SubsectionFragmentMap.empty()) in getSubsectionInsertionPoint() 316 std::make_pair(Subsection, (MCFragment *)nullptr)); in getSubsectionInsertionPoint() 319 ExactMatch = MI->first == Subsection; in getSubsectionInsertionPoint() 328 if (!ExactMatch && Subsection != 0) { in getSubsectionInsertionPoint() 332 SubsectionFragmentMap.insert(MI, std::make_pair(Subsection, F)); in getSubsectionInsertionPoint()
|
D | MCStreamer.cpp | 667 const MCExpr *Subsection) { in SwitchSection() argument 671 if (MCSectionSubPair(Section, Subsection) != curSection) { in SwitchSection() 672 SectionStack.back().first = MCSectionSubPair(Section, Subsection); in SwitchSection() 674 ChangeSection(Section, Subsection); in SwitchSection()
|
D | MCMachOStreamer.cpp | 153 const MCExpr *Subsection) { in ChangeSection() argument 155 bool Created = MCObjectStreamer::changeSectionImpl(Section, Subsection); in ChangeSection()
|
D | MCSectionMachO.cpp | 94 const MCExpr *Subsection) const { in PrintSwitchToSection()
|
D | MCELFStreamer.cpp | 135 const MCExpr *Subsection) { in ChangeSection() argument 146 this->MCObjectStreamer::ChangeSection(Section, Subsection); in ChangeSection()
|
/external/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 196 const MCExpr *Subsection = nullptr; in ParseSectionSwitch() local 198 if (getParser().parseExpression(Subsection)) in ParseSectionSwitch() 203 Subsection); in ParseSectionSwitch() 379 const MCExpr *Subsection = nullptr; in ParseSectionArguments() local 395 if (getParser().parseExpression(Subsection)) in ParseSectionArguments() 532 getStreamer().SwitchSection(ELFSection, Subsection); in ParseSectionArguments() 723 const MCExpr *Subsection = nullptr; in ParseDirectiveSubsection() local 725 if (getParser().parseExpression(Subsection)) in ParseDirectiveSubsection() 732 getStreamer().SubSection(Subsection); in ParseDirectiveSubsection()
|
/external/llvm/include/llvm/MC/ |
D | MCStreamer.h | 339 bool SubSection(const MCExpr *Subsection) { in SubSection() argument 343 SwitchSection(SectionStack.back().first.first, Subsection); in SubSection() 352 const MCExpr *Subsection = nullptr); 358 const MCExpr *Subsection = nullptr) { 362 if (MCSectionSubPair(Section, Subsection) != curSection) 363 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
|
D | MCObjectStreamer.h | 83 bool changeSectionImpl(const MCSection *Section, const MCExpr *Subsection); 107 const MCExpr *Subsection) override;
|
D | MCSection.h | 59 const MCExpr *Subsection) const = 0;
|
D | MCSectionCOFF.h | 71 const MCExpr *Subsection) const override;
|
D | MCSectionMachO.h | 81 const MCExpr *Subsection) const override;
|
D | MCSectionELF.h | 79 const MCExpr *Subsection) const override;
|
D | MCELFStreamer.h | 52 const MCExpr *Subsection) override;
|
/external/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsELFStreamer.cpp | 62 const MCExpr *Subsection) { in SwitchSection() argument 63 MCELFStreamer::SwitchSection(Section, Subsection); in SwitchSection()
|
D | MipsELFStreamer.h | 59 const MCExpr *Subsection = nullptr) override;
|
/external/llvm/test/DebugInfo/COFF/ |
D | multifunction.ll | 210 ; OBJ32: Subsection [ 220 ; OBJ32: Subsection [ 223 ; OBJ32: Subsection [ 233 ; OBJ32: Subsection [ 236 ; OBJ32: Subsection [ 246 ; OBJ32: Subsection [ 483 ; OBJ64: Subsection [ 493 ; OBJ64: Subsection [ 496 ; OBJ64: Subsection [ 506 ; OBJ64: Subsection [ [all …]
|
D | simple.ll | 88 ; OBJ32: Subsection [ 189 ; OBJ64: Subsection [
|
D | asm.ll | 92 ; OBJ32: Subsection [ 200 ; OBJ64: Subsection [
|
/external/llvm/lib/Target/AArch64/MCTargetDesc/ |
D | AArch64ELFStreamer.cpp | 100 const MCExpr *Subsection) override { in ChangeSection() argument 107 MCELFStreamer::ChangeSection(Section, Subsection); in ChangeSection()
|
/external/llvm/lib/Target/NVPTX/ |
D | NVPTXSection.h | 36 const MCExpr *Subsection) const override {} in PrintSwitchToSection() argument
|
/external/llvm/tools/llvm-readobj/ |
D | COFFDumper.cpp | 76 void printCodeViewSymbolsSubsection(StringRef Subsection, 637 void COFFDumper::printCodeViewSymbolsSubsection(StringRef Subsection, in printCodeViewSymbolsSubsection() argument 640 if (Subsection.size() == 0) { in printCodeViewSymbolsSubsection() 644 DataExtractor DE(Subsection, true, 4); in printCodeViewSymbolsSubsection()
|