Searched refs:ParseSectionSwitch (Results 1 – 3 of 3) sorted by relevance
| /openbsd/src/gnu/llvm/llvm/lib/MC/MCParser/ |
| D | COFFMasmParser.cpp | 38 bool ParseSectionSwitch(StringRef SectionName, unsigned Characteristics, 41 bool ParseSectionSwitch(StringRef SectionName, unsigned Characteristics, 187 return ParseSectionSwitch(".text", in ParseSectionDirectiveCode() 195 return ParseSectionSwitch(".data", in ParseSectionDirectiveInitializedData() 203 return ParseSectionSwitch(".bss", in ParseSectionDirectiveUninitializedData() 220 bool COFFMasmParser::ParseSectionSwitch(StringRef SectionName, in ParseSectionSwitch() function in COFFMasmParser 223 return ParseSectionSwitch(SectionName, Characteristics, Kind, "", in ParseSectionSwitch() 227 bool COFFMasmParser::ParseSectionSwitch( in ParseSectionSwitch() function in COFFMasmParser
|
| D | COFFAsmParser.cpp | 39 bool ParseSectionSwitch(StringRef Section, 43 bool ParseSectionSwitch(StringRef Section, unsigned Characteristics, 94 return ParseSectionSwitch(".text", in ParseSectionDirectiveText() 102 return ParseSectionSwitch(".data", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in ParseSectionDirectiveData() 109 return ParseSectionSwitch(".bss", in ParseSectionDirectiveBSS() 314 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser 317 return ParseSectionSwitch(Section, Characteristics, Kind, "", (COFF::COMDATType)0); in ParseSectionSwitch() 320 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser 414 ParseSectionSwitch(SectionName, Flags, Kind, COMDATSymName, Type); in ParseDirectiveSection()
|
| D | ELFAsmParser.cpp | 43 bool ParseSectionSwitch(StringRef Section, unsigned Type, unsigned Flags, 91 return ParseSectionSwitch(".data", ELF::SHT_PROGBITS, in ParseSectionDirectiveData() 96 return ParseSectionSwitch(".text", ELF::SHT_PROGBITS, in ParseSectionDirectiveText() 101 return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, in ParseSectionDirectiveBSS() 106 return ParseSectionSwitch(".rodata", ELF::SHT_PROGBITS, in ParseSectionDirectiveRoData() 111 return ParseSectionSwitch(".tdata", ELF::SHT_PROGBITS, in ParseSectionDirectiveTData() 117 return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, in ParseSectionDirectiveTBSS() 123 return ParseSectionSwitch(".data.rel", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRel() 128 return ParseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRo() 134 return ParseSectionSwitch(".eh_frame", ELF::SHT_PROGBITS, in ParseSectionDirectiveEhFrame() [all …]
|