/external/llvm-project/llvm/lib/ObjectYAML/ |
D | WasmEmitter.cpp | 174 SubSectionWriter SubSection(OS); in writeSectionContent() local 180 encodeULEB128(Section.SymbolTable.size(), SubSection.getStream()); in writeSectionContent() 186 writeUint8(SubSection.getStream(), Info.Kind); in writeSectionContent() 187 encodeULEB128(Info.Flags, SubSection.getStream()); in writeSectionContent() 193 encodeULEB128(Info.ElementIndex, SubSection.getStream()); in writeSectionContent() 196 writeStringRef(Info.Name, SubSection.getStream()); in writeSectionContent() 199 writeStringRef(Info.Name, SubSection.getStream()); in writeSectionContent() 201 encodeULEB128(Info.DataRef.Segment, SubSection.getStream()); in writeSectionContent() 202 encodeULEB128(Info.DataRef.Offset, SubSection.getStream()); in writeSectionContent() 203 encodeULEB128(Info.DataRef.Size, SubSection.getStream()); in writeSectionContent() [all …]
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/ObjectYAML/ |
D | WasmEmitter.cpp | 173 SubSectionWriter SubSection(OS); in writeSectionContent() local 179 encodeULEB128(Section.SymbolTable.size(), SubSection.getStream()); in writeSectionContent() 185 writeUint8(SubSection.getStream(), Info.Kind); in writeSectionContent() 186 encodeULEB128(Info.Flags, SubSection.getStream()); in writeSectionContent() 191 encodeULEB128(Info.ElementIndex, SubSection.getStream()); in writeSectionContent() 194 writeStringRef(Info.Name, SubSection.getStream()); in writeSectionContent() 197 writeStringRef(Info.Name, SubSection.getStream()); in writeSectionContent() 199 encodeULEB128(Info.DataRef.Segment, SubSection.getStream()); in writeSectionContent() 200 encodeULEB128(Info.DataRef.Offset, SubSection.getStream()); in writeSectionContent() 201 encodeULEB128(Info.DataRef.Size, SubSection.getStream()); in writeSectionContent() [all …]
|
/external/llvm-project/llvm/lib/Target/NVPTX/MCTargetDesc/ |
D | NVPTXTargetStreamer.cpp | 85 const MCExpr *SubSection, in changeSection() argument 87 assert(!SubSection && "SubSection is not null!"); in changeSection() 97 FI->getTargetTriple(), OS, SubSection); in changeSection()
|
D | NVPTXTargetStreamer.h | 46 const MCExpr *SubSection, raw_ostream &OS) override;
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/NVPTX/MCTargetDesc/ |
D | NVPTXTargetStreamer.cpp | 85 const MCExpr *SubSection, in changeSection() argument 87 assert(!SubSection && "SubSection is not null!"); in changeSection() 97 FI->getTargetTriple(), OS, SubSection); in changeSection()
|
D | NVPTXTargetStreamer.h | 46 const MCExpr *SubSection, raw_ostream &OS) override;
|
/external/llvm-project/lld/wasm/ |
D | SyntheticSections.cpp | 37 class SubSection { class 39 explicit SubSection(uint32_t type) : type(type) {} in SubSection() function in lld::wasm::__anon58e5326c0111::SubSection 437 SubSection sub(WASM_SYMBOL_TABLE); in writeBody() 478 SubSection sub(WASM_SEGMENT_INFO); in writeBody() 489 SubSection sub(WASM_INIT_FUNCS); in writeBody() 524 SubSection sub(WASM_COMDAT_INFO); in writeBody() 569 SubSection sub(WASM_NAMES_FUNCTION); in writeBody() 596 SubSection sub(WASM_NAMES_GLOBAL); in writeBody()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/ |
D | WasmObjectWriter.cpp | 937 SectionBookkeeping SubSection; in writeLinkingMetaDataSection() local 939 startSection(SubSection, wasm::WASM_SYMBOL_TABLE); in writeLinkingMetaDataSection() 971 endSection(SubSection); in writeLinkingMetaDataSection() 975 startSection(SubSection, wasm::WASM_SEGMENT_INFO); in writeLinkingMetaDataSection() 982 endSection(SubSection); in writeLinkingMetaDataSection() 986 startSection(SubSection, wasm::WASM_INIT_FUNCS); in writeLinkingMetaDataSection() 992 endSection(SubSection); in writeLinkingMetaDataSection() 996 startSection(SubSection, wasm::WASM_COMDAT_INFO); in writeLinkingMetaDataSection() 1007 endSection(SubSection); in writeLinkingMetaDataSection()
|
/external/llvm-project/llvm/lib/MC/ |
D | WasmObjectWriter.cpp | 1043 SectionBookkeeping SubSection; in writeLinkingMetaDataSection() local 1045 startSection(SubSection, wasm::WASM_SYMBOL_TABLE); in writeLinkingMetaDataSection() 1078 endSection(SubSection); in writeLinkingMetaDataSection() 1082 startSection(SubSection, wasm::WASM_SEGMENT_INFO); in writeLinkingMetaDataSection() 1089 endSection(SubSection); in writeLinkingMetaDataSection() 1093 startSection(SubSection, wasm::WASM_INIT_FUNCS); in writeLinkingMetaDataSection() 1099 endSection(SubSection); in writeLinkingMetaDataSection() 1103 startSection(SubSection, wasm::WASM_COMDAT_INFO); in writeLinkingMetaDataSection() 1114 endSection(SubSection); in writeLinkingMetaDataSection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/include/llvm/MC/ |
D | MCStreamer.h | 117 const MCExpr *SubSection, raw_ostream &OS); 408 bool SubSection(const MCExpr *Subsection) { in SubSection() function
|
/external/llvm-project/llvm/include/llvm/MC/ |
D | MCStreamer.h | 117 const MCExpr *SubSection, raw_ostream &OS); 420 bool SubSection(const MCExpr *Subsection) { in SubSection() function
|
/external/llvm/include/llvm/MC/ |
D | MCStreamer.h | 343 bool SubSection(const MCExpr *Subsection) { in SubSection() function
|
/external/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 730 getStreamer().SubSection(Subsection); in ParseDirectiveSubsection()
|
/external/llvm-project/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 871 getStreamer().SubSection(Subsection); in ParseDirectiveSubsection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/MC/MCParser/ |
D | ELFAsmParser.cpp | 848 getStreamer().SubSection(Subsection); in ParseDirectiveSubsection()
|
/external/swiftshader/third_party/llvm-10.0/llvm/lib/Target/Hexagon/AsmParser/ |
D | HexagonAsmParser.cpp | 688 getStreamer().SubSection(Subsection); in ParseDirectiveSubsection()
|
/external/llvm/lib/Target/Hexagon/AsmParser/ |
D | HexagonAsmParser.cpp | 902 getStreamer().SubSection(Subsection); in ParseDirectiveSubsection()
|
/external/llvm-project/llvm/lib/Target/Hexagon/AsmParser/ |
D | HexagonAsmParser.cpp | 695 getStreamer().SubSection(Subsection); in ParseDirectiveSubsection()
|