Searched refs:SectionStack (Results 1 – 6 of 6) sorted by relevance
/external/swiftshader/third_party/LLVM/include/llvm/MC/ |
D | MCStreamer.h | 72 const MCSection *>, 4> SectionStack; variable 163 if (!SectionStack.empty()) in getCurrentSection() 164 return SectionStack.back().first; in getCurrentSection() 171 if (!SectionStack.empty()) in getPreviousSection() 172 return SectionStack.back().second; in getPreviousSection() 185 SectionStack.push_back(std::make_pair(getCurrentSection(), in PushSection() 194 if (SectionStack.size() <= 1) in PopSection() 196 const MCSection *oldSection = SectionStack.pop_back_val().first; in PopSection() 197 const MCSection *curSection = SectionStack.back().first; in PopSection() 210 const MCSection *curSection = SectionStack.back().first; in SwitchSection() [all …]
|
/external/llvm/include/llvm/MC/ |
D | MCStreamer.h | 184 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack; variable 293 if (!SectionStack.empty()) in getCurrentSection() 294 return SectionStack.back().first; in getCurrentSection() 301 if (!SectionStack.empty()) in getPreviousSection() 302 return SectionStack.back().second; in getPreviousSection() 320 SectionStack.push_back( in PushSection() 329 if (SectionStack.size() <= 1) in PopSection() 331 auto I = SectionStack.end(); in PopSection() 339 SectionStack.pop_back(); in PopSection() 344 if (SectionStack.empty()) in SubSection() [all …]
|
/external/swiftshader/third_party/llvm-7.0/llvm/include/llvm/MC/ |
D | MCStreamer.h | 206 SmallVector<std::pair<MCSectionSubPair, MCSectionSubPair>, 4> SectionStack; variable 333 if (!SectionStack.empty()) in getCurrentSection() 334 return SectionStack.back().first; in getCurrentSection() 341 if (!SectionStack.empty()) in getPreviousSection() 342 return SectionStack.back().second; in getPreviousSection() 360 SectionStack.push_back( in PushSection() 369 if (SectionStack.size() <= 1) in PopSection() 371 auto I = SectionStack.end(); in PopSection() 379 SectionStack.pop_back(); in PopSection() 384 if (SectionStack.empty()) in SubSection() [all …]
|
/external/llvm/lib/MC/ |
D | MCStreamer.cpp | 47 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in MCStreamer() 62 SectionStack.clear(); in reset() 63 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in reset() 789 MCSectionSubPair curSection = SectionStack.back().first; in SwitchSection() 790 SectionStack.back().second = curSection; in SwitchSection() 793 SectionStack.back().first = MCSectionSubPair(Section, Subsection); in SwitchSection()
|
/external/swiftshader/third_party/llvm-7.0/llvm/lib/MC/ |
D | MCStreamer.cpp | 80 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in MCStreamer() 90 SectionStack.clear(); in reset() 91 SectionStack.push_back(std::pair<MCSectionSubPair, MCSectionSubPair>()); in reset() 995 MCSectionSubPair curSection = SectionStack.back().first; in SwitchSection() 996 SectionStack.back().second = curSection; in SwitchSection() 999 SectionStack.back().first = MCSectionSubPair(Section, Subsection); in SwitchSection()
|
/external/swiftshader/third_party/LLVM/lib/MC/ |
D | MCStreamer.cpp | 31 SectionStack.push_back(std::make_pair(section, section)); in MCStreamer()
|