Home
last modified time | relevance | path

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

/minix/external/bsd/llvm/dist/llvm/lib/MC/MCParser/
H A DELFAsmParser.cpp34 bool ParseSectionSwitch(StringRef Section, unsigned Type, unsigned Flags,
83 return ParseSectionSwitch(".data", ELF::SHT_PROGBITS, in ParseSectionDirectiveData()
88 return ParseSectionSwitch(".text", ELF::SHT_PROGBITS, in ParseSectionDirectiveText()
93 return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, in ParseSectionDirectiveBSS()
98 return ParseSectionSwitch(".rodata", ELF::SHT_PROGBITS, in ParseSectionDirectiveRoData()
103 return ParseSectionSwitch(".tdata", ELF::SHT_PROGBITS, in ParseSectionDirectiveTData()
109 return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, in ParseSectionDirectiveTBSS()
115 return ParseSectionSwitch(".data.rel", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRel()
121 return ParseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRo()
127 return ParseSectionSwitch(".data.rel.ro.local", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRoLocal()
[all …]
H A DCOFFAsmParser.cpp35 bool ParseSectionSwitch(StringRef Section,
39 bool ParseSectionSwitch(StringRef Section, unsigned Characteristics,
93 return ParseSectionSwitch(".text", in ParseSectionDirectiveText()
100 return ParseSectionSwitch(".data", in ParseSectionDirectiveData()
107 return ParseSectionSwitch(".bss", in ParseSectionDirectiveBSS()
292 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser
295 return ParseSectionSwitch(Section, Characteristics, Kind, "", (COFF::COMDATType)0); in ParseSectionSwitch()
298 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser
391 ParseSectionSwitch(SectionName, Flags, Kind, COMDATSymName, Type); in ParseDirectiveSection()