Home
last modified time | relevance | path

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

/external/swiftshader/third_party/LLVM/lib/MC/MCParser/
DDarwinAsmParser.cpp34 bool ParseSectionSwitch(const char *Segment, const char *Section,
119 return ParseSectionSwitch("__TEXT", "__const"); in ParseSectionDirectiveConst()
122 return ParseSectionSwitch("__TEXT", "__static_const"); in ParseSectionDirectiveStaticConst()
125 return ParseSectionSwitch("__TEXT","__cstring", in ParseSectionDirectiveCString()
129 return ParseSectionSwitch("__TEXT", "__literal4", in ParseSectionDirectiveLiteral4()
133 return ParseSectionSwitch("__TEXT", "__literal8", in ParseSectionDirectiveLiteral8()
137 return ParseSectionSwitch("__TEXT","__literal16", in ParseSectionDirectiveLiteral16()
141 return ParseSectionSwitch("__TEXT","__constructor"); in ParseSectionDirectiveConstructor()
144 return ParseSectionSwitch("__TEXT","__destructor"); in ParseSectionDirectiveDestructor()
147 return ParseSectionSwitch("__TEXT","__fvmlib_init0"); in ParseSectionDirectiveFVMLibInit0()
[all …]
DELFAsmParser.cpp31 bool ParseSectionSwitch(StringRef Section, unsigned Type,
81 return ParseSectionSwitch(".data", ELF::SHT_PROGBITS, in ParseSectionDirectiveData()
86 return ParseSectionSwitch(".text", ELF::SHT_PROGBITS, in ParseSectionDirectiveText()
91 return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, in ParseSectionDirectiveBSS()
96 return ParseSectionSwitch(".rodata", ELF::SHT_PROGBITS, in ParseSectionDirectiveRoData()
101 return ParseSectionSwitch(".tdata", ELF::SHT_PROGBITS, in ParseSectionDirectiveTData()
107 return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, in ParseSectionDirectiveTBSS()
113 return ParseSectionSwitch(".data.rel", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRel()
119 return ParseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRo()
125 return ParseSectionSwitch(".data.rel.ro.local", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRoLocal()
[all …]
DCOFFAsmParser.cpp33 bool ParseSectionSwitch(StringRef Section,
80 return ParseSectionSwitch(".text", in ParseSectionDirectiveText()
87 return ParseSectionSwitch(".data", in ParseSectionDirectiveData()
94 return ParseSectionSwitch(".bss", in ParseSectionDirectiveBSS()
161 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser
/external/llvm/lib/MC/MCParser/
DELFAsmParser.cpp34 bool ParseSectionSwitch(StringRef Section, unsigned Type, unsigned Flags,
81 return ParseSectionSwitch(".data", ELF::SHT_PROGBITS, in ParseSectionDirectiveData()
86 return ParseSectionSwitch(".text", ELF::SHT_PROGBITS, in ParseSectionDirectiveText()
91 return ParseSectionSwitch(".bss", ELF::SHT_NOBITS, in ParseSectionDirectiveBSS()
96 return ParseSectionSwitch(".rodata", ELF::SHT_PROGBITS, in ParseSectionDirectiveRoData()
101 return ParseSectionSwitch(".tdata", ELF::SHT_PROGBITS, in ParseSectionDirectiveTData()
107 return ParseSectionSwitch(".tbss", ELF::SHT_NOBITS, in ParseSectionDirectiveTBSS()
113 return ParseSectionSwitch(".data.rel", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRel()
118 return ParseSectionSwitch(".data.rel.ro", ELF::SHT_PROGBITS, in ParseSectionDirectiveDataRelRo()
124 return ParseSectionSwitch(".eh_frame", ELF::SHT_PROGBITS, in ParseSectionDirectiveEhFrame()
[all …]
DCOFFAsmParser.cpp35 bool ParseSectionSwitch(StringRef Section,
39 bool ParseSectionSwitch(StringRef Section, unsigned Characteristics,
94 return ParseSectionSwitch(".text", in ParseSectionDirectiveText()
101 return ParseSectionSwitch(".data", COFF::IMAGE_SCN_CNT_INITIALIZED_DATA | in ParseSectionDirectiveData()
107 return ParseSectionSwitch(".bss", in ParseSectionDirectiveBSS()
293 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser
296 return ParseSectionSwitch(Section, Characteristics, Kind, "", (COFF::COMDATType)0); in ParseSectionSwitch()
299 bool COFFAsmParser::ParseSectionSwitch(StringRef Section, in ParseSectionSwitch() function in COFFAsmParser
392 ParseSectionSwitch(SectionName, Flags, Kind, COMDATSymName, Type); in ParseDirectiveSection()