Home
last modified time | relevance | path

Searched refs:ParseSectionSwitch (Results 1 – 3 of 3) sorted by relevance

/freebsd-13-stable/contrib/llvm-project/llvm/lib/MC/MCParser/
HDCOFFMasmParser.cpp38 bool ParseSectionSwitch(StringRef SectionName, unsigned Characteristics);
40 bool ParseSectionSwitch(StringRef SectionName, unsigned Characteristics,
186 return ParseSectionSwitch(".text", COFF::IMAGE_SCN_CNT_CODE | in ParseSectionDirectiveCode()
192 return ParseSectionSwitch(".data", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in ParseSectionDirectiveInitializedData()
198 return ParseSectionSwitch(".bss", COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA | in ParseSectionDirectiveUninitializedData()
213 bool COFFMasmParser::ParseSectionSwitch(StringRef SectionName, in ParseSectionSwitch() function in COFFMasmParser
215 return ParseSectionSwitch(SectionName, Characteristics, "", in ParseSectionSwitch()
219 bool COFFMasmParser::ParseSectionSwitch(StringRef SectionName, in ParseSectionSwitch() function in COFFMasmParser
HDCOFFAsmParser.cpp39 bool ParseSectionSwitch(StringRef Section, unsigned Characteristics);
41 bool ParseSectionSwitch(StringRef Section, unsigned Characteristics,
96 return ParseSectionSwitch(".text", COFF::IMAGE_SCN_CNT_CODE | in ParseSectionDirectiveText()
102 return ParseSectionSwitch(".data", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in ParseSectionDirectiveData()
108 return ParseSectionSwitch(".bss", COFF::IMAGE_SCN_CNT_UNINITIALIZED_DATA | in ParseSectionDirectiveBSS()
306 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser
308 return ParseSectionSwitch(Section, Characteristics, "", (COFF::COMDATType)0); in ParseSectionSwitch()
311 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser
408 ParseSectionSwitch(SectionName, Flags, COMDATSymName, Type); in parseSectionArguments()
HDELFAsmParser.cpp44 bool ParseSectionSwitch(StringRef Section, unsigned Type, unsigned Flags,
92 return ParseSectionSwitch(".data", ELF::SHT_PROGBITS, in ParseSectionDirectiveData()
97 return ParseSectionSwitch(".text", ELF::SHT_PROGBITS, in ParseSectionDirectiveText()
102 return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, in ParseSectionDirectiveBSS()
107 return ParseSectionSwitch(".rodata", ELF::SHT_PROGBITS, in ParseSectionDirectiveRoData()
112 return ParseSectionSwitch(".tdata", ELF::SHT_PROGBITS, in ParseSectionDirectiveTData()
118 return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, in ParseSectionDirectiveTBSS()
124 return ParseSectionSwitch(".data.rel", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRel()
129 return ParseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRo()
135 return ParseSectionSwitch(".eh_frame", ELF::SHT_PROGBITS, in ParseSectionDirectiveEhFrame()
[all …]