/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | MCSection.cpp | 57 MCSection::getSubsectionInsertionPoint(unsigned Subsection) { in getSubsectionInsertionPoint() argument 58 if (Subsection == 0 && SubsectionFragmentMap.empty()) in getSubsectionInsertionPoint() 64 std::make_pair(Subsection, (MCFragment *)nullptr)); in getSubsectionInsertionPoint() 67 ExactMatch = MI->first == Subsection; in getSubsectionInsertionPoint() 76 if (!ExactMatch && Subsection != 0) { in getSubsectionInsertionPoint() 80 SubsectionFragmentMap.insert(MI, std::make_pair(Subsection, F)); in getSubsectionInsertionPoint() 88 void MCSection::addPendingLabel(MCSymbol* label, unsigned Subsection) { in addPendingLabel() argument 89 PendingLabels.push_back(PendingLabel(label, Subsection)); in addPendingLabel() 93 unsigned Subsection) { in flushPendingLabels() argument 101 if (Label.Subsection == Subsection) { in flushPendingLabels() [all …]
|
D | MCSectionWasm.cpp | 49 const MCExpr *Subsection) const { in PrintSwitchToSection() 53 if (Subsection) { in PrintSwitchToSection() 55 Subsection->print(OS, &MAI); in PrintSwitchToSection() 85 if (Subsection) { in PrintSwitchToSection() 87 Subsection->print(OS, &MAI); in PrintSwitchToSection()
|
D | MCSectionELF.cpp | 55 const MCExpr *Subsection) const { in PrintSwitchToSection() 58 if (Subsection) { in PrintSwitchToSection() 60 Subsection->print(OS, &MAI); in PrintSwitchToSection() 185 if (Subsection) { in PrintSwitchToSection() 187 Subsection->print(OS, &MAI); in PrintSwitchToSection()
|
D | MCWasmStreamer.cpp | 61 const MCExpr *Subsection) { in ChangeSection() argument 68 this->MCObjectStreamer::ChangeSection(Section, Subsection); in ChangeSection()
|
D | MCSectionXCOFF.cpp | 21 const MCExpr *Subsection) const { in PrintSwitchToSection()
|
D | MCObjectStreamer.cpp | 336 const MCExpr *Subsection) { in ChangeSection() argument 337 changeSectionImpl(Section, Subsection); in ChangeSection() 341 const MCExpr *Subsection) { in changeSectionImpl() argument 348 if (Subsection && in changeSectionImpl() 349 !Subsection->evaluateAsAbsolute(IntSubsection, getAssemblerPtr())) in changeSectionImpl()
|
D | MCSectionCOFF.cpp | 39 const MCExpr *Subsection) const { in PrintSwitchToSection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/CodeView/ |
D | DebugSubsectionRecord.cpp | 56 std::shared_ptr<DebugSubsection> Subsection, CodeViewContainer Container) in DebugSubsectionRecordBuilder() argument 57 : Subsection(std::move(Subsection)), Container(Container) {} in DebugSubsectionRecordBuilder() 64 uint32_t DataSize = Subsection ? Subsection->calculateSerializedSize() in calculateSerializedLength() 76 Header.Kind = uint32_t(Subsection ? Subsection->kind() : Contents.kind()); in commit() 79 uint32_t DataSize = Subsection ? Subsection->calculateSerializedSize() in commit() 85 if (Subsection) { in commit() 86 if (auto EC = Subsection->commit(Writer)) in commit()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | CodeViewYAMLDebugSections.cpp | 371 IO &IO, YAMLDebugSubsection &Subsection) { in mapping() argument 375 Subsection.Subsection = SS; in mapping() 377 Subsection.Subsection = std::make_shared<YAMLLinesSubsection>(); in mapping() 379 Subsection.Subsection = std::make_shared<YAMLInlineeLinesSubsection>(); in mapping() 381 Subsection.Subsection = in mapping() 384 Subsection.Subsection = in mapping() 387 Subsection.Subsection = std::make_shared<YAMLSymbolsSubsection>(); in mapping() 389 Subsection.Subsection = std::make_shared<YAMLStringTableSubsection>(); in mapping() 391 Subsection.Subsection = std::make_shared<YAMLFrameDataSubsection>(); in mapping() 393 Subsection.Subsection = std::make_shared<YAMLCoffSymbolRVASubsection>(); in mapping() [all …]
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCSection.h | 94 unsigned Subsection; 95 PendingLabel(MCSymbol* Sym, unsigned Subsection = 0) 96 : Sym(Sym), Subsection(Subsection) {} 171 MCSection::iterator getSubsectionInsertionPoint(unsigned Subsection); 177 const MCExpr *Subsection) const = 0; 189 void addPendingLabel(MCSymbol* label, unsigned Subsection = 0); 193 unsigned Subsection = 0);
|
D | MCStreamer.h | 408 bool SubSection(const MCExpr *Subsection) { in SubSection() argument 412 SwitchSection(SectionStack.back().first.first, Subsection); in SubSection() 421 const MCExpr *Subsection = nullptr); 427 const MCExpr *Subsection = nullptr) { 431 if (MCSectionSubPair(Section, Subsection) != curSection) 432 SectionStack.back().first = MCSectionSubPair(Section, Subsection);
|
D | MCObjectStreamer.h | 91 bool changeSectionImpl(MCSection *Section, const MCExpr *Subsection); 125 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override;
|
D | MCSectionMachO.h | 80 const MCExpr *Subsection) const override;
|
D | MCSectionCOFF.h | 78 const MCExpr *Subsection) const override;
|
D | MCSectionWasm.h | 64 const MCExpr *Subsection) const override;
|
D | MCSectionXCOFF.h | 69 const MCExpr *Subsection) const override;
|
D | MCSectionELF.h | 79 const MCExpr *Subsection) const override;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/include/llvm/DebugInfo/CodeView/ |
D | DebugSubsectionRecord.h | 56 DebugSubsectionRecordBuilder(std::shared_ptr<DebugSubsection> Subsection, 70 std::shared_ptr<DebugSubsection> Subsection;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/DebugInfo/PDB/Native/ |
D | DbiModuleDescriptorBuilder.cpp | 181 std::shared_ptr<DebugSubsection> Subsection) { in addDebugSubsection() argument 182 assert(Subsection); in addDebugSubsection() 184 std::move(Subsection), CodeViewContainer::Pdb)); in addDebugSubsection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 204 const MCExpr *Subsection = nullptr; in ParseSectionSwitch() local 206 if (getParser().parseExpression(Subsection)) in ParseSectionSwitch() 212 Subsection); in ParseSectionSwitch() 496 const MCExpr *Subsection = nullptr; in ParseSectionArguments() local 521 if (getParser().parseExpression(Subsection)) in ParseSectionArguments() 639 getStreamer().SwitchSection(ELFSection, Subsection); in ParseSectionArguments() 837 const MCExpr *Subsection = nullptr; in ParseDirectiveSubsection() local 839 if (getParser().parseExpression(Subsection)) in ParseDirectiveSubsection() 848 getStreamer().SubSection(Subsection); in ParseDirectiveSubsection()
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Mips/MCTargetDesc/ |
D | MipsELFStreamer.cpp | 94 const MCExpr *Subsection) { in SwitchSection() argument 95 MCELFStreamer::SwitchSection(Section, Subsection); in SwitchSection()
|
D | MipsELFStreamer.h | 54 const MCExpr *Subsection = nullptr) override;
|
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/llvm/lib/Target/AArch64/MCTargetDesc/ |
D | AArch64ELFStreamer.cpp | 84 void ChangeSection(MCSection *Section, const MCExpr *Subsection) override { in ChangeSection() argument 91 MCELFStreamer::ChangeSection(Section, Subsection); in ChangeSection()
|
/third_party/node/test/fixtures/ |
D | order_of_end_tags_5873.md | 3 ## Subsection section in Title
|
/third_party/node/test/doctool/ |
D | test-doctool-json.mjs | 61 textRaw: 'Subsection', 78 displayName: 'Subsection'
|